rs6000.c (rs6000_output_function_prologue): No need for -mprofile-kernel to save...
[official-gcc.git] / gcc / calls.c
blob3be7ca5f4a58ffeb2d3b1a34d10b01a3d520f71e
1 /* Convert function calls to rtl insns, for GNU C compiler.
2 Copyright (C) 1989-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "rtl.h"
25 #include "hash-set.h"
26 #include "machmode.h"
27 #include "vec.h"
28 #include "double-int.h"
29 #include "input.h"
30 #include "alias.h"
31 #include "symtab.h"
32 #include "wide-int.h"
33 #include "inchash.h"
34 #include "tree.h"
35 #include "fold-const.h"
36 #include "stor-layout.h"
37 #include "varasm.h"
38 #include "stringpool.h"
39 #include "attribs.h"
40 #include "predict.h"
41 #include "hashtab.h"
42 #include "hard-reg-set.h"
43 #include "function.h"
44 #include "basic-block.h"
45 #include "tree-ssa-alias.h"
46 #include "internal-fn.h"
47 #include "gimple-expr.h"
48 #include "is-a.h"
49 #include "gimple.h"
50 #include "flags.h"
51 #include "statistics.h"
52 #include "real.h"
53 #include "fixed-value.h"
54 #include "insn-config.h"
55 #include "expmed.h"
56 #include "dojump.h"
57 #include "explow.h"
58 #include "calls.h"
59 #include "emit-rtl.h"
60 #include "stmt.h"
61 #include "expr.h"
62 #include "insn-codes.h"
63 #include "optabs.h"
64 #include "libfuncs.h"
65 #include "regs.h"
66 #include "diagnostic-core.h"
67 #include "output.h"
68 #include "tm_p.h"
69 #include "timevar.h"
70 #include "sbitmap.h"
71 #include "bitmap.h"
72 #include "langhooks.h"
73 #include "target.h"
74 #include "hash-map.h"
75 #include "plugin-api.h"
76 #include "ipa-ref.h"
77 #include "cgraph.h"
78 #include "except.h"
79 #include "dbgcnt.h"
80 #include "rtl-iter.h"
81 #include "tree-chkp.h"
82 #include "rtl-chkp.h"
84 /* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
85 #define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
87 /* Data structure and subroutines used within expand_call. */
89 struct arg_data
91 /* Tree node for this argument. */
92 tree tree_value;
93 /* Mode for value; TYPE_MODE unless promoted. */
94 machine_mode mode;
95 /* Current RTL value for argument, or 0 if it isn't precomputed. */
96 rtx value;
97 /* Initially-compute RTL value for argument; only for const functions. */
98 rtx initial_value;
99 /* Register to pass this argument in, 0 if passed on stack, or an
100 PARALLEL if the arg is to be copied into multiple non-contiguous
101 registers. */
102 rtx reg;
103 /* Register to pass this argument in when generating tail call sequence.
104 This is not the same register as for normal calls on machines with
105 register windows. */
106 rtx tail_call_reg;
107 /* If REG is a PARALLEL, this is a copy of VALUE pulled into the correct
108 form for emit_group_move. */
109 rtx parallel_value;
110 /* If value is passed in neither reg nor stack, this field holds a number
111 of a special slot to be used. */
112 rtx special_slot;
113 /* For pointer bounds hold an index of parm bounds are bound to. -1 if
114 there is no such pointer. */
115 int pointer_arg;
116 /* If pointer_arg refers a structure, then pointer_offset holds an offset
117 of a pointer in this structure. */
118 int pointer_offset;
119 /* If REG was promoted from the actual mode of the argument expression,
120 indicates whether the promotion is sign- or zero-extended. */
121 int unsignedp;
122 /* Number of bytes to put in registers. 0 means put the whole arg
123 in registers. Also 0 if not passed in registers. */
124 int partial;
125 /* Nonzero if argument must be passed on stack.
126 Note that some arguments may be passed on the stack
127 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
128 pass_on_stack identifies arguments that *cannot* go in registers. */
129 int pass_on_stack;
130 /* Some fields packaged up for locate_and_pad_parm. */
131 struct locate_and_pad_arg_data locate;
132 /* Location on the stack at which parameter should be stored. The store
133 has already been done if STACK == VALUE. */
134 rtx stack;
135 /* Location on the stack of the start of this argument slot. This can
136 differ from STACK if this arg pads downward. This location is known
137 to be aligned to TARGET_FUNCTION_ARG_BOUNDARY. */
138 rtx stack_slot;
139 /* Place that this stack area has been saved, if needed. */
140 rtx save_area;
141 /* If an argument's alignment does not permit direct copying into registers,
142 copy in smaller-sized pieces into pseudos. These are stored in a
143 block pointed to by this field. The next field says how many
144 word-sized pseudos we made. */
145 rtx *aligned_regs;
146 int n_aligned_regs;
149 /* A vector of one char per byte of stack space. A byte if nonzero if
150 the corresponding stack location has been used.
151 This vector is used to prevent a function call within an argument from
152 clobbering any stack already set up. */
153 static char *stack_usage_map;
155 /* Size of STACK_USAGE_MAP. */
156 static int highest_outgoing_arg_in_use;
158 /* A bitmap of virtual-incoming stack space. Bit is set if the corresponding
159 stack location's tail call argument has been already stored into the stack.
160 This bitmap is used to prevent sibling call optimization if function tries
161 to use parent's incoming argument slots when they have been already
162 overwritten with tail call arguments. */
163 static sbitmap stored_args_map;
165 /* stack_arg_under_construction is nonzero when an argument may be
166 initialized with a constructor call (including a C function that
167 returns a BLKmode struct) and expand_call must take special action
168 to make sure the object being constructed does not overlap the
169 argument list for the constructor call. */
170 static int stack_arg_under_construction;
172 static void emit_call_1 (rtx, tree, tree, tree, HOST_WIDE_INT, HOST_WIDE_INT,
173 HOST_WIDE_INT, rtx, rtx, int, rtx, int,
174 cumulative_args_t);
175 static void precompute_register_parameters (int, struct arg_data *, int *);
176 static void store_bounds (struct arg_data *, struct arg_data *);
177 static int store_one_arg (struct arg_data *, rtx, int, int, int);
178 static void store_unaligned_arguments_into_pseudos (struct arg_data *, int);
179 static int finalize_must_preallocate (int, int, struct arg_data *,
180 struct args_size *);
181 static void precompute_arguments (int, struct arg_data *);
182 static int compute_argument_block_size (int, struct args_size *, tree, tree, int);
183 static void initialize_argument_information (int, struct arg_data *,
184 struct args_size *, int,
185 tree, tree,
186 tree, tree, cumulative_args_t, int,
187 rtx *, int *, int *, int *,
188 bool *, bool);
189 static void compute_argument_addresses (struct arg_data *, rtx, int);
190 static rtx rtx_for_function_call (tree, tree);
191 static void load_register_parameters (struct arg_data *, int, rtx *, int,
192 int, int *);
193 static rtx emit_library_call_value_1 (int, rtx, rtx, enum libcall_type,
194 machine_mode, int, va_list);
195 static int special_function_p (const_tree, int);
196 static int check_sibcall_argument_overlap_1 (rtx);
197 static int check_sibcall_argument_overlap (rtx_insn *, struct arg_data *, int);
199 static int combine_pending_stack_adjustment_and_call (int, struct args_size *,
200 unsigned int);
201 static tree split_complex_types (tree);
203 #ifdef REG_PARM_STACK_SPACE
204 static rtx save_fixed_argument_area (int, rtx, int *, int *);
205 static void restore_fixed_argument_area (rtx, rtx, int, int);
206 #endif
208 /* Force FUNEXP into a form suitable for the address of a CALL,
209 and return that as an rtx. Also load the static chain register
210 if FNDECL is a nested function.
212 CALL_FUSAGE points to a variable holding the prospective
213 CALL_INSN_FUNCTION_USAGE information. */
216 prepare_call_address (tree fndecl_or_type, rtx funexp, rtx static_chain_value,
217 rtx *call_fusage, int reg_parm_seen, int sibcallp)
219 /* Make a valid memory address and copy constants through pseudo-regs,
220 but not for a constant address if -fno-function-cse. */
221 if (GET_CODE (funexp) != SYMBOL_REF)
222 /* If we are using registers for parameters, force the
223 function address into a register now. */
224 funexp = ((reg_parm_seen
225 && targetm.small_register_classes_for_mode_p (FUNCTION_MODE))
226 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
227 : memory_address (FUNCTION_MODE, funexp));
228 else if (! sibcallp)
230 #ifndef NO_FUNCTION_CSE
231 if (optimize && ! flag_no_function_cse)
232 funexp = force_reg (Pmode, funexp);
233 #endif
236 if (static_chain_value != 0
237 && (TREE_CODE (fndecl_or_type) != FUNCTION_DECL
238 || DECL_STATIC_CHAIN (fndecl_or_type)))
240 rtx chain;
242 chain = targetm.calls.static_chain (fndecl_or_type, false);
243 static_chain_value = convert_memory_address (Pmode, static_chain_value);
245 emit_move_insn (chain, static_chain_value);
246 if (REG_P (chain))
247 use_reg (call_fusage, chain);
250 return funexp;
253 /* Generate instructions to call function FUNEXP,
254 and optionally pop the results.
255 The CALL_INSN is the first insn generated.
257 FNDECL is the declaration node of the function. This is given to the
258 hook TARGET_RETURN_POPS_ARGS to determine whether this function pops
259 its own args.
261 FUNTYPE is the data type of the function. This is given to the hook
262 TARGET_RETURN_POPS_ARGS to determine whether this function pops its
263 own args. We used to allow an identifier for library functions, but
264 that doesn't work when the return type is an aggregate type and the
265 calling convention says that the pointer to this aggregate is to be
266 popped by the callee.
268 STACK_SIZE is the number of bytes of arguments on the stack,
269 ROUNDED_STACK_SIZE is that number rounded up to
270 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
271 both to put into the call insn and to generate explicit popping
272 code if necessary.
274 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
275 It is zero if this call doesn't want a structure value.
277 NEXT_ARG_REG is the rtx that results from executing
278 targetm.calls.function_arg (&args_so_far, VOIDmode, void_type_node, true)
279 just after all the args have had their registers assigned.
280 This could be whatever you like, but normally it is the first
281 arg-register beyond those used for args in this call,
282 or 0 if all the arg-registers are used in this call.
283 It is passed on to `gen_call' so you can put this info in the call insn.
285 VALREG is a hard register in which a value is returned,
286 or 0 if the call does not return a value.
288 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
289 the args to this call were processed.
290 We restore `inhibit_defer_pop' to that value.
292 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
293 denote registers used by the called function. */
295 static void
296 emit_call_1 (rtx funexp, tree fntree ATTRIBUTE_UNUSED, tree fndecl ATTRIBUTE_UNUSED,
297 tree funtype ATTRIBUTE_UNUSED,
298 HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED,
299 HOST_WIDE_INT rounded_stack_size,
300 HOST_WIDE_INT struct_value_size ATTRIBUTE_UNUSED,
301 rtx next_arg_reg ATTRIBUTE_UNUSED, rtx valreg,
302 int old_inhibit_defer_pop, rtx call_fusage, int ecf_flags,
303 cumulative_args_t args_so_far ATTRIBUTE_UNUSED)
305 rtx rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
306 rtx_insn *call_insn;
307 rtx call, funmem;
308 int already_popped = 0;
309 HOST_WIDE_INT n_popped
310 = targetm.calls.return_pops_args (fndecl, funtype, stack_size);
312 #ifdef CALL_POPS_ARGS
313 n_popped += CALL_POPS_ARGS (*get_cumulative_args (args_so_far));
314 #endif
316 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
317 and we don't want to load it into a register as an optimization,
318 because prepare_call_address already did it if it should be done. */
319 if (GET_CODE (funexp) != SYMBOL_REF)
320 funexp = memory_address (FUNCTION_MODE, funexp);
322 funmem = gen_rtx_MEM (FUNCTION_MODE, funexp);
323 if (fndecl && TREE_CODE (fndecl) == FUNCTION_DECL)
325 tree t = fndecl;
327 /* Although a built-in FUNCTION_DECL and its non-__builtin
328 counterpart compare equal and get a shared mem_attrs, they
329 produce different dump output in compare-debug compilations,
330 if an entry gets garbage collected in one compilation, then
331 adds a different (but equivalent) entry, while the other
332 doesn't run the garbage collector at the same spot and then
333 shares the mem_attr with the equivalent entry. */
334 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
336 tree t2 = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
337 if (t2)
338 t = t2;
341 set_mem_expr (funmem, t);
343 else if (fntree)
344 set_mem_expr (funmem, build_simple_mem_ref (CALL_EXPR_FN (fntree)));
346 #if defined (HAVE_sibcall_pop) && defined (HAVE_sibcall_value_pop)
347 if ((ecf_flags & ECF_SIBCALL)
348 && HAVE_sibcall_pop && HAVE_sibcall_value_pop
349 && (n_popped > 0 || stack_size == 0))
351 rtx n_pop = GEN_INT (n_popped);
352 rtx pat;
354 /* If this subroutine pops its own args, record that in the call insn
355 if possible, for the sake of frame pointer elimination. */
357 if (valreg)
358 pat = GEN_SIBCALL_VALUE_POP (valreg, funmem, rounded_stack_size_rtx,
359 next_arg_reg, n_pop);
360 else
361 pat = GEN_SIBCALL_POP (funmem, rounded_stack_size_rtx, next_arg_reg,
362 n_pop);
364 emit_call_insn (pat);
365 already_popped = 1;
367 else
368 #endif
370 #if defined (HAVE_call_pop) && defined (HAVE_call_value_pop)
371 /* If the target has "call" or "call_value" insns, then prefer them
372 if no arguments are actually popped. If the target does not have
373 "call" or "call_value" insns, then we must use the popping versions
374 even if the call has no arguments to pop. */
375 #if defined (HAVE_call) && defined (HAVE_call_value)
376 if (HAVE_call && HAVE_call_value && HAVE_call_pop && HAVE_call_value_pop
377 && n_popped > 0)
378 #else
379 if (HAVE_call_pop && HAVE_call_value_pop)
380 #endif
382 rtx n_pop = GEN_INT (n_popped);
383 rtx pat;
385 /* If this subroutine pops its own args, record that in the call insn
386 if possible, for the sake of frame pointer elimination. */
388 if (valreg)
389 pat = GEN_CALL_VALUE_POP (valreg, funmem, rounded_stack_size_rtx,
390 next_arg_reg, n_pop);
391 else
392 pat = GEN_CALL_POP (funmem, rounded_stack_size_rtx, next_arg_reg,
393 n_pop);
395 emit_call_insn (pat);
396 already_popped = 1;
398 else
399 #endif
401 #if defined (HAVE_sibcall) && defined (HAVE_sibcall_value)
402 if ((ecf_flags & ECF_SIBCALL)
403 && HAVE_sibcall && HAVE_sibcall_value)
405 if (valreg)
406 emit_call_insn (GEN_SIBCALL_VALUE (valreg, funmem,
407 rounded_stack_size_rtx,
408 next_arg_reg, NULL_RTX));
409 else
410 emit_call_insn (GEN_SIBCALL (funmem, rounded_stack_size_rtx,
411 next_arg_reg,
412 GEN_INT (struct_value_size)));
414 else
415 #endif
417 #if defined (HAVE_call) && defined (HAVE_call_value)
418 if (HAVE_call && HAVE_call_value)
420 if (valreg)
421 emit_call_insn (GEN_CALL_VALUE (valreg, funmem, rounded_stack_size_rtx,
422 next_arg_reg, NULL_RTX));
423 else
424 emit_call_insn (GEN_CALL (funmem, rounded_stack_size_rtx, next_arg_reg,
425 GEN_INT (struct_value_size)));
427 else
428 #endif
429 gcc_unreachable ();
431 /* Find the call we just emitted. */
432 call_insn = last_call_insn ();
434 /* Some target create a fresh MEM instead of reusing the one provided
435 above. Set its MEM_EXPR. */
436 call = get_call_rtx_from (call_insn);
437 if (call
438 && MEM_EXPR (XEXP (call, 0)) == NULL_TREE
439 && MEM_EXPR (funmem) != NULL_TREE)
440 set_mem_expr (XEXP (call, 0), MEM_EXPR (funmem));
442 /* Mark instrumented calls. */
443 if (call && fntree)
444 CALL_EXPR_WITH_BOUNDS_P (call) = CALL_WITH_BOUNDS_P (fntree);
446 /* Put the register usage information there. */
447 add_function_usage_to (call_insn, call_fusage);
449 /* If this is a const call, then set the insn's unchanging bit. */
450 if (ecf_flags & ECF_CONST)
451 RTL_CONST_CALL_P (call_insn) = 1;
453 /* If this is a pure call, then set the insn's unchanging bit. */
454 if (ecf_flags & ECF_PURE)
455 RTL_PURE_CALL_P (call_insn) = 1;
457 /* If this is a const call, then set the insn's unchanging bit. */
458 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
459 RTL_LOOPING_CONST_OR_PURE_CALL_P (call_insn) = 1;
461 /* Create a nothrow REG_EH_REGION note, if needed. */
462 make_reg_eh_region_note (call_insn, ecf_flags, 0);
464 if (ecf_flags & ECF_NORETURN)
465 add_reg_note (call_insn, REG_NORETURN, const0_rtx);
467 if (ecf_flags & ECF_RETURNS_TWICE)
469 add_reg_note (call_insn, REG_SETJMP, const0_rtx);
470 cfun->calls_setjmp = 1;
473 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
475 /* Restore this now, so that we do defer pops for this call's args
476 if the context of the call as a whole permits. */
477 inhibit_defer_pop = old_inhibit_defer_pop;
479 if (n_popped > 0)
481 if (!already_popped)
482 CALL_INSN_FUNCTION_USAGE (call_insn)
483 = gen_rtx_EXPR_LIST (VOIDmode,
484 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
485 CALL_INSN_FUNCTION_USAGE (call_insn));
486 rounded_stack_size -= n_popped;
487 rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
488 stack_pointer_delta -= n_popped;
490 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
492 /* If popup is needed, stack realign must use DRAP */
493 if (SUPPORTS_STACK_ALIGNMENT)
494 crtl->need_drap = true;
496 /* For noreturn calls when not accumulating outgoing args force
497 REG_ARGS_SIZE note to prevent crossjumping of calls with different
498 args sizes. */
499 else if (!ACCUMULATE_OUTGOING_ARGS && (ecf_flags & ECF_NORETURN) != 0)
500 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
502 if (!ACCUMULATE_OUTGOING_ARGS)
504 /* If returning from the subroutine does not automatically pop the args,
505 we need an instruction to pop them sooner or later.
506 Perhaps do it now; perhaps just record how much space to pop later.
508 If returning from the subroutine does pop the args, indicate that the
509 stack pointer will be changed. */
511 if (rounded_stack_size != 0)
513 if (ecf_flags & ECF_NORETURN)
514 /* Just pretend we did the pop. */
515 stack_pointer_delta -= rounded_stack_size;
516 else if (flag_defer_pop && inhibit_defer_pop == 0
517 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
518 pending_stack_adjust += rounded_stack_size;
519 else
520 adjust_stack (rounded_stack_size_rtx);
523 /* When we accumulate outgoing args, we must avoid any stack manipulations.
524 Restore the stack pointer to its original value now. Usually
525 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
526 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
527 popping variants of functions exist as well.
529 ??? We may optimize similar to defer_pop above, but it is
530 probably not worthwhile.
532 ??? It will be worthwhile to enable combine_stack_adjustments even for
533 such machines. */
534 else if (n_popped)
535 anti_adjust_stack (GEN_INT (n_popped));
538 /* Determine if the function identified by NAME and FNDECL is one with
539 special properties we wish to know about.
541 For example, if the function might return more than one time (setjmp), then
542 set RETURNS_TWICE to a nonzero value.
544 Similarly set NORETURN if the function is in the longjmp family.
546 Set MAY_BE_ALLOCA for any memory allocation function that might allocate
547 space from the stack such as alloca. */
549 static int
550 special_function_p (const_tree fndecl, int flags)
552 tree name_decl = DECL_NAME (fndecl);
554 /* For instrumentation clones we want to derive flags
555 from the original name. */
556 if (cgraph_node::get (fndecl)
557 && cgraph_node::get (fndecl)->instrumentation_clone)
558 name_decl = DECL_NAME (cgraph_node::get (fndecl)->orig_decl);
560 if (fndecl && name_decl
561 && IDENTIFIER_LENGTH (name_decl) <= 17
562 /* Exclude functions not at the file scope, or not `extern',
563 since they are not the magic functions we would otherwise
564 think they are.
565 FIXME: this should be handled with attributes, not with this
566 hacky imitation of DECL_ASSEMBLER_NAME. It's (also) wrong
567 because you can declare fork() inside a function if you
568 wish. */
569 && (DECL_CONTEXT (fndecl) == NULL_TREE
570 || TREE_CODE (DECL_CONTEXT (fndecl)) == TRANSLATION_UNIT_DECL)
571 && TREE_PUBLIC (fndecl))
573 const char *name = IDENTIFIER_POINTER (name_decl);
574 const char *tname = name;
576 /* We assume that alloca will always be called by name. It
577 makes no sense to pass it as a pointer-to-function to
578 anything that does not understand its behavior. */
579 if (((IDENTIFIER_LENGTH (name_decl) == 6
580 && name[0] == 'a'
581 && ! strcmp (name, "alloca"))
582 || (IDENTIFIER_LENGTH (name_decl) == 16
583 && name[0] == '_'
584 && ! strcmp (name, "__builtin_alloca"))))
585 flags |= ECF_MAY_BE_ALLOCA;
587 /* Disregard prefix _, __, __x or __builtin_. */
588 if (name[0] == '_')
590 if (name[1] == '_'
591 && name[2] == 'b'
592 && !strncmp (name + 3, "uiltin_", 7))
593 tname += 10;
594 else if (name[1] == '_' && name[2] == 'x')
595 tname += 3;
596 else if (name[1] == '_')
597 tname += 2;
598 else
599 tname += 1;
602 if (tname[0] == 's')
604 if ((tname[1] == 'e'
605 && (! strcmp (tname, "setjmp")
606 || ! strcmp (tname, "setjmp_syscall")))
607 || (tname[1] == 'i'
608 && ! strcmp (tname, "sigsetjmp"))
609 || (tname[1] == 'a'
610 && ! strcmp (tname, "savectx")))
611 flags |= ECF_RETURNS_TWICE | ECF_LEAF;
613 if (tname[1] == 'i'
614 && ! strcmp (tname, "siglongjmp"))
615 flags |= ECF_NORETURN;
617 else if ((tname[0] == 'q' && tname[1] == 's'
618 && ! strcmp (tname, "qsetjmp"))
619 || (tname[0] == 'v' && tname[1] == 'f'
620 && ! strcmp (tname, "vfork"))
621 || (tname[0] == 'g' && tname[1] == 'e'
622 && !strcmp (tname, "getcontext")))
623 flags |= ECF_RETURNS_TWICE | ECF_LEAF;
625 else if (tname[0] == 'l' && tname[1] == 'o'
626 && ! strcmp (tname, "longjmp"))
627 flags |= ECF_NORETURN;
630 return flags;
633 /* Similar to special_function_p; return a set of ERF_ flags for the
634 function FNDECL. */
635 static int
636 decl_return_flags (tree fndecl)
638 tree attr;
639 tree type = TREE_TYPE (fndecl);
640 if (!type)
641 return 0;
643 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
644 if (!attr)
645 return 0;
647 attr = TREE_VALUE (TREE_VALUE (attr));
648 if (!attr || TREE_STRING_LENGTH (attr) < 1)
649 return 0;
651 switch (TREE_STRING_POINTER (attr)[0])
653 case '1':
654 case '2':
655 case '3':
656 case '4':
657 return ERF_RETURNS_ARG | (TREE_STRING_POINTER (attr)[0] - '1');
659 case 'm':
660 return ERF_NOALIAS;
662 case '.':
663 default:
664 return 0;
668 /* Return nonzero when FNDECL represents a call to setjmp. */
671 setjmp_call_p (const_tree fndecl)
673 if (DECL_IS_RETURNS_TWICE (fndecl))
674 return ECF_RETURNS_TWICE;
675 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
679 /* Return true if STMT is an alloca call. */
681 bool
682 gimple_alloca_call_p (const_gimple stmt)
684 tree fndecl;
686 if (!is_gimple_call (stmt))
687 return false;
689 fndecl = gimple_call_fndecl (stmt);
690 if (fndecl && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
691 return true;
693 return false;
696 /* Return true when exp contains alloca call. */
698 bool
699 alloca_call_p (const_tree exp)
701 tree fndecl;
702 if (TREE_CODE (exp) == CALL_EXPR
703 && (fndecl = get_callee_fndecl (exp))
704 && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
705 return true;
706 return false;
709 /* Return TRUE if FNDECL is either a TM builtin or a TM cloned
710 function. Return FALSE otherwise. */
712 static bool
713 is_tm_builtin (const_tree fndecl)
715 if (fndecl == NULL)
716 return false;
718 if (decl_is_tm_clone (fndecl))
719 return true;
721 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
723 switch (DECL_FUNCTION_CODE (fndecl))
725 case BUILT_IN_TM_COMMIT:
726 case BUILT_IN_TM_COMMIT_EH:
727 case BUILT_IN_TM_ABORT:
728 case BUILT_IN_TM_IRREVOCABLE:
729 case BUILT_IN_TM_GETTMCLONE_IRR:
730 case BUILT_IN_TM_MEMCPY:
731 case BUILT_IN_TM_MEMMOVE:
732 case BUILT_IN_TM_MEMSET:
733 CASE_BUILT_IN_TM_STORE (1):
734 CASE_BUILT_IN_TM_STORE (2):
735 CASE_BUILT_IN_TM_STORE (4):
736 CASE_BUILT_IN_TM_STORE (8):
737 CASE_BUILT_IN_TM_STORE (FLOAT):
738 CASE_BUILT_IN_TM_STORE (DOUBLE):
739 CASE_BUILT_IN_TM_STORE (LDOUBLE):
740 CASE_BUILT_IN_TM_STORE (M64):
741 CASE_BUILT_IN_TM_STORE (M128):
742 CASE_BUILT_IN_TM_STORE (M256):
743 CASE_BUILT_IN_TM_LOAD (1):
744 CASE_BUILT_IN_TM_LOAD (2):
745 CASE_BUILT_IN_TM_LOAD (4):
746 CASE_BUILT_IN_TM_LOAD (8):
747 CASE_BUILT_IN_TM_LOAD (FLOAT):
748 CASE_BUILT_IN_TM_LOAD (DOUBLE):
749 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
750 CASE_BUILT_IN_TM_LOAD (M64):
751 CASE_BUILT_IN_TM_LOAD (M128):
752 CASE_BUILT_IN_TM_LOAD (M256):
753 case BUILT_IN_TM_LOG:
754 case BUILT_IN_TM_LOG_1:
755 case BUILT_IN_TM_LOG_2:
756 case BUILT_IN_TM_LOG_4:
757 case BUILT_IN_TM_LOG_8:
758 case BUILT_IN_TM_LOG_FLOAT:
759 case BUILT_IN_TM_LOG_DOUBLE:
760 case BUILT_IN_TM_LOG_LDOUBLE:
761 case BUILT_IN_TM_LOG_M64:
762 case BUILT_IN_TM_LOG_M128:
763 case BUILT_IN_TM_LOG_M256:
764 return true;
765 default:
766 break;
769 return false;
772 /* Detect flags (function attributes) from the function decl or type node. */
775 flags_from_decl_or_type (const_tree exp)
777 int flags = 0;
779 if (DECL_P (exp))
781 /* The function exp may have the `malloc' attribute. */
782 if (DECL_IS_MALLOC (exp))
783 flags |= ECF_MALLOC;
785 /* The function exp may have the `returns_twice' attribute. */
786 if (DECL_IS_RETURNS_TWICE (exp))
787 flags |= ECF_RETURNS_TWICE;
789 /* Process the pure and const attributes. */
790 if (TREE_READONLY (exp))
791 flags |= ECF_CONST;
792 if (DECL_PURE_P (exp))
793 flags |= ECF_PURE;
794 if (DECL_LOOPING_CONST_OR_PURE_P (exp))
795 flags |= ECF_LOOPING_CONST_OR_PURE;
797 if (DECL_IS_NOVOPS (exp))
798 flags |= ECF_NOVOPS;
799 if (lookup_attribute ("leaf", DECL_ATTRIBUTES (exp)))
800 flags |= ECF_LEAF;
802 if (TREE_NOTHROW (exp))
803 flags |= ECF_NOTHROW;
805 if (flag_tm)
807 if (is_tm_builtin (exp))
808 flags |= ECF_TM_BUILTIN;
809 else if ((flags & (ECF_CONST|ECF_NOVOPS)) != 0
810 || lookup_attribute ("transaction_pure",
811 TYPE_ATTRIBUTES (TREE_TYPE (exp))))
812 flags |= ECF_TM_PURE;
815 flags = special_function_p (exp, flags);
817 else if (TYPE_P (exp))
819 if (TYPE_READONLY (exp))
820 flags |= ECF_CONST;
822 if (flag_tm
823 && ((flags & ECF_CONST) != 0
824 || lookup_attribute ("transaction_pure", TYPE_ATTRIBUTES (exp))))
825 flags |= ECF_TM_PURE;
827 else
828 gcc_unreachable ();
830 if (TREE_THIS_VOLATILE (exp))
832 flags |= ECF_NORETURN;
833 if (flags & (ECF_CONST|ECF_PURE))
834 flags |= ECF_LOOPING_CONST_OR_PURE;
837 return flags;
840 /* Detect flags from a CALL_EXPR. */
843 call_expr_flags (const_tree t)
845 int flags;
846 tree decl = get_callee_fndecl (t);
848 if (decl)
849 flags = flags_from_decl_or_type (decl);
850 else if (CALL_EXPR_FN (t) == NULL_TREE)
851 flags = internal_fn_flags (CALL_EXPR_IFN (t));
852 else
854 t = TREE_TYPE (CALL_EXPR_FN (t));
855 if (t && TREE_CODE (t) == POINTER_TYPE)
856 flags = flags_from_decl_or_type (TREE_TYPE (t));
857 else
858 flags = 0;
861 return flags;
864 /* Precompute all register parameters as described by ARGS, storing values
865 into fields within the ARGS array.
867 NUM_ACTUALS indicates the total number elements in the ARGS array.
869 Set REG_PARM_SEEN if we encounter a register parameter. */
871 static void
872 precompute_register_parameters (int num_actuals, struct arg_data *args,
873 int *reg_parm_seen)
875 int i;
877 *reg_parm_seen = 0;
879 for (i = 0; i < num_actuals; i++)
880 if (args[i].reg != 0 && ! args[i].pass_on_stack)
882 *reg_parm_seen = 1;
884 if (args[i].value == 0)
886 push_temp_slots ();
887 args[i].value = expand_normal (args[i].tree_value);
888 preserve_temp_slots (args[i].value);
889 pop_temp_slots ();
892 /* If we are to promote the function arg to a wider mode,
893 do it now. */
895 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
896 args[i].value
897 = convert_modes (args[i].mode,
898 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
899 args[i].value, args[i].unsignedp);
901 /* If the value is a non-legitimate constant, force it into a
902 pseudo now. TLS symbols sometimes need a call to resolve. */
903 if (CONSTANT_P (args[i].value)
904 && !targetm.legitimate_constant_p (args[i].mode, args[i].value))
905 args[i].value = force_reg (args[i].mode, args[i].value);
907 /* If we're going to have to load the value by parts, pull the
908 parts into pseudos. The part extraction process can involve
909 non-trivial computation. */
910 if (GET_CODE (args[i].reg) == PARALLEL)
912 tree type = TREE_TYPE (args[i].tree_value);
913 args[i].parallel_value
914 = emit_group_load_into_temps (args[i].reg, args[i].value,
915 type, int_size_in_bytes (type));
918 /* If the value is expensive, and we are inside an appropriately
919 short loop, put the value into a pseudo and then put the pseudo
920 into the hard reg.
922 For small register classes, also do this if this call uses
923 register parameters. This is to avoid reload conflicts while
924 loading the parameters registers. */
926 else if ((! (REG_P (args[i].value)
927 || (GET_CODE (args[i].value) == SUBREG
928 && REG_P (SUBREG_REG (args[i].value)))))
929 && args[i].mode != BLKmode
930 && set_src_cost (args[i].value, optimize_insn_for_speed_p ())
931 > COSTS_N_INSNS (1)
932 && ((*reg_parm_seen
933 && targetm.small_register_classes_for_mode_p (args[i].mode))
934 || optimize))
935 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
939 #ifdef REG_PARM_STACK_SPACE
941 /* The argument list is the property of the called routine and it
942 may clobber it. If the fixed area has been used for previous
943 parameters, we must save and restore it. */
945 static rtx
946 save_fixed_argument_area (int reg_parm_stack_space, rtx argblock, int *low_to_save, int *high_to_save)
948 int low;
949 int high;
951 /* Compute the boundary of the area that needs to be saved, if any. */
952 high = reg_parm_stack_space;
953 #ifdef ARGS_GROW_DOWNWARD
954 high += 1;
955 #endif
956 if (high > highest_outgoing_arg_in_use)
957 high = highest_outgoing_arg_in_use;
959 for (low = 0; low < high; low++)
960 if (stack_usage_map[low] != 0)
962 int num_to_save;
963 machine_mode save_mode;
964 int delta;
965 rtx addr;
966 rtx stack_area;
967 rtx save_area;
969 while (stack_usage_map[--high] == 0)
972 *low_to_save = low;
973 *high_to_save = high;
975 num_to_save = high - low + 1;
976 save_mode = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
978 /* If we don't have the required alignment, must do this
979 in BLKmode. */
980 if ((low & (MIN (GET_MODE_SIZE (save_mode),
981 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
982 save_mode = BLKmode;
984 #ifdef ARGS_GROW_DOWNWARD
985 delta = -high;
986 #else
987 delta = low;
988 #endif
989 addr = plus_constant (Pmode, argblock, delta);
990 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
992 set_mem_align (stack_area, PARM_BOUNDARY);
993 if (save_mode == BLKmode)
995 save_area = assign_stack_temp (BLKmode, num_to_save);
996 emit_block_move (validize_mem (save_area), stack_area,
997 GEN_INT (num_to_save), BLOCK_OP_CALL_PARM);
999 else
1001 save_area = gen_reg_rtx (save_mode);
1002 emit_move_insn (save_area, stack_area);
1005 return save_area;
1008 return NULL_RTX;
1011 static void
1012 restore_fixed_argument_area (rtx save_area, rtx argblock, int high_to_save, int low_to_save)
1014 machine_mode save_mode = GET_MODE (save_area);
1015 int delta;
1016 rtx addr, stack_area;
1018 #ifdef ARGS_GROW_DOWNWARD
1019 delta = -high_to_save;
1020 #else
1021 delta = low_to_save;
1022 #endif
1023 addr = plus_constant (Pmode, argblock, delta);
1024 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
1025 set_mem_align (stack_area, PARM_BOUNDARY);
1027 if (save_mode != BLKmode)
1028 emit_move_insn (stack_area, save_area);
1029 else
1030 emit_block_move (stack_area, validize_mem (save_area),
1031 GEN_INT (high_to_save - low_to_save + 1),
1032 BLOCK_OP_CALL_PARM);
1034 #endif /* REG_PARM_STACK_SPACE */
1036 /* If any elements in ARGS refer to parameters that are to be passed in
1037 registers, but not in memory, and whose alignment does not permit a
1038 direct copy into registers. Copy the values into a group of pseudos
1039 which we will later copy into the appropriate hard registers.
1041 Pseudos for each unaligned argument will be stored into the array
1042 args[argnum].aligned_regs. The caller is responsible for deallocating
1043 the aligned_regs array if it is nonzero. */
1045 static void
1046 store_unaligned_arguments_into_pseudos (struct arg_data *args, int num_actuals)
1048 int i, j;
1050 for (i = 0; i < num_actuals; i++)
1051 if (args[i].reg != 0 && ! args[i].pass_on_stack
1052 && GET_CODE (args[i].reg) != PARALLEL
1053 && args[i].mode == BLKmode
1054 && MEM_P (args[i].value)
1055 && (MEM_ALIGN (args[i].value)
1056 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
1058 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1059 int endian_correction = 0;
1061 if (args[i].partial)
1063 gcc_assert (args[i].partial % UNITS_PER_WORD == 0);
1064 args[i].n_aligned_regs = args[i].partial / UNITS_PER_WORD;
1066 else
1068 args[i].n_aligned_regs
1069 = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1072 args[i].aligned_regs = XNEWVEC (rtx, args[i].n_aligned_regs);
1074 /* Structures smaller than a word are normally aligned to the
1075 least significant byte. On a BYTES_BIG_ENDIAN machine,
1076 this means we must skip the empty high order bytes when
1077 calculating the bit offset. */
1078 if (bytes < UNITS_PER_WORD
1079 #ifdef BLOCK_REG_PADDING
1080 && (BLOCK_REG_PADDING (args[i].mode,
1081 TREE_TYPE (args[i].tree_value), 1)
1082 == downward)
1083 #else
1084 && BYTES_BIG_ENDIAN
1085 #endif
1087 endian_correction = BITS_PER_WORD - bytes * BITS_PER_UNIT;
1089 for (j = 0; j < args[i].n_aligned_regs; j++)
1091 rtx reg = gen_reg_rtx (word_mode);
1092 rtx word = operand_subword_force (args[i].value, j, BLKmode);
1093 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
1095 args[i].aligned_regs[j] = reg;
1096 word = extract_bit_field (word, bitsize, 0, 1, NULL_RTX,
1097 word_mode, word_mode);
1099 /* There is no need to restrict this code to loading items
1100 in TYPE_ALIGN sized hunks. The bitfield instructions can
1101 load up entire word sized registers efficiently.
1103 ??? This may not be needed anymore.
1104 We use to emit a clobber here but that doesn't let later
1105 passes optimize the instructions we emit. By storing 0 into
1106 the register later passes know the first AND to zero out the
1107 bitfield being set in the register is unnecessary. The store
1108 of 0 will be deleted as will at least the first AND. */
1110 emit_move_insn (reg, const0_rtx);
1112 bytes -= bitsize / BITS_PER_UNIT;
1113 store_bit_field (reg, bitsize, endian_correction, 0, 0,
1114 word_mode, word);
1119 /* Fill in ARGS_SIZE and ARGS array based on the parameters found in
1120 CALL_EXPR EXP.
1122 NUM_ACTUALS is the total number of parameters.
1124 N_NAMED_ARGS is the total number of named arguments.
1126 STRUCT_VALUE_ADDR_VALUE is the implicit argument for a struct return
1127 value, or null.
1129 FNDECL is the tree code for the target of this call (if known)
1131 ARGS_SO_FAR holds state needed by the target to know where to place
1132 the next argument.
1134 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
1135 for arguments which are passed in registers.
1137 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
1138 and may be modified by this routine.
1140 OLD_PENDING_ADJ, MUST_PREALLOCATE and FLAGS are pointers to integer
1141 flags which may may be modified by this routine.
1143 MAY_TAILCALL is cleared if we encounter an invisible pass-by-reference
1144 that requires allocation of stack space.
1146 CALL_FROM_THUNK_P is true if this call is the jump from a thunk to
1147 the thunked-to function. */
1149 static void
1150 initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED,
1151 struct arg_data *args,
1152 struct args_size *args_size,
1153 int n_named_args ATTRIBUTE_UNUSED,
1154 tree exp, tree struct_value_addr_value,
1155 tree fndecl, tree fntype,
1156 cumulative_args_t args_so_far,
1157 int reg_parm_stack_space,
1158 rtx *old_stack_level, int *old_pending_adj,
1159 int *must_preallocate, int *ecf_flags,
1160 bool *may_tailcall, bool call_from_thunk_p)
1162 CUMULATIVE_ARGS *args_so_far_pnt = get_cumulative_args (args_so_far);
1163 location_t loc = EXPR_LOCATION (exp);
1165 /* Count arg position in order args appear. */
1166 int argpos;
1168 int i;
1170 args_size->constant = 0;
1171 args_size->var = 0;
1173 bitmap_obstack_initialize (NULL);
1175 /* In this loop, we consider args in the order they are written.
1176 We fill up ARGS from the back. */
1178 i = num_actuals - 1;
1180 int j = i, ptr_arg = -1;
1181 call_expr_arg_iterator iter;
1182 tree arg;
1183 bitmap slots = NULL;
1185 if (struct_value_addr_value)
1187 args[j].tree_value = struct_value_addr_value;
1188 j--;
1190 /* If we pass structure address then we need to
1191 create bounds for it. Since created bounds is
1192 a call statement, we expand it right here to avoid
1193 fixing all other places where it may be expanded. */
1194 if (CALL_WITH_BOUNDS_P (exp))
1196 args[j].value = gen_reg_rtx (targetm.chkp_bound_mode ());
1197 args[j].tree_value
1198 = chkp_make_bounds_for_struct_addr (struct_value_addr_value);
1199 expand_expr_real (args[j].tree_value, args[j].value, VOIDmode,
1200 EXPAND_NORMAL, 0, false);
1201 args[j].pointer_arg = j + 1;
1202 j--;
1205 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
1207 tree argtype = TREE_TYPE (arg);
1209 /* Remember last param with pointer and associate it
1210 with following pointer bounds. */
1211 if (CALL_WITH_BOUNDS_P (exp)
1212 && chkp_type_has_pointer (argtype))
1214 if (slots)
1215 BITMAP_FREE (slots);
1216 ptr_arg = j;
1217 if (!BOUNDED_TYPE_P (argtype))
1219 slots = BITMAP_ALLOC (NULL);
1220 chkp_find_bound_slots (argtype, slots);
1223 else if (POINTER_BOUNDS_TYPE_P (argtype))
1225 /* We expect bounds in instrumented calls only.
1226 Otherwise it is a sign we lost flag due to some optimization
1227 and may emit call args incorrectly. */
1228 gcc_assert (CALL_WITH_BOUNDS_P (exp));
1230 /* For structures look for the next available pointer. */
1231 if (ptr_arg != -1 && slots)
1233 unsigned bnd_no = bitmap_first_set_bit (slots);
1234 args[j].pointer_offset =
1235 bnd_no * POINTER_SIZE / BITS_PER_UNIT;
1237 bitmap_clear_bit (slots, bnd_no);
1239 /* Check we have no more pointers in the structure. */
1240 if (bitmap_empty_p (slots))
1241 BITMAP_FREE (slots);
1243 args[j].pointer_arg = ptr_arg;
1245 /* Check we covered all pointers in the previous
1246 non bounds arg. */
1247 if (!slots)
1248 ptr_arg = -1;
1250 else
1251 ptr_arg = -1;
1253 if (targetm.calls.split_complex_arg
1254 && argtype
1255 && TREE_CODE (argtype) == COMPLEX_TYPE
1256 && targetm.calls.split_complex_arg (argtype))
1258 tree subtype = TREE_TYPE (argtype);
1259 args[j].tree_value = build1 (REALPART_EXPR, subtype, arg);
1260 j--;
1261 args[j].tree_value = build1 (IMAGPART_EXPR, subtype, arg);
1263 else
1264 args[j].tree_value = arg;
1265 j--;
1268 if (slots)
1269 BITMAP_FREE (slots);
1272 bitmap_obstack_release (NULL);
1274 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
1275 for (argpos = 0; argpos < num_actuals; i--, argpos++)
1277 tree type = TREE_TYPE (args[i].tree_value);
1278 int unsignedp;
1279 machine_mode mode;
1281 /* Replace erroneous argument with constant zero. */
1282 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
1283 args[i].tree_value = integer_zero_node, type = integer_type_node;
1285 /* If TYPE is a transparent union or record, pass things the way
1286 we would pass the first field of the union or record. We have
1287 already verified that the modes are the same. */
1288 if ((TREE_CODE (type) == UNION_TYPE || TREE_CODE (type) == RECORD_TYPE)
1289 && TYPE_TRANSPARENT_AGGR (type))
1290 type = TREE_TYPE (first_field (type));
1292 /* Decide where to pass this arg.
1294 args[i].reg is nonzero if all or part is passed in registers.
1296 args[i].partial is nonzero if part but not all is passed in registers,
1297 and the exact value says how many bytes are passed in registers.
1299 args[i].pass_on_stack is nonzero if the argument must at least be
1300 computed on the stack. It may then be loaded back into registers
1301 if args[i].reg is nonzero.
1303 These decisions are driven by the FUNCTION_... macros and must agree
1304 with those made by function.c. */
1306 /* See if this argument should be passed by invisible reference. */
1307 if (pass_by_reference (args_so_far_pnt, TYPE_MODE (type),
1308 type, argpos < n_named_args))
1310 bool callee_copies;
1311 tree base = NULL_TREE;
1313 callee_copies
1314 = reference_callee_copied (args_so_far_pnt, TYPE_MODE (type),
1315 type, argpos < n_named_args);
1317 /* If we're compiling a thunk, pass through invisible references
1318 instead of making a copy. */
1319 if (call_from_thunk_p
1320 || (callee_copies
1321 && !TREE_ADDRESSABLE (type)
1322 && (base = get_base_address (args[i].tree_value))
1323 && TREE_CODE (base) != SSA_NAME
1324 && (!DECL_P (base) || MEM_P (DECL_RTL (base)))))
1326 /* We may have turned the parameter value into an SSA name.
1327 Go back to the original parameter so we can take the
1328 address. */
1329 if (TREE_CODE (args[i].tree_value) == SSA_NAME)
1331 gcc_assert (SSA_NAME_IS_DEFAULT_DEF (args[i].tree_value));
1332 args[i].tree_value = SSA_NAME_VAR (args[i].tree_value);
1333 gcc_assert (TREE_CODE (args[i].tree_value) == PARM_DECL);
1335 /* Argument setup code may have copied the value to register. We
1336 revert that optimization now because the tail call code must
1337 use the original location. */
1338 if (TREE_CODE (args[i].tree_value) == PARM_DECL
1339 && !MEM_P (DECL_RTL (args[i].tree_value))
1340 && DECL_INCOMING_RTL (args[i].tree_value)
1341 && MEM_P (DECL_INCOMING_RTL (args[i].tree_value)))
1342 set_decl_rtl (args[i].tree_value,
1343 DECL_INCOMING_RTL (args[i].tree_value));
1345 mark_addressable (args[i].tree_value);
1347 /* We can't use sibcalls if a callee-copied argument is
1348 stored in the current function's frame. */
1349 if (!call_from_thunk_p && DECL_P (base) && !TREE_STATIC (base))
1350 *may_tailcall = false;
1352 args[i].tree_value = build_fold_addr_expr_loc (loc,
1353 args[i].tree_value);
1354 type = TREE_TYPE (args[i].tree_value);
1356 if (*ecf_flags & ECF_CONST)
1357 *ecf_flags &= ~(ECF_CONST | ECF_LOOPING_CONST_OR_PURE);
1359 else
1361 /* We make a copy of the object and pass the address to the
1362 function being called. */
1363 rtx copy;
1365 if (!COMPLETE_TYPE_P (type)
1366 || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST
1367 || (flag_stack_check == GENERIC_STACK_CHECK
1368 && compare_tree_int (TYPE_SIZE_UNIT (type),
1369 STACK_CHECK_MAX_VAR_SIZE) > 0))
1371 /* This is a variable-sized object. Make space on the stack
1372 for it. */
1373 rtx size_rtx = expr_size (args[i].tree_value);
1375 if (*old_stack_level == 0)
1377 emit_stack_save (SAVE_BLOCK, old_stack_level);
1378 *old_pending_adj = pending_stack_adjust;
1379 pending_stack_adjust = 0;
1382 /* We can pass TRUE as the 4th argument because we just
1383 saved the stack pointer and will restore it right after
1384 the call. */
1385 copy = allocate_dynamic_stack_space (size_rtx,
1386 TYPE_ALIGN (type),
1387 TYPE_ALIGN (type),
1388 true);
1389 copy = gen_rtx_MEM (BLKmode, copy);
1390 set_mem_attributes (copy, type, 1);
1392 else
1393 copy = assign_temp (type, 1, 0);
1395 store_expr (args[i].tree_value, copy, 0, false);
1397 /* Just change the const function to pure and then let
1398 the next test clear the pure based on
1399 callee_copies. */
1400 if (*ecf_flags & ECF_CONST)
1402 *ecf_flags &= ~ECF_CONST;
1403 *ecf_flags |= ECF_PURE;
1406 if (!callee_copies && *ecf_flags & ECF_PURE)
1407 *ecf_flags &= ~(ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
1409 args[i].tree_value
1410 = build_fold_addr_expr_loc (loc, make_tree (type, copy));
1411 type = TREE_TYPE (args[i].tree_value);
1412 *may_tailcall = false;
1416 unsignedp = TYPE_UNSIGNED (type);
1417 mode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
1418 fndecl ? TREE_TYPE (fndecl) : fntype, 0);
1420 args[i].unsignedp = unsignedp;
1421 args[i].mode = mode;
1423 args[i].reg = targetm.calls.function_arg (args_so_far, mode, type,
1424 argpos < n_named_args);
1426 if (args[i].reg && CONST_INT_P (args[i].reg))
1428 args[i].special_slot = args[i].reg;
1429 args[i].reg = NULL;
1432 /* If this is a sibling call and the machine has register windows, the
1433 register window has to be unwinded before calling the routine, so
1434 arguments have to go into the incoming registers. */
1435 if (targetm.calls.function_incoming_arg != targetm.calls.function_arg)
1436 args[i].tail_call_reg
1437 = targetm.calls.function_incoming_arg (args_so_far, mode, type,
1438 argpos < n_named_args);
1439 else
1440 args[i].tail_call_reg = args[i].reg;
1442 if (args[i].reg)
1443 args[i].partial
1444 = targetm.calls.arg_partial_bytes (args_so_far, mode, type,
1445 argpos < n_named_args);
1447 args[i].pass_on_stack = targetm.calls.must_pass_in_stack (mode, type);
1449 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
1450 it means that we are to pass this arg in the register(s) designated
1451 by the PARALLEL, but also to pass it in the stack. */
1452 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
1453 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
1454 args[i].pass_on_stack = 1;
1456 /* If this is an addressable type, we must preallocate the stack
1457 since we must evaluate the object into its final location.
1459 If this is to be passed in both registers and the stack, it is simpler
1460 to preallocate. */
1461 if (TREE_ADDRESSABLE (type)
1462 || (args[i].pass_on_stack && args[i].reg != 0))
1463 *must_preallocate = 1;
1465 /* No stack allocation and padding for bounds. */
1466 if (POINTER_BOUNDS_P (args[i].tree_value))
1468 /* Compute the stack-size of this argument. */
1469 else if (args[i].reg == 0 || args[i].partial != 0
1470 || reg_parm_stack_space > 0
1471 || args[i].pass_on_stack)
1472 locate_and_pad_parm (mode, type,
1473 #ifdef STACK_PARMS_IN_REG_PARM_AREA
1475 #else
1476 args[i].reg != 0,
1477 #endif
1478 reg_parm_stack_space,
1479 args[i].pass_on_stack ? 0 : args[i].partial,
1480 fndecl, args_size, &args[i].locate);
1481 #ifdef BLOCK_REG_PADDING
1482 else
1483 /* The argument is passed entirely in registers. See at which
1484 end it should be padded. */
1485 args[i].locate.where_pad =
1486 BLOCK_REG_PADDING (mode, type,
1487 int_size_in_bytes (type) <= UNITS_PER_WORD);
1488 #endif
1490 /* Update ARGS_SIZE, the total stack space for args so far. */
1492 args_size->constant += args[i].locate.size.constant;
1493 if (args[i].locate.size.var)
1494 ADD_PARM_SIZE (*args_size, args[i].locate.size.var);
1496 /* Increment ARGS_SO_FAR, which has info about which arg-registers
1497 have been used, etc. */
1499 targetm.calls.function_arg_advance (args_so_far, TYPE_MODE (type),
1500 type, argpos < n_named_args);
1504 /* Update ARGS_SIZE to contain the total size for the argument block.
1505 Return the original constant component of the argument block's size.
1507 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
1508 for arguments passed in registers. */
1510 static int
1511 compute_argument_block_size (int reg_parm_stack_space,
1512 struct args_size *args_size,
1513 tree fndecl ATTRIBUTE_UNUSED,
1514 tree fntype ATTRIBUTE_UNUSED,
1515 int preferred_stack_boundary ATTRIBUTE_UNUSED)
1517 int unadjusted_args_size = args_size->constant;
1519 /* For accumulate outgoing args mode we don't need to align, since the frame
1520 will be already aligned. Align to STACK_BOUNDARY in order to prevent
1521 backends from generating misaligned frame sizes. */
1522 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
1523 preferred_stack_boundary = STACK_BOUNDARY;
1525 /* Compute the actual size of the argument block required. The variable
1526 and constant sizes must be combined, the size may have to be rounded,
1527 and there may be a minimum required size. */
1529 if (args_size->var)
1531 args_size->var = ARGS_SIZE_TREE (*args_size);
1532 args_size->constant = 0;
1534 preferred_stack_boundary /= BITS_PER_UNIT;
1535 if (preferred_stack_boundary > 1)
1537 /* We don't handle this case yet. To handle it correctly we have
1538 to add the delta, round and subtract the delta.
1539 Currently no machine description requires this support. */
1540 gcc_assert (!(stack_pointer_delta & (preferred_stack_boundary - 1)));
1541 args_size->var = round_up (args_size->var, preferred_stack_boundary);
1544 if (reg_parm_stack_space > 0)
1546 args_size->var
1547 = size_binop (MAX_EXPR, args_size->var,
1548 ssize_int (reg_parm_stack_space));
1550 /* The area corresponding to register parameters is not to count in
1551 the size of the block we need. So make the adjustment. */
1552 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1553 args_size->var
1554 = size_binop (MINUS_EXPR, args_size->var,
1555 ssize_int (reg_parm_stack_space));
1558 else
1560 preferred_stack_boundary /= BITS_PER_UNIT;
1561 if (preferred_stack_boundary < 1)
1562 preferred_stack_boundary = 1;
1563 args_size->constant = (((args_size->constant
1564 + stack_pointer_delta
1565 + preferred_stack_boundary - 1)
1566 / preferred_stack_boundary
1567 * preferred_stack_boundary)
1568 - stack_pointer_delta);
1570 args_size->constant = MAX (args_size->constant,
1571 reg_parm_stack_space);
1573 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1574 args_size->constant -= reg_parm_stack_space;
1576 return unadjusted_args_size;
1579 /* Precompute parameters as needed for a function call.
1581 FLAGS is mask of ECF_* constants.
1583 NUM_ACTUALS is the number of arguments.
1585 ARGS is an array containing information for each argument; this
1586 routine fills in the INITIAL_VALUE and VALUE fields for each
1587 precomputed argument. */
1589 static void
1590 precompute_arguments (int num_actuals, struct arg_data *args)
1592 int i;
1594 /* If this is a libcall, then precompute all arguments so that we do not
1595 get extraneous instructions emitted as part of the libcall sequence. */
1597 /* If we preallocated the stack space, and some arguments must be passed
1598 on the stack, then we must precompute any parameter which contains a
1599 function call which will store arguments on the stack.
1600 Otherwise, evaluating the parameter may clobber previous parameters
1601 which have already been stored into the stack. (we have code to avoid
1602 such case by saving the outgoing stack arguments, but it results in
1603 worse code) */
1604 if (!ACCUMULATE_OUTGOING_ARGS)
1605 return;
1607 for (i = 0; i < num_actuals; i++)
1609 tree type;
1610 machine_mode mode;
1612 if (TREE_CODE (args[i].tree_value) != CALL_EXPR)
1613 continue;
1615 /* If this is an addressable type, we cannot pre-evaluate it. */
1616 type = TREE_TYPE (args[i].tree_value);
1617 gcc_assert (!TREE_ADDRESSABLE (type));
1619 args[i].initial_value = args[i].value
1620 = expand_normal (args[i].tree_value);
1622 mode = TYPE_MODE (type);
1623 if (mode != args[i].mode)
1625 int unsignedp = args[i].unsignedp;
1626 args[i].value
1627 = convert_modes (args[i].mode, mode,
1628 args[i].value, args[i].unsignedp);
1630 /* CSE will replace this only if it contains args[i].value
1631 pseudo, so convert it down to the declared mode using
1632 a SUBREG. */
1633 if (REG_P (args[i].value)
1634 && GET_MODE_CLASS (args[i].mode) == MODE_INT
1635 && promote_mode (type, mode, &unsignedp) != args[i].mode)
1637 args[i].initial_value
1638 = gen_lowpart_SUBREG (mode, args[i].value);
1639 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
1640 SUBREG_PROMOTED_SET (args[i].initial_value, args[i].unsignedp);
1646 /* Given the current state of MUST_PREALLOCATE and information about
1647 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
1648 compute and return the final value for MUST_PREALLOCATE. */
1650 static int
1651 finalize_must_preallocate (int must_preallocate, int num_actuals,
1652 struct arg_data *args, struct args_size *args_size)
1654 /* See if we have or want to preallocate stack space.
1656 If we would have to push a partially-in-regs parm
1657 before other stack parms, preallocate stack space instead.
1659 If the size of some parm is not a multiple of the required stack
1660 alignment, we must preallocate.
1662 If the total size of arguments that would otherwise create a copy in
1663 a temporary (such as a CALL) is more than half the total argument list
1664 size, preallocation is faster.
1666 Another reason to preallocate is if we have a machine (like the m88k)
1667 where stack alignment is required to be maintained between every
1668 pair of insns, not just when the call is made. However, we assume here
1669 that such machines either do not have push insns (and hence preallocation
1670 would occur anyway) or the problem is taken care of with
1671 PUSH_ROUNDING. */
1673 if (! must_preallocate)
1675 int partial_seen = 0;
1676 int copy_to_evaluate_size = 0;
1677 int i;
1679 for (i = 0; i < num_actuals && ! must_preallocate; i++)
1681 if (args[i].partial > 0 && ! args[i].pass_on_stack)
1682 partial_seen = 1;
1683 else if (partial_seen && args[i].reg == 0)
1684 must_preallocate = 1;
1685 /* We preallocate in case there are bounds passed
1686 in the bounds table to have precomputed address
1687 for bounds association. */
1688 else if (POINTER_BOUNDS_P (args[i].tree_value)
1689 && !args[i].reg)
1690 must_preallocate = 1;
1692 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1693 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
1694 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
1695 || TREE_CODE (args[i].tree_value) == COND_EXPR
1696 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
1697 copy_to_evaluate_size
1698 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1701 if (copy_to_evaluate_size * 2 >= args_size->constant
1702 && args_size->constant > 0)
1703 must_preallocate = 1;
1705 return must_preallocate;
1708 /* If we preallocated stack space, compute the address of each argument
1709 and store it into the ARGS array.
1711 We need not ensure it is a valid memory address here; it will be
1712 validized when it is used.
1714 ARGBLOCK is an rtx for the address of the outgoing arguments. */
1716 static void
1717 compute_argument_addresses (struct arg_data *args, rtx argblock, int num_actuals)
1719 if (argblock)
1721 rtx arg_reg = argblock;
1722 int i, arg_offset = 0;
1724 if (GET_CODE (argblock) == PLUS)
1725 arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
1727 for (i = 0; i < num_actuals; i++)
1729 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
1730 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
1731 rtx addr;
1732 unsigned int align, boundary;
1733 unsigned int units_on_stack = 0;
1734 machine_mode partial_mode = VOIDmode;
1736 /* Skip this parm if it will not be passed on the stack. */
1737 if (! args[i].pass_on_stack
1738 && args[i].reg != 0
1739 && args[i].partial == 0)
1740 continue;
1742 /* Pointer Bounds are never passed on the stack. */
1743 if (POINTER_BOUNDS_P (args[i].tree_value))
1744 continue;
1746 if (CONST_INT_P (offset))
1747 addr = plus_constant (Pmode, arg_reg, INTVAL (offset));
1748 else
1749 addr = gen_rtx_PLUS (Pmode, arg_reg, offset);
1751 addr = plus_constant (Pmode, addr, arg_offset);
1753 if (args[i].partial != 0)
1755 /* Only part of the parameter is being passed on the stack.
1756 Generate a simple memory reference of the correct size. */
1757 units_on_stack = args[i].locate.size.constant;
1758 partial_mode = mode_for_size (units_on_stack * BITS_PER_UNIT,
1759 MODE_INT, 1);
1760 args[i].stack = gen_rtx_MEM (partial_mode, addr);
1761 set_mem_size (args[i].stack, units_on_stack);
1763 else
1765 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
1766 set_mem_attributes (args[i].stack,
1767 TREE_TYPE (args[i].tree_value), 1);
1769 align = BITS_PER_UNIT;
1770 boundary = args[i].locate.boundary;
1771 if (args[i].locate.where_pad != downward)
1772 align = boundary;
1773 else if (CONST_INT_P (offset))
1775 align = INTVAL (offset) * BITS_PER_UNIT | boundary;
1776 align = align & -align;
1778 set_mem_align (args[i].stack, align);
1780 if (CONST_INT_P (slot_offset))
1781 addr = plus_constant (Pmode, arg_reg, INTVAL (slot_offset));
1782 else
1783 addr = gen_rtx_PLUS (Pmode, arg_reg, slot_offset);
1785 addr = plus_constant (Pmode, addr, arg_offset);
1787 if (args[i].partial != 0)
1789 /* Only part of the parameter is being passed on the stack.
1790 Generate a simple memory reference of the correct size.
1792 args[i].stack_slot = gen_rtx_MEM (partial_mode, addr);
1793 set_mem_size (args[i].stack_slot, units_on_stack);
1795 else
1797 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
1798 set_mem_attributes (args[i].stack_slot,
1799 TREE_TYPE (args[i].tree_value), 1);
1801 set_mem_align (args[i].stack_slot, args[i].locate.boundary);
1803 /* Function incoming arguments may overlap with sibling call
1804 outgoing arguments and we cannot allow reordering of reads
1805 from function arguments with stores to outgoing arguments
1806 of sibling calls. */
1807 set_mem_alias_set (args[i].stack, 0);
1808 set_mem_alias_set (args[i].stack_slot, 0);
1813 /* Given a FNDECL and EXP, return an rtx suitable for use as a target address
1814 in a call instruction.
1816 FNDECL is the tree node for the target function. For an indirect call
1817 FNDECL will be NULL_TREE.
1819 ADDR is the operand 0 of CALL_EXPR for this call. */
1821 static rtx
1822 rtx_for_function_call (tree fndecl, tree addr)
1824 rtx funexp;
1826 /* Get the function to call, in the form of RTL. */
1827 if (fndecl)
1829 if (!TREE_USED (fndecl) && fndecl != current_function_decl)
1830 TREE_USED (fndecl) = 1;
1832 /* Get a SYMBOL_REF rtx for the function address. */
1833 funexp = XEXP (DECL_RTL (fndecl), 0);
1835 else
1836 /* Generate an rtx (probably a pseudo-register) for the address. */
1838 push_temp_slots ();
1839 funexp = expand_normal (addr);
1840 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
1842 return funexp;
1845 /* Internal state for internal_arg_pointer_based_exp and its helpers. */
1846 static struct
1848 /* Last insn that has been scanned by internal_arg_pointer_based_exp_scan,
1849 or NULL_RTX if none has been scanned yet. */
1850 rtx_insn *scan_start;
1851 /* Vector indexed by REGNO - FIRST_PSEUDO_REGISTER, recording if a pseudo is
1852 based on crtl->args.internal_arg_pointer. The element is NULL_RTX if the
1853 pseudo isn't based on it, a CONST_INT offset if the pseudo is based on it
1854 with fixed offset, or PC if this is with variable or unknown offset. */
1855 vec<rtx> cache;
1856 } internal_arg_pointer_exp_state;
1858 static rtx internal_arg_pointer_based_exp (const_rtx, bool);
1860 /* Helper function for internal_arg_pointer_based_exp. Scan insns in
1861 the tail call sequence, starting with first insn that hasn't been
1862 scanned yet, and note for each pseudo on the LHS whether it is based
1863 on crtl->args.internal_arg_pointer or not, and what offset from that
1864 that pointer it has. */
1866 static void
1867 internal_arg_pointer_based_exp_scan (void)
1869 rtx_insn *insn, *scan_start = internal_arg_pointer_exp_state.scan_start;
1871 if (scan_start == NULL_RTX)
1872 insn = get_insns ();
1873 else
1874 insn = NEXT_INSN (scan_start);
1876 while (insn)
1878 rtx set = single_set (insn);
1879 if (set && REG_P (SET_DEST (set)) && !HARD_REGISTER_P (SET_DEST (set)))
1881 rtx val = NULL_RTX;
1882 unsigned int idx = REGNO (SET_DEST (set)) - FIRST_PSEUDO_REGISTER;
1883 /* Punt on pseudos set multiple times. */
1884 if (idx < internal_arg_pointer_exp_state.cache.length ()
1885 && (internal_arg_pointer_exp_state.cache[idx]
1886 != NULL_RTX))
1887 val = pc_rtx;
1888 else
1889 val = internal_arg_pointer_based_exp (SET_SRC (set), false);
1890 if (val != NULL_RTX)
1892 if (idx >= internal_arg_pointer_exp_state.cache.length ())
1893 internal_arg_pointer_exp_state.cache
1894 .safe_grow_cleared (idx + 1);
1895 internal_arg_pointer_exp_state.cache[idx] = val;
1898 if (NEXT_INSN (insn) == NULL_RTX)
1899 scan_start = insn;
1900 insn = NEXT_INSN (insn);
1903 internal_arg_pointer_exp_state.scan_start = scan_start;
1906 /* Compute whether RTL is based on crtl->args.internal_arg_pointer. Return
1907 NULL_RTX if RTL isn't based on it, a CONST_INT offset if RTL is based on
1908 it with fixed offset, or PC if this is with variable or unknown offset.
1909 TOPLEVEL is true if the function is invoked at the topmost level. */
1911 static rtx
1912 internal_arg_pointer_based_exp (const_rtx rtl, bool toplevel)
1914 if (CONSTANT_P (rtl))
1915 return NULL_RTX;
1917 if (rtl == crtl->args.internal_arg_pointer)
1918 return const0_rtx;
1920 if (REG_P (rtl) && HARD_REGISTER_P (rtl))
1921 return NULL_RTX;
1923 if (GET_CODE (rtl) == PLUS && CONST_INT_P (XEXP (rtl, 1)))
1925 rtx val = internal_arg_pointer_based_exp (XEXP (rtl, 0), toplevel);
1926 if (val == NULL_RTX || val == pc_rtx)
1927 return val;
1928 return plus_constant (Pmode, val, INTVAL (XEXP (rtl, 1)));
1931 /* When called at the topmost level, scan pseudo assignments in between the
1932 last scanned instruction in the tail call sequence and the latest insn
1933 in that sequence. */
1934 if (toplevel)
1935 internal_arg_pointer_based_exp_scan ();
1937 if (REG_P (rtl))
1939 unsigned int idx = REGNO (rtl) - FIRST_PSEUDO_REGISTER;
1940 if (idx < internal_arg_pointer_exp_state.cache.length ())
1941 return internal_arg_pointer_exp_state.cache[idx];
1943 return NULL_RTX;
1946 subrtx_iterator::array_type array;
1947 FOR_EACH_SUBRTX (iter, array, rtl, NONCONST)
1949 const_rtx x = *iter;
1950 if (REG_P (x) && internal_arg_pointer_based_exp (x, false) != NULL_RTX)
1951 return pc_rtx;
1952 if (MEM_P (x))
1953 iter.skip_subrtxes ();
1956 return NULL_RTX;
1959 /* Return true if and only if SIZE storage units (usually bytes)
1960 starting from address ADDR overlap with already clobbered argument
1961 area. This function is used to determine if we should give up a
1962 sibcall. */
1964 static bool
1965 mem_overlaps_already_clobbered_arg_p (rtx addr, unsigned HOST_WIDE_INT size)
1967 HOST_WIDE_INT i;
1968 rtx val;
1970 if (bitmap_empty_p (stored_args_map))
1971 return false;
1972 val = internal_arg_pointer_based_exp (addr, true);
1973 if (val == NULL_RTX)
1974 return false;
1975 else if (val == pc_rtx)
1976 return true;
1977 else
1978 i = INTVAL (val);
1979 #ifdef STACK_GROWS_DOWNWARD
1980 i -= crtl->args.pretend_args_size;
1981 #else
1982 i += crtl->args.pretend_args_size;
1983 #endif
1985 #ifdef ARGS_GROW_DOWNWARD
1986 i = -i - size;
1987 #endif
1988 if (size > 0)
1990 unsigned HOST_WIDE_INT k;
1992 for (k = 0; k < size; k++)
1993 if (i + k < SBITMAP_SIZE (stored_args_map)
1994 && bitmap_bit_p (stored_args_map, i + k))
1995 return true;
1998 return false;
2001 /* Do the register loads required for any wholly-register parms or any
2002 parms which are passed both on the stack and in a register. Their
2003 expressions were already evaluated.
2005 Mark all register-parms as living through the call, putting these USE
2006 insns in the CALL_INSN_FUNCTION_USAGE field.
2008 When IS_SIBCALL, perform the check_sibcall_argument_overlap
2009 checking, setting *SIBCALL_FAILURE if appropriate. */
2011 static void
2012 load_register_parameters (struct arg_data *args, int num_actuals,
2013 rtx *call_fusage, int flags, int is_sibcall,
2014 int *sibcall_failure)
2016 int i, j;
2018 for (i = 0; i < num_actuals; i++)
2020 rtx reg = ((flags & ECF_SIBCALL)
2021 ? args[i].tail_call_reg : args[i].reg);
2022 if (reg)
2024 int partial = args[i].partial;
2025 int nregs;
2026 int size = 0;
2027 rtx_insn *before_arg = get_last_insn ();
2028 /* Set non-negative if we must move a word at a time, even if
2029 just one word (e.g, partial == 4 && mode == DFmode). Set
2030 to -1 if we just use a normal move insn. This value can be
2031 zero if the argument is a zero size structure. */
2032 nregs = -1;
2033 if (GET_CODE (reg) == PARALLEL)
2035 else if (partial)
2037 gcc_assert (partial % UNITS_PER_WORD == 0);
2038 nregs = partial / UNITS_PER_WORD;
2040 else if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode)
2042 size = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
2043 nregs = (size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
2045 else
2046 size = GET_MODE_SIZE (args[i].mode);
2048 /* Handle calls that pass values in multiple non-contiguous
2049 locations. The Irix 6 ABI has examples of this. */
2051 if (GET_CODE (reg) == PARALLEL)
2052 emit_group_move (reg, args[i].parallel_value);
2054 /* If simple case, just do move. If normal partial, store_one_arg
2055 has already loaded the register for us. In all other cases,
2056 load the register(s) from memory. */
2058 else if (nregs == -1)
2060 emit_move_insn (reg, args[i].value);
2061 #ifdef BLOCK_REG_PADDING
2062 /* Handle case where we have a value that needs shifting
2063 up to the msb. eg. a QImode value and we're padding
2064 upward on a BYTES_BIG_ENDIAN machine. */
2065 if (size < UNITS_PER_WORD
2066 && (args[i].locate.where_pad
2067 == (BYTES_BIG_ENDIAN ? upward : downward)))
2069 rtx x;
2070 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2072 /* Assigning REG here rather than a temp makes CALL_FUSAGE
2073 report the whole reg as used. Strictly speaking, the
2074 call only uses SIZE bytes at the msb end, but it doesn't
2075 seem worth generating rtl to say that. */
2076 reg = gen_rtx_REG (word_mode, REGNO (reg));
2077 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
2078 if (x != reg)
2079 emit_move_insn (reg, x);
2081 #endif
2084 /* If we have pre-computed the values to put in the registers in
2085 the case of non-aligned structures, copy them in now. */
2087 else if (args[i].n_aligned_regs != 0)
2088 for (j = 0; j < args[i].n_aligned_regs; j++)
2089 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
2090 args[i].aligned_regs[j]);
2092 else if (partial == 0 || args[i].pass_on_stack)
2094 rtx mem = validize_mem (copy_rtx (args[i].value));
2096 /* Check for overlap with already clobbered argument area,
2097 providing that this has non-zero size. */
2098 if (is_sibcall
2099 && (size == 0
2100 || mem_overlaps_already_clobbered_arg_p
2101 (XEXP (args[i].value, 0), size)))
2102 *sibcall_failure = 1;
2104 if (size % UNITS_PER_WORD == 0
2105 || MEM_ALIGN (mem) % BITS_PER_WORD == 0)
2106 move_block_to_reg (REGNO (reg), mem, nregs, args[i].mode);
2107 else
2109 if (nregs > 1)
2110 move_block_to_reg (REGNO (reg), mem, nregs - 1,
2111 args[i].mode);
2112 rtx dest = gen_rtx_REG (word_mode, REGNO (reg) + nregs - 1);
2113 unsigned int bitoff = (nregs - 1) * BITS_PER_WORD;
2114 unsigned int bitsize = size * BITS_PER_UNIT - bitoff;
2115 rtx x = extract_bit_field (mem, bitsize, bitoff, 1,
2116 dest, word_mode, word_mode);
2117 if (BYTES_BIG_ENDIAN)
2118 x = expand_shift (LSHIFT_EXPR, word_mode, x,
2119 BITS_PER_WORD - bitsize, dest, 1);
2120 if (x != dest)
2121 emit_move_insn (dest, x);
2124 /* Handle a BLKmode that needs shifting. */
2125 if (nregs == 1 && size < UNITS_PER_WORD
2126 #ifdef BLOCK_REG_PADDING
2127 && args[i].locate.where_pad == downward
2128 #else
2129 && BYTES_BIG_ENDIAN
2130 #endif
2133 rtx dest = gen_rtx_REG (word_mode, REGNO (reg));
2134 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2135 enum tree_code dir = (BYTES_BIG_ENDIAN
2136 ? RSHIFT_EXPR : LSHIFT_EXPR);
2137 rtx x;
2139 x = expand_shift (dir, word_mode, dest, shift, dest, 1);
2140 if (x != dest)
2141 emit_move_insn (dest, x);
2145 /* When a parameter is a block, and perhaps in other cases, it is
2146 possible that it did a load from an argument slot that was
2147 already clobbered. */
2148 if (is_sibcall
2149 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
2150 *sibcall_failure = 1;
2152 /* Handle calls that pass values in multiple non-contiguous
2153 locations. The Irix 6 ABI has examples of this. */
2154 if (GET_CODE (reg) == PARALLEL)
2155 use_group_regs (call_fusage, reg);
2156 else if (nregs == -1)
2157 use_reg_mode (call_fusage, reg,
2158 TYPE_MODE (TREE_TYPE (args[i].tree_value)));
2159 else if (nregs > 0)
2160 use_regs (call_fusage, REGNO (reg), nregs);
2165 /* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
2166 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
2167 bytes, then we would need to push some additional bytes to pad the
2168 arguments. So, we compute an adjust to the stack pointer for an
2169 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
2170 bytes. Then, when the arguments are pushed the stack will be perfectly
2171 aligned. ARGS_SIZE->CONSTANT is set to the number of bytes that should
2172 be popped after the call. Returns the adjustment. */
2174 static int
2175 combine_pending_stack_adjustment_and_call (int unadjusted_args_size,
2176 struct args_size *args_size,
2177 unsigned int preferred_unit_stack_boundary)
2179 /* The number of bytes to pop so that the stack will be
2180 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
2181 HOST_WIDE_INT adjustment;
2182 /* The alignment of the stack after the arguments are pushed, if we
2183 just pushed the arguments without adjust the stack here. */
2184 unsigned HOST_WIDE_INT unadjusted_alignment;
2186 unadjusted_alignment
2187 = ((stack_pointer_delta + unadjusted_args_size)
2188 % preferred_unit_stack_boundary);
2190 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
2191 as possible -- leaving just enough left to cancel out the
2192 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
2193 PENDING_STACK_ADJUST is non-negative, and congruent to
2194 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
2196 /* Begin by trying to pop all the bytes. */
2197 unadjusted_alignment
2198 = (unadjusted_alignment
2199 - (pending_stack_adjust % preferred_unit_stack_boundary));
2200 adjustment = pending_stack_adjust;
2201 /* Push enough additional bytes that the stack will be aligned
2202 after the arguments are pushed. */
2203 if (preferred_unit_stack_boundary > 1)
2205 if (unadjusted_alignment > 0)
2206 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
2207 else
2208 adjustment += unadjusted_alignment;
2211 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
2212 bytes after the call. The right number is the entire
2213 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
2214 by the arguments in the first place. */
2215 args_size->constant
2216 = pending_stack_adjust - adjustment + unadjusted_args_size;
2218 return adjustment;
2221 /* Scan X expression if it does not dereference any argument slots
2222 we already clobbered by tail call arguments (as noted in stored_args_map
2223 bitmap).
2224 Return nonzero if X expression dereferences such argument slots,
2225 zero otherwise. */
2227 static int
2228 check_sibcall_argument_overlap_1 (rtx x)
2230 RTX_CODE code;
2231 int i, j;
2232 const char *fmt;
2234 if (x == NULL_RTX)
2235 return 0;
2237 code = GET_CODE (x);
2239 /* We need not check the operands of the CALL expression itself. */
2240 if (code == CALL)
2241 return 0;
2243 if (code == MEM)
2244 return mem_overlaps_already_clobbered_arg_p (XEXP (x, 0),
2245 GET_MODE_SIZE (GET_MODE (x)));
2247 /* Scan all subexpressions. */
2248 fmt = GET_RTX_FORMAT (code);
2249 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2251 if (*fmt == 'e')
2253 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
2254 return 1;
2256 else if (*fmt == 'E')
2258 for (j = 0; j < XVECLEN (x, i); j++)
2259 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
2260 return 1;
2263 return 0;
2266 /* Scan sequence after INSN if it does not dereference any argument slots
2267 we already clobbered by tail call arguments (as noted in stored_args_map
2268 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
2269 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
2270 should be 0). Return nonzero if sequence after INSN dereferences such argument
2271 slots, zero otherwise. */
2273 static int
2274 check_sibcall_argument_overlap (rtx_insn *insn, struct arg_data *arg,
2275 int mark_stored_args_map)
2277 int low, high;
2279 if (insn == NULL_RTX)
2280 insn = get_insns ();
2281 else
2282 insn = NEXT_INSN (insn);
2284 for (; insn; insn = NEXT_INSN (insn))
2285 if (INSN_P (insn)
2286 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
2287 break;
2289 if (mark_stored_args_map)
2291 #ifdef ARGS_GROW_DOWNWARD
2292 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
2293 #else
2294 low = arg->locate.slot_offset.constant;
2295 #endif
2297 for (high = low + arg->locate.size.constant; low < high; low++)
2298 bitmap_set_bit (stored_args_map, low);
2300 return insn != NULL_RTX;
2303 /* Given that a function returns a value of mode MODE at the most
2304 significant end of hard register VALUE, shift VALUE left or right
2305 as specified by LEFT_P. Return true if some action was needed. */
2307 bool
2308 shift_return_value (machine_mode mode, bool left_p, rtx value)
2310 HOST_WIDE_INT shift;
2312 gcc_assert (REG_P (value) && HARD_REGISTER_P (value));
2313 shift = GET_MODE_BITSIZE (GET_MODE (value)) - GET_MODE_BITSIZE (mode);
2314 if (shift == 0)
2315 return false;
2317 /* Use ashr rather than lshr for right shifts. This is for the benefit
2318 of the MIPS port, which requires SImode values to be sign-extended
2319 when stored in 64-bit registers. */
2320 if (!force_expand_binop (GET_MODE (value), left_p ? ashl_optab : ashr_optab,
2321 value, GEN_INT (shift), value, 1, OPTAB_WIDEN))
2322 gcc_unreachable ();
2323 return true;
2326 /* If X is a likely-spilled register value, copy it to a pseudo
2327 register and return that register. Return X otherwise. */
2329 static rtx
2330 avoid_likely_spilled_reg (rtx x)
2332 rtx new_rtx;
2334 if (REG_P (x)
2335 && HARD_REGISTER_P (x)
2336 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (x))))
2338 /* Make sure that we generate a REG rather than a CONCAT.
2339 Moves into CONCATs can need nontrivial instructions,
2340 and the whole point of this function is to avoid
2341 using the hard register directly in such a situation. */
2342 generating_concat_p = 0;
2343 new_rtx = gen_reg_rtx (GET_MODE (x));
2344 generating_concat_p = 1;
2345 emit_move_insn (new_rtx, x);
2346 return new_rtx;
2348 return x;
2351 /* Generate all the code for a CALL_EXPR exp
2352 and return an rtx for its value.
2353 Store the value in TARGET (specified as an rtx) if convenient.
2354 If the value is stored in TARGET then TARGET is returned.
2355 If IGNORE is nonzero, then we ignore the value of the function call. */
2358 expand_call (tree exp, rtx target, int ignore)
2360 /* Nonzero if we are currently expanding a call. */
2361 static int currently_expanding_call = 0;
2363 /* RTX for the function to be called. */
2364 rtx funexp;
2365 /* Sequence of insns to perform a normal "call". */
2366 rtx_insn *normal_call_insns = NULL;
2367 /* Sequence of insns to perform a tail "call". */
2368 rtx_insn *tail_call_insns = NULL;
2369 /* Data type of the function. */
2370 tree funtype;
2371 tree type_arg_types;
2372 tree rettype;
2373 /* Declaration of the function being called,
2374 or 0 if the function is computed (not known by name). */
2375 tree fndecl = 0;
2376 /* The type of the function being called. */
2377 tree fntype;
2378 bool try_tail_call = CALL_EXPR_TAILCALL (exp);
2379 int pass;
2381 /* Register in which non-BLKmode value will be returned,
2382 or 0 if no value or if value is BLKmode. */
2383 rtx valreg;
2384 /* Register(s) in which bounds are returned. */
2385 rtx valbnd = NULL;
2386 /* Address where we should return a BLKmode value;
2387 0 if value not BLKmode. */
2388 rtx structure_value_addr = 0;
2389 /* Nonzero if that address is being passed by treating it as
2390 an extra, implicit first parameter. Otherwise,
2391 it is passed by being copied directly into struct_value_rtx. */
2392 int structure_value_addr_parm = 0;
2393 /* Holds the value of implicit argument for the struct value. */
2394 tree structure_value_addr_value = NULL_TREE;
2395 /* Size of aggregate value wanted, or zero if none wanted
2396 or if we are using the non-reentrant PCC calling convention
2397 or expecting the value in registers. */
2398 HOST_WIDE_INT struct_value_size = 0;
2399 /* Nonzero if called function returns an aggregate in memory PCC style,
2400 by returning the address of where to find it. */
2401 int pcc_struct_value = 0;
2402 rtx struct_value = 0;
2404 /* Number of actual parameters in this call, including struct value addr. */
2405 int num_actuals;
2406 /* Number of named args. Args after this are anonymous ones
2407 and they must all go on the stack. */
2408 int n_named_args;
2409 /* Number of complex actual arguments that need to be split. */
2410 int num_complex_actuals = 0;
2412 /* Vector of information about each argument.
2413 Arguments are numbered in the order they will be pushed,
2414 not the order they are written. */
2415 struct arg_data *args;
2417 /* Total size in bytes of all the stack-parms scanned so far. */
2418 struct args_size args_size;
2419 struct args_size adjusted_args_size;
2420 /* Size of arguments before any adjustments (such as rounding). */
2421 int unadjusted_args_size;
2422 /* Data on reg parms scanned so far. */
2423 CUMULATIVE_ARGS args_so_far_v;
2424 cumulative_args_t args_so_far;
2425 /* Nonzero if a reg parm has been scanned. */
2426 int reg_parm_seen;
2427 /* Nonzero if this is an indirect function call. */
2429 /* Nonzero if we must avoid push-insns in the args for this call.
2430 If stack space is allocated for register parameters, but not by the
2431 caller, then it is preallocated in the fixed part of the stack frame.
2432 So the entire argument block must then be preallocated (i.e., we
2433 ignore PUSH_ROUNDING in that case). */
2435 int must_preallocate = !PUSH_ARGS;
2437 /* Size of the stack reserved for parameter registers. */
2438 int reg_parm_stack_space = 0;
2440 /* Address of space preallocated for stack parms
2441 (on machines that lack push insns), or 0 if space not preallocated. */
2442 rtx argblock = 0;
2444 /* Mask of ECF_ and ERF_ flags. */
2445 int flags = 0;
2446 int return_flags = 0;
2447 #ifdef REG_PARM_STACK_SPACE
2448 /* Define the boundary of the register parm stack space that needs to be
2449 saved, if any. */
2450 int low_to_save, high_to_save;
2451 rtx save_area = 0; /* Place that it is saved */
2452 #endif
2454 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
2455 char *initial_stack_usage_map = stack_usage_map;
2456 char *stack_usage_map_buf = NULL;
2458 int old_stack_allocated;
2460 /* State variables to track stack modifications. */
2461 rtx old_stack_level = 0;
2462 int old_stack_arg_under_construction = 0;
2463 int old_pending_adj = 0;
2464 int old_inhibit_defer_pop = inhibit_defer_pop;
2466 /* Some stack pointer alterations we make are performed via
2467 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
2468 which we then also need to save/restore along the way. */
2469 int old_stack_pointer_delta = 0;
2471 rtx call_fusage;
2472 tree addr = CALL_EXPR_FN (exp);
2473 int i;
2474 /* The alignment of the stack, in bits. */
2475 unsigned HOST_WIDE_INT preferred_stack_boundary;
2476 /* The alignment of the stack, in bytes. */
2477 unsigned HOST_WIDE_INT preferred_unit_stack_boundary;
2478 /* The static chain value to use for this call. */
2479 rtx static_chain_value;
2480 /* See if this is "nothrow" function call. */
2481 if (TREE_NOTHROW (exp))
2482 flags |= ECF_NOTHROW;
2484 /* See if we can find a DECL-node for the actual function, and get the
2485 function attributes (flags) from the function decl or type node. */
2486 fndecl = get_callee_fndecl (exp);
2487 if (fndecl)
2489 fntype = TREE_TYPE (fndecl);
2490 flags |= flags_from_decl_or_type (fndecl);
2491 return_flags |= decl_return_flags (fndecl);
2493 else
2495 fntype = TREE_TYPE (TREE_TYPE (addr));
2496 flags |= flags_from_decl_or_type (fntype);
2498 rettype = TREE_TYPE (exp);
2500 struct_value = targetm.calls.struct_value_rtx (fntype, 0);
2502 /* Warn if this value is an aggregate type,
2503 regardless of which calling convention we are using for it. */
2504 if (AGGREGATE_TYPE_P (rettype))
2505 warning (OPT_Waggregate_return, "function call has aggregate value");
2507 /* If the result of a non looping pure or const function call is
2508 ignored (or void), and none of its arguments are volatile, we can
2509 avoid expanding the call and just evaluate the arguments for
2510 side-effects. */
2511 if ((flags & (ECF_CONST | ECF_PURE))
2512 && (!(flags & ECF_LOOPING_CONST_OR_PURE))
2513 && (ignore || target == const0_rtx
2514 || TYPE_MODE (rettype) == VOIDmode))
2516 bool volatilep = false;
2517 tree arg;
2518 call_expr_arg_iterator iter;
2520 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2521 if (TREE_THIS_VOLATILE (arg))
2523 volatilep = true;
2524 break;
2527 if (! volatilep)
2529 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2530 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
2531 return const0_rtx;
2535 #ifdef REG_PARM_STACK_SPACE
2536 reg_parm_stack_space = REG_PARM_STACK_SPACE (!fndecl ? fntype : fndecl);
2537 #endif
2539 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
2540 && reg_parm_stack_space > 0 && PUSH_ARGS)
2541 must_preallocate = 1;
2543 /* Set up a place to return a structure. */
2545 /* Cater to broken compilers. */
2546 if (aggregate_value_p (exp, fntype))
2548 /* This call returns a big structure. */
2549 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
2551 #ifdef PCC_STATIC_STRUCT_RETURN
2553 pcc_struct_value = 1;
2555 #else /* not PCC_STATIC_STRUCT_RETURN */
2557 struct_value_size = int_size_in_bytes (rettype);
2559 /* Even if it is semantically safe to use the target as the return
2560 slot, it may be not sufficiently aligned for the return type. */
2561 if (CALL_EXPR_RETURN_SLOT_OPT (exp)
2562 && target
2563 && MEM_P (target)
2564 && !(MEM_ALIGN (target) < TYPE_ALIGN (rettype)
2565 && SLOW_UNALIGNED_ACCESS (TYPE_MODE (rettype),
2566 MEM_ALIGN (target))))
2567 structure_value_addr = XEXP (target, 0);
2568 else
2570 /* For variable-sized objects, we must be called with a target
2571 specified. If we were to allocate space on the stack here,
2572 we would have no way of knowing when to free it. */
2573 rtx d = assign_temp (rettype, 1, 1);
2574 structure_value_addr = XEXP (d, 0);
2575 target = 0;
2578 #endif /* not PCC_STATIC_STRUCT_RETURN */
2581 /* Figure out the amount to which the stack should be aligned. */
2582 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
2583 if (fndecl)
2585 struct cgraph_rtl_info *i = cgraph_node::rtl_info (fndecl);
2586 /* Without automatic stack alignment, we can't increase preferred
2587 stack boundary. With automatic stack alignment, it is
2588 unnecessary since unless we can guarantee that all callers will
2589 align the outgoing stack properly, callee has to align its
2590 stack anyway. */
2591 if (i
2592 && i->preferred_incoming_stack_boundary
2593 && i->preferred_incoming_stack_boundary < preferred_stack_boundary)
2594 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
2597 /* Operand 0 is a pointer-to-function; get the type of the function. */
2598 funtype = TREE_TYPE (addr);
2599 gcc_assert (POINTER_TYPE_P (funtype));
2600 funtype = TREE_TYPE (funtype);
2602 /* Count whether there are actual complex arguments that need to be split
2603 into their real and imaginary parts. Munge the type_arg_types
2604 appropriately here as well. */
2605 if (targetm.calls.split_complex_arg)
2607 call_expr_arg_iterator iter;
2608 tree arg;
2609 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2611 tree type = TREE_TYPE (arg);
2612 if (type && TREE_CODE (type) == COMPLEX_TYPE
2613 && targetm.calls.split_complex_arg (type))
2614 num_complex_actuals++;
2616 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
2618 else
2619 type_arg_types = TYPE_ARG_TYPES (funtype);
2621 if (flags & ECF_MAY_BE_ALLOCA)
2622 cfun->calls_alloca = 1;
2624 /* If struct_value_rtx is 0, it means pass the address
2625 as if it were an extra parameter. Put the argument expression
2626 in structure_value_addr_value. */
2627 if (structure_value_addr && struct_value == 0)
2629 /* If structure_value_addr is a REG other than
2630 virtual_outgoing_args_rtx, we can use always use it. If it
2631 is not a REG, we must always copy it into a register.
2632 If it is virtual_outgoing_args_rtx, we must copy it to another
2633 register in some cases. */
2634 rtx temp = (!REG_P (structure_value_addr)
2635 || (ACCUMULATE_OUTGOING_ARGS
2636 && stack_arg_under_construction
2637 && structure_value_addr == virtual_outgoing_args_rtx)
2638 ? copy_addr_to_reg (convert_memory_address
2639 (Pmode, structure_value_addr))
2640 : structure_value_addr);
2642 structure_value_addr_value =
2643 make_tree (build_pointer_type (TREE_TYPE (funtype)), temp);
2644 structure_value_addr_parm = CALL_WITH_BOUNDS_P (exp) ? 2 : 1;
2647 /* Count the arguments and set NUM_ACTUALS. */
2648 num_actuals =
2649 call_expr_nargs (exp) + num_complex_actuals + structure_value_addr_parm;
2651 /* Compute number of named args.
2652 First, do a raw count of the args for INIT_CUMULATIVE_ARGS. */
2654 if (type_arg_types != 0)
2655 n_named_args
2656 = (list_length (type_arg_types)
2657 /* Count the struct value address, if it is passed as a parm. */
2658 + structure_value_addr_parm);
2659 else
2660 /* If we know nothing, treat all args as named. */
2661 n_named_args = num_actuals;
2663 /* Start updating where the next arg would go.
2665 On some machines (such as the PA) indirect calls have a different
2666 calling convention than normal calls. The fourth argument in
2667 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
2668 or not. */
2669 INIT_CUMULATIVE_ARGS (args_so_far_v, funtype, NULL_RTX, fndecl, n_named_args);
2670 args_so_far = pack_cumulative_args (&args_so_far_v);
2672 /* Now possibly adjust the number of named args.
2673 Normally, don't include the last named arg if anonymous args follow.
2674 We do include the last named arg if
2675 targetm.calls.strict_argument_naming() returns nonzero.
2676 (If no anonymous args follow, the result of list_length is actually
2677 one too large. This is harmless.)
2679 If targetm.calls.pretend_outgoing_varargs_named() returns
2680 nonzero, and targetm.calls.strict_argument_naming() returns zero,
2681 this machine will be able to place unnamed args that were passed
2682 in registers into the stack. So treat all args as named. This
2683 allows the insns emitting for a specific argument list to be
2684 independent of the function declaration.
2686 If targetm.calls.pretend_outgoing_varargs_named() returns zero,
2687 we do not have any reliable way to pass unnamed args in
2688 registers, so we must force them into memory. */
2690 if (type_arg_types != 0
2691 && targetm.calls.strict_argument_naming (args_so_far))
2693 else if (type_arg_types != 0
2694 && ! targetm.calls.pretend_outgoing_varargs_named (args_so_far))
2695 /* Don't include the last named arg. */
2696 --n_named_args;
2697 else
2698 /* Treat all args as named. */
2699 n_named_args = num_actuals;
2701 /* Make a vector to hold all the information about each arg. */
2702 args = XALLOCAVEC (struct arg_data, num_actuals);
2703 memset (args, 0, num_actuals * sizeof (struct arg_data));
2705 /* Build up entries in the ARGS array, compute the size of the
2706 arguments into ARGS_SIZE, etc. */
2707 initialize_argument_information (num_actuals, args, &args_size,
2708 n_named_args, exp,
2709 structure_value_addr_value, fndecl, fntype,
2710 args_so_far, reg_parm_stack_space,
2711 &old_stack_level, &old_pending_adj,
2712 &must_preallocate, &flags,
2713 &try_tail_call, CALL_FROM_THUNK_P (exp));
2715 if (args_size.var)
2716 must_preallocate = 1;
2718 /* Now make final decision about preallocating stack space. */
2719 must_preallocate = finalize_must_preallocate (must_preallocate,
2720 num_actuals, args,
2721 &args_size);
2723 /* If the structure value address will reference the stack pointer, we
2724 must stabilize it. We don't need to do this if we know that we are
2725 not going to adjust the stack pointer in processing this call. */
2727 if (structure_value_addr
2728 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
2729 || reg_mentioned_p (virtual_outgoing_args_rtx,
2730 structure_value_addr))
2731 && (args_size.var
2732 || (!ACCUMULATE_OUTGOING_ARGS && args_size.constant)))
2733 structure_value_addr = copy_to_reg (structure_value_addr);
2735 /* Tail calls can make things harder to debug, and we've traditionally
2736 pushed these optimizations into -O2. Don't try if we're already
2737 expanding a call, as that means we're an argument. Don't try if
2738 there's cleanups, as we know there's code to follow the call. */
2740 if (currently_expanding_call++ != 0
2741 || !flag_optimize_sibling_calls
2742 || args_size.var
2743 || dbg_cnt (tail_call) == false)
2744 try_tail_call = 0;
2746 /* Rest of purposes for tail call optimizations to fail. */
2747 if (
2748 #ifdef HAVE_sibcall_epilogue
2749 !HAVE_sibcall_epilogue
2750 #else
2752 #endif
2753 || !try_tail_call
2754 /* Doing sibling call optimization needs some work, since
2755 structure_value_addr can be allocated on the stack.
2756 It does not seem worth the effort since few optimizable
2757 sibling calls will return a structure. */
2758 || structure_value_addr != NULL_RTX
2759 #ifdef REG_PARM_STACK_SPACE
2760 /* If outgoing reg parm stack space changes, we can not do sibcall. */
2761 || (OUTGOING_REG_PARM_STACK_SPACE (funtype)
2762 != OUTGOING_REG_PARM_STACK_SPACE (TREE_TYPE (current_function_decl)))
2763 || (reg_parm_stack_space != REG_PARM_STACK_SPACE (current_function_decl))
2764 #endif
2765 /* Check whether the target is able to optimize the call
2766 into a sibcall. */
2767 || !targetm.function_ok_for_sibcall (fndecl, exp)
2768 /* Functions that do not return exactly once may not be sibcall
2769 optimized. */
2770 || (flags & (ECF_RETURNS_TWICE | ECF_NORETURN))
2771 || TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr)))
2772 /* If the called function is nested in the current one, it might access
2773 some of the caller's arguments, but could clobber them beforehand if
2774 the argument areas are shared. */
2775 || (fndecl && decl_function_context (fndecl) == current_function_decl)
2776 /* If this function requires more stack slots than the current
2777 function, we cannot change it into a sibling call.
2778 crtl->args.pretend_args_size is not part of the
2779 stack allocated by our caller. */
2780 || args_size.constant > (crtl->args.size
2781 - crtl->args.pretend_args_size)
2782 /* If the callee pops its own arguments, then it must pop exactly
2783 the same number of arguments as the current function. */
2784 || (targetm.calls.return_pops_args (fndecl, funtype, args_size.constant)
2785 != targetm.calls.return_pops_args (current_function_decl,
2786 TREE_TYPE (current_function_decl),
2787 crtl->args.size))
2788 || !lang_hooks.decls.ok_for_sibcall (fndecl))
2789 try_tail_call = 0;
2791 /* Check if caller and callee disagree in promotion of function
2792 return value. */
2793 if (try_tail_call)
2795 machine_mode caller_mode, caller_promoted_mode;
2796 machine_mode callee_mode, callee_promoted_mode;
2797 int caller_unsignedp, callee_unsignedp;
2798 tree caller_res = DECL_RESULT (current_function_decl);
2800 caller_unsignedp = TYPE_UNSIGNED (TREE_TYPE (caller_res));
2801 caller_mode = DECL_MODE (caller_res);
2802 callee_unsignedp = TYPE_UNSIGNED (TREE_TYPE (funtype));
2803 callee_mode = TYPE_MODE (TREE_TYPE (funtype));
2804 caller_promoted_mode
2805 = promote_function_mode (TREE_TYPE (caller_res), caller_mode,
2806 &caller_unsignedp,
2807 TREE_TYPE (current_function_decl), 1);
2808 callee_promoted_mode
2809 = promote_function_mode (TREE_TYPE (funtype), callee_mode,
2810 &callee_unsignedp,
2811 funtype, 1);
2812 if (caller_mode != VOIDmode
2813 && (caller_promoted_mode != callee_promoted_mode
2814 || ((caller_mode != caller_promoted_mode
2815 || callee_mode != callee_promoted_mode)
2816 && (caller_unsignedp != callee_unsignedp
2817 || GET_MODE_BITSIZE (caller_mode)
2818 < GET_MODE_BITSIZE (callee_mode)))))
2819 try_tail_call = 0;
2822 /* Ensure current function's preferred stack boundary is at least
2823 what we need. Stack alignment may also increase preferred stack
2824 boundary. */
2825 if (crtl->preferred_stack_boundary < preferred_stack_boundary)
2826 crtl->preferred_stack_boundary = preferred_stack_boundary;
2827 else
2828 preferred_stack_boundary = crtl->preferred_stack_boundary;
2830 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
2832 /* We want to make two insn chains; one for a sibling call, the other
2833 for a normal call. We will select one of the two chains after
2834 initial RTL generation is complete. */
2835 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
2837 int sibcall_failure = 0;
2838 /* We want to emit any pending stack adjustments before the tail
2839 recursion "call". That way we know any adjustment after the tail
2840 recursion call can be ignored if we indeed use the tail
2841 call expansion. */
2842 saved_pending_stack_adjust save;
2843 rtx_insn *insns, *before_call, *after_args;
2844 rtx next_arg_reg;
2846 if (pass == 0)
2848 /* State variables we need to save and restore between
2849 iterations. */
2850 save_pending_stack_adjust (&save);
2852 if (pass)
2853 flags &= ~ECF_SIBCALL;
2854 else
2855 flags |= ECF_SIBCALL;
2857 /* Other state variables that we must reinitialize each time
2858 through the loop (that are not initialized by the loop itself). */
2859 argblock = 0;
2860 call_fusage = 0;
2862 /* Start a new sequence for the normal call case.
2864 From this point on, if the sibling call fails, we want to set
2865 sibcall_failure instead of continuing the loop. */
2866 start_sequence ();
2868 /* Don't let pending stack adjusts add up to too much.
2869 Also, do all pending adjustments now if there is any chance
2870 this might be a call to alloca or if we are expanding a sibling
2871 call sequence.
2872 Also do the adjustments before a throwing call, otherwise
2873 exception handling can fail; PR 19225. */
2874 if (pending_stack_adjust >= 32
2875 || (pending_stack_adjust > 0
2876 && (flags & ECF_MAY_BE_ALLOCA))
2877 || (pending_stack_adjust > 0
2878 && flag_exceptions && !(flags & ECF_NOTHROW))
2879 || pass == 0)
2880 do_pending_stack_adjust ();
2882 /* Precompute any arguments as needed. */
2883 if (pass)
2884 precompute_arguments (num_actuals, args);
2886 /* Now we are about to start emitting insns that can be deleted
2887 if a libcall is deleted. */
2888 if (pass && (flags & ECF_MALLOC))
2889 start_sequence ();
2891 if (pass == 0 && crtl->stack_protect_guard)
2892 stack_protect_epilogue ();
2894 adjusted_args_size = args_size;
2895 /* Compute the actual size of the argument block required. The variable
2896 and constant sizes must be combined, the size may have to be rounded,
2897 and there may be a minimum required size. When generating a sibcall
2898 pattern, do not round up, since we'll be re-using whatever space our
2899 caller provided. */
2900 unadjusted_args_size
2901 = compute_argument_block_size (reg_parm_stack_space,
2902 &adjusted_args_size,
2903 fndecl, fntype,
2904 (pass == 0 ? 0
2905 : preferred_stack_boundary));
2907 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
2909 /* The argument block when performing a sibling call is the
2910 incoming argument block. */
2911 if (pass == 0)
2913 argblock = crtl->args.internal_arg_pointer;
2914 argblock
2915 #ifdef STACK_GROWS_DOWNWARD
2916 = plus_constant (Pmode, argblock, crtl->args.pretend_args_size);
2917 #else
2918 = plus_constant (Pmode, argblock, -crtl->args.pretend_args_size);
2919 #endif
2920 stored_args_map = sbitmap_alloc (args_size.constant);
2921 bitmap_clear (stored_args_map);
2924 /* If we have no actual push instructions, or shouldn't use them,
2925 make space for all args right now. */
2926 else if (adjusted_args_size.var != 0)
2928 if (old_stack_level == 0)
2930 emit_stack_save (SAVE_BLOCK, &old_stack_level);
2931 old_stack_pointer_delta = stack_pointer_delta;
2932 old_pending_adj = pending_stack_adjust;
2933 pending_stack_adjust = 0;
2934 /* stack_arg_under_construction says whether a stack arg is
2935 being constructed at the old stack level. Pushing the stack
2936 gets a clean outgoing argument block. */
2937 old_stack_arg_under_construction = stack_arg_under_construction;
2938 stack_arg_under_construction = 0;
2940 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
2941 if (flag_stack_usage_info)
2942 current_function_has_unbounded_dynamic_stack_size = 1;
2944 else
2946 /* Note that we must go through the motions of allocating an argument
2947 block even if the size is zero because we may be storing args
2948 in the area reserved for register arguments, which may be part of
2949 the stack frame. */
2951 int needed = adjusted_args_size.constant;
2953 /* Store the maximum argument space used. It will be pushed by
2954 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
2955 checking). */
2957 if (needed > crtl->outgoing_args_size)
2958 crtl->outgoing_args_size = needed;
2960 if (must_preallocate)
2962 if (ACCUMULATE_OUTGOING_ARGS)
2964 /* Since the stack pointer will never be pushed, it is
2965 possible for the evaluation of a parm to clobber
2966 something we have already written to the stack.
2967 Since most function calls on RISC machines do not use
2968 the stack, this is uncommon, but must work correctly.
2970 Therefore, we save any area of the stack that was already
2971 written and that we are using. Here we set up to do this
2972 by making a new stack usage map from the old one. The
2973 actual save will be done by store_one_arg.
2975 Another approach might be to try to reorder the argument
2976 evaluations to avoid this conflicting stack usage. */
2978 /* Since we will be writing into the entire argument area,
2979 the map must be allocated for its entire size, not just
2980 the part that is the responsibility of the caller. */
2981 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
2982 needed += reg_parm_stack_space;
2984 #ifdef ARGS_GROW_DOWNWARD
2985 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2986 needed + 1);
2987 #else
2988 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2989 needed);
2990 #endif
2991 free (stack_usage_map_buf);
2992 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
2993 stack_usage_map = stack_usage_map_buf;
2995 if (initial_highest_arg_in_use)
2996 memcpy (stack_usage_map, initial_stack_usage_map,
2997 initial_highest_arg_in_use);
2999 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3000 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
3001 (highest_outgoing_arg_in_use
3002 - initial_highest_arg_in_use));
3003 needed = 0;
3005 /* The address of the outgoing argument list must not be
3006 copied to a register here, because argblock would be left
3007 pointing to the wrong place after the call to
3008 allocate_dynamic_stack_space below. */
3010 argblock = virtual_outgoing_args_rtx;
3012 else
3014 if (inhibit_defer_pop == 0)
3016 /* Try to reuse some or all of the pending_stack_adjust
3017 to get this space. */
3018 needed
3019 = (combine_pending_stack_adjustment_and_call
3020 (unadjusted_args_size,
3021 &adjusted_args_size,
3022 preferred_unit_stack_boundary));
3024 /* combine_pending_stack_adjustment_and_call computes
3025 an adjustment before the arguments are allocated.
3026 Account for them and see whether or not the stack
3027 needs to go up or down. */
3028 needed = unadjusted_args_size - needed;
3030 if (needed < 0)
3032 /* We're releasing stack space. */
3033 /* ??? We can avoid any adjustment at all if we're
3034 already aligned. FIXME. */
3035 pending_stack_adjust = -needed;
3036 do_pending_stack_adjust ();
3037 needed = 0;
3039 else
3040 /* We need to allocate space. We'll do that in
3041 push_block below. */
3042 pending_stack_adjust = 0;
3045 /* Special case this because overhead of `push_block' in
3046 this case is non-trivial. */
3047 if (needed == 0)
3048 argblock = virtual_outgoing_args_rtx;
3049 else
3051 argblock = push_block (GEN_INT (needed), 0, 0);
3052 #ifdef ARGS_GROW_DOWNWARD
3053 argblock = plus_constant (Pmode, argblock, needed);
3054 #endif
3057 /* We only really need to call `copy_to_reg' in the case
3058 where push insns are going to be used to pass ARGBLOCK
3059 to a function call in ARGS. In that case, the stack
3060 pointer changes value from the allocation point to the
3061 call point, and hence the value of
3062 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
3063 as well always do it. */
3064 argblock = copy_to_reg (argblock);
3069 if (ACCUMULATE_OUTGOING_ARGS)
3071 /* The save/restore code in store_one_arg handles all
3072 cases except one: a constructor call (including a C
3073 function returning a BLKmode struct) to initialize
3074 an argument. */
3075 if (stack_arg_under_construction)
3077 rtx push_size
3078 = GEN_INT (adjusted_args_size.constant
3079 + (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype
3080 : TREE_TYPE (fndecl))) ? 0
3081 : reg_parm_stack_space));
3082 if (old_stack_level == 0)
3084 emit_stack_save (SAVE_BLOCK, &old_stack_level);
3085 old_stack_pointer_delta = stack_pointer_delta;
3086 old_pending_adj = pending_stack_adjust;
3087 pending_stack_adjust = 0;
3088 /* stack_arg_under_construction says whether a stack
3089 arg is being constructed at the old stack level.
3090 Pushing the stack gets a clean outgoing argument
3091 block. */
3092 old_stack_arg_under_construction
3093 = stack_arg_under_construction;
3094 stack_arg_under_construction = 0;
3095 /* Make a new map for the new argument list. */
3096 free (stack_usage_map_buf);
3097 stack_usage_map_buf = XCNEWVEC (char, highest_outgoing_arg_in_use);
3098 stack_usage_map = stack_usage_map_buf;
3099 highest_outgoing_arg_in_use = 0;
3101 /* We can pass TRUE as the 4th argument because we just
3102 saved the stack pointer and will restore it right after
3103 the call. */
3104 allocate_dynamic_stack_space (push_size, 0,
3105 BIGGEST_ALIGNMENT, true);
3108 /* If argument evaluation might modify the stack pointer,
3109 copy the address of the argument list to a register. */
3110 for (i = 0; i < num_actuals; i++)
3111 if (args[i].pass_on_stack)
3113 argblock = copy_addr_to_reg (argblock);
3114 break;
3118 compute_argument_addresses (args, argblock, num_actuals);
3120 /* Perform stack alignment before the first push (the last arg). */
3121 if (argblock == 0
3122 && adjusted_args_size.constant > reg_parm_stack_space
3123 && adjusted_args_size.constant != unadjusted_args_size)
3125 /* When the stack adjustment is pending, we get better code
3126 by combining the adjustments. */
3127 if (pending_stack_adjust
3128 && ! inhibit_defer_pop)
3130 pending_stack_adjust
3131 = (combine_pending_stack_adjustment_and_call
3132 (unadjusted_args_size,
3133 &adjusted_args_size,
3134 preferred_unit_stack_boundary));
3135 do_pending_stack_adjust ();
3137 else if (argblock == 0)
3138 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
3139 - unadjusted_args_size));
3141 /* Now that the stack is properly aligned, pops can't safely
3142 be deferred during the evaluation of the arguments. */
3143 NO_DEFER_POP;
3145 /* Record the maximum pushed stack space size. We need to delay
3146 doing it this far to take into account the optimization done
3147 by combine_pending_stack_adjustment_and_call. */
3148 if (flag_stack_usage_info
3149 && !ACCUMULATE_OUTGOING_ARGS
3150 && pass
3151 && adjusted_args_size.var == 0)
3153 int pushed = adjusted_args_size.constant + pending_stack_adjust;
3154 if (pushed > current_function_pushed_stack_size)
3155 current_function_pushed_stack_size = pushed;
3158 funexp = rtx_for_function_call (fndecl, addr);
3160 /* Precompute all register parameters. It isn't safe to compute anything
3161 once we have started filling any specific hard regs. */
3162 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
3164 if (CALL_EXPR_STATIC_CHAIN (exp))
3165 static_chain_value = expand_normal (CALL_EXPR_STATIC_CHAIN (exp));
3166 else
3167 static_chain_value = 0;
3169 #ifdef REG_PARM_STACK_SPACE
3170 /* Save the fixed argument area if it's part of the caller's frame and
3171 is clobbered by argument setup for this call. */
3172 if (ACCUMULATE_OUTGOING_ARGS && pass)
3173 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3174 &low_to_save, &high_to_save);
3175 #endif
3177 /* Now store (and compute if necessary) all non-register parms.
3178 These come before register parms, since they can require block-moves,
3179 which could clobber the registers used for register parms.
3180 Parms which have partial registers are not stored here,
3181 but we do preallocate space here if they want that. */
3183 for (i = 0; i < num_actuals; i++)
3185 /* Delay bounds until all other args are stored. */
3186 if (POINTER_BOUNDS_P (args[i].tree_value))
3187 continue;
3188 else if (args[i].reg == 0 || args[i].pass_on_stack)
3190 rtx_insn *before_arg = get_last_insn ();
3192 /* We don't allow passing huge (> 2^30 B) arguments
3193 by value. It would cause an overflow later on. */
3194 if (adjusted_args_size.constant
3195 >= (1 << (HOST_BITS_PER_INT - 2)))
3197 sorry ("passing too large argument on stack");
3198 continue;
3201 if (store_one_arg (&args[i], argblock, flags,
3202 adjusted_args_size.var != 0,
3203 reg_parm_stack_space)
3204 || (pass == 0
3205 && check_sibcall_argument_overlap (before_arg,
3206 &args[i], 1)))
3207 sibcall_failure = 1;
3210 if (args[i].stack)
3211 call_fusage
3212 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
3213 gen_rtx_USE (VOIDmode, args[i].stack),
3214 call_fusage);
3217 /* If we have a parm that is passed in registers but not in memory
3218 and whose alignment does not permit a direct copy into registers,
3219 make a group of pseudos that correspond to each register that we
3220 will later fill. */
3221 if (STRICT_ALIGNMENT)
3222 store_unaligned_arguments_into_pseudos (args, num_actuals);
3224 /* Now store any partially-in-registers parm.
3225 This is the last place a block-move can happen. */
3226 if (reg_parm_seen)
3227 for (i = 0; i < num_actuals; i++)
3228 if (args[i].partial != 0 && ! args[i].pass_on_stack)
3230 rtx_insn *before_arg = get_last_insn ();
3232 if (store_one_arg (&args[i], argblock, flags,
3233 adjusted_args_size.var != 0,
3234 reg_parm_stack_space)
3235 || (pass == 0
3236 && check_sibcall_argument_overlap (before_arg,
3237 &args[i], 1)))
3238 sibcall_failure = 1;
3241 bool any_regs = false;
3242 for (i = 0; i < num_actuals; i++)
3243 if (args[i].reg != NULL_RTX)
3245 any_regs = true;
3246 targetm.calls.call_args (args[i].reg, funtype);
3248 if (!any_regs)
3249 targetm.calls.call_args (pc_rtx, funtype);
3251 /* Figure out the register where the value, if any, will come back. */
3252 valreg = 0;
3253 valbnd = 0;
3254 if (TYPE_MODE (rettype) != VOIDmode
3255 && ! structure_value_addr)
3257 if (pcc_struct_value)
3259 valreg = hard_function_value (build_pointer_type (rettype),
3260 fndecl, NULL, (pass == 0));
3261 if (CALL_WITH_BOUNDS_P (exp))
3262 valbnd = targetm.calls.
3263 chkp_function_value_bounds (build_pointer_type (rettype),
3264 fndecl, (pass == 0));
3266 else
3268 valreg = hard_function_value (rettype, fndecl, fntype,
3269 (pass == 0));
3270 if (CALL_WITH_BOUNDS_P (exp))
3271 valbnd = targetm.calls.chkp_function_value_bounds (rettype,
3272 fndecl,
3273 (pass == 0));
3276 /* If VALREG is a PARALLEL whose first member has a zero
3277 offset, use that. This is for targets such as m68k that
3278 return the same value in multiple places. */
3279 if (GET_CODE (valreg) == PARALLEL)
3281 rtx elem = XVECEXP (valreg, 0, 0);
3282 rtx where = XEXP (elem, 0);
3283 rtx offset = XEXP (elem, 1);
3284 if (offset == const0_rtx
3285 && GET_MODE (where) == GET_MODE (valreg))
3286 valreg = where;
3290 /* Store all bounds not passed in registers. */
3291 for (i = 0; i < num_actuals; i++)
3293 if (POINTER_BOUNDS_P (args[i].tree_value)
3294 && !args[i].reg)
3295 store_bounds (&args[i],
3296 args[i].pointer_arg == -1
3297 ? NULL
3298 : &args[args[i].pointer_arg]);
3301 /* If register arguments require space on the stack and stack space
3302 was not preallocated, allocate stack space here for arguments
3303 passed in registers. */
3304 if (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
3305 && !ACCUMULATE_OUTGOING_ARGS
3306 && must_preallocate == 0 && reg_parm_stack_space > 0)
3307 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
3309 /* Pass the function the address in which to return a
3310 structure value. */
3311 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
3313 structure_value_addr
3314 = convert_memory_address (Pmode, structure_value_addr);
3315 emit_move_insn (struct_value,
3316 force_reg (Pmode,
3317 force_operand (structure_value_addr,
3318 NULL_RTX)));
3320 if (REG_P (struct_value))
3321 use_reg (&call_fusage, struct_value);
3324 after_args = get_last_insn ();
3325 funexp = prepare_call_address (fndecl ? fndecl : fntype, funexp,
3326 static_chain_value, &call_fusage,
3327 reg_parm_seen, pass == 0);
3329 load_register_parameters (args, num_actuals, &call_fusage, flags,
3330 pass == 0, &sibcall_failure);
3332 /* Save a pointer to the last insn before the call, so that we can
3333 later safely search backwards to find the CALL_INSN. */
3334 before_call = get_last_insn ();
3336 /* Set up next argument register. For sibling calls on machines
3337 with register windows this should be the incoming register. */
3338 if (pass == 0)
3339 next_arg_reg = targetm.calls.function_incoming_arg (args_so_far,
3340 VOIDmode,
3341 void_type_node,
3342 true);
3343 else
3344 next_arg_reg = targetm.calls.function_arg (args_so_far,
3345 VOIDmode, void_type_node,
3346 true);
3348 if (pass == 1 && (return_flags & ERF_RETURNS_ARG))
3350 int arg_nr = return_flags & ERF_RETURN_ARG_MASK;
3351 arg_nr = num_actuals - arg_nr - 1;
3352 if (arg_nr >= 0
3353 && arg_nr < num_actuals
3354 && args[arg_nr].reg
3355 && valreg
3356 && REG_P (valreg)
3357 && GET_MODE (args[arg_nr].reg) == GET_MODE (valreg))
3358 call_fusage
3359 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[arg_nr].tree_value)),
3360 gen_rtx_SET (VOIDmode, valreg, args[arg_nr].reg),
3361 call_fusage);
3363 /* All arguments and registers used for the call must be set up by
3364 now! */
3366 /* Stack must be properly aligned now. */
3367 gcc_assert (!pass
3368 || !(stack_pointer_delta % preferred_unit_stack_boundary));
3370 /* Generate the actual call instruction. */
3371 emit_call_1 (funexp, exp, fndecl, funtype, unadjusted_args_size,
3372 adjusted_args_size.constant, struct_value_size,
3373 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
3374 flags, args_so_far);
3376 if (flag_ipa_ra)
3378 rtx_call_insn *last;
3379 rtx datum = NULL_RTX;
3380 if (fndecl != NULL_TREE)
3382 datum = XEXP (DECL_RTL (fndecl), 0);
3383 gcc_assert (datum != NULL_RTX
3384 && GET_CODE (datum) == SYMBOL_REF);
3386 last = last_call_insn ();
3387 add_reg_note (last, REG_CALL_DECL, datum);
3390 /* If the call setup or the call itself overlaps with anything
3391 of the argument setup we probably clobbered our call address.
3392 In that case we can't do sibcalls. */
3393 if (pass == 0
3394 && check_sibcall_argument_overlap (after_args, 0, 0))
3395 sibcall_failure = 1;
3397 /* If a non-BLKmode value is returned at the most significant end
3398 of a register, shift the register right by the appropriate amount
3399 and update VALREG accordingly. BLKmode values are handled by the
3400 group load/store machinery below. */
3401 if (!structure_value_addr
3402 && !pcc_struct_value
3403 && TYPE_MODE (rettype) != VOIDmode
3404 && TYPE_MODE (rettype) != BLKmode
3405 && REG_P (valreg)
3406 && targetm.calls.return_in_msb (rettype))
3408 if (shift_return_value (TYPE_MODE (rettype), false, valreg))
3409 sibcall_failure = 1;
3410 valreg = gen_rtx_REG (TYPE_MODE (rettype), REGNO (valreg));
3413 if (pass && (flags & ECF_MALLOC))
3415 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3416 rtx_insn *last, *insns;
3418 /* The return value from a malloc-like function is a pointer. */
3419 if (TREE_CODE (rettype) == POINTER_TYPE)
3420 mark_reg_pointer (temp, MALLOC_ABI_ALIGNMENT);
3422 emit_move_insn (temp, valreg);
3424 /* The return value from a malloc-like function can not alias
3425 anything else. */
3426 last = get_last_insn ();
3427 add_reg_note (last, REG_NOALIAS, temp);
3429 /* Write out the sequence. */
3430 insns = get_insns ();
3431 end_sequence ();
3432 emit_insn (insns);
3433 valreg = temp;
3436 /* For calls to `setjmp', etc., inform
3437 function.c:setjmp_warnings that it should complain if
3438 nonvolatile values are live. For functions that cannot
3439 return, inform flow that control does not fall through. */
3441 if ((flags & ECF_NORETURN) || pass == 0)
3443 /* The barrier must be emitted
3444 immediately after the CALL_INSN. Some ports emit more
3445 than just a CALL_INSN above, so we must search for it here. */
3447 rtx_insn *last = get_last_insn ();
3448 while (!CALL_P (last))
3450 last = PREV_INSN (last);
3451 /* There was no CALL_INSN? */
3452 gcc_assert (last != before_call);
3455 emit_barrier_after (last);
3457 /* Stack adjustments after a noreturn call are dead code.
3458 However when NO_DEFER_POP is in effect, we must preserve
3459 stack_pointer_delta. */
3460 if (inhibit_defer_pop == 0)
3462 stack_pointer_delta = old_stack_allocated;
3463 pending_stack_adjust = 0;
3467 /* If value type not void, return an rtx for the value. */
3469 if (TYPE_MODE (rettype) == VOIDmode
3470 || ignore)
3471 target = const0_rtx;
3472 else if (structure_value_addr)
3474 if (target == 0 || !MEM_P (target))
3476 target
3477 = gen_rtx_MEM (TYPE_MODE (rettype),
3478 memory_address (TYPE_MODE (rettype),
3479 structure_value_addr));
3480 set_mem_attributes (target, rettype, 1);
3483 else if (pcc_struct_value)
3485 /* This is the special C++ case where we need to
3486 know what the true target was. We take care to
3487 never use this value more than once in one expression. */
3488 target = gen_rtx_MEM (TYPE_MODE (rettype),
3489 copy_to_reg (valreg));
3490 set_mem_attributes (target, rettype, 1);
3492 /* Handle calls that return values in multiple non-contiguous locations.
3493 The Irix 6 ABI has examples of this. */
3494 else if (GET_CODE (valreg) == PARALLEL)
3496 if (target == 0)
3497 target = emit_group_move_into_temps (valreg);
3498 else if (rtx_equal_p (target, valreg))
3500 else if (GET_CODE (target) == PARALLEL)
3501 /* Handle the result of a emit_group_move_into_temps
3502 call in the previous pass. */
3503 emit_group_move (target, valreg);
3504 else
3505 emit_group_store (target, valreg, rettype,
3506 int_size_in_bytes (rettype));
3508 else if (target
3509 && GET_MODE (target) == TYPE_MODE (rettype)
3510 && GET_MODE (target) == GET_MODE (valreg))
3512 bool may_overlap = false;
3514 /* We have to copy a return value in a CLASS_LIKELY_SPILLED hard
3515 reg to a plain register. */
3516 if (!REG_P (target) || HARD_REGISTER_P (target))
3517 valreg = avoid_likely_spilled_reg (valreg);
3519 /* If TARGET is a MEM in the argument area, and we have
3520 saved part of the argument area, then we can't store
3521 directly into TARGET as it may get overwritten when we
3522 restore the argument save area below. Don't work too
3523 hard though and simply force TARGET to a register if it
3524 is a MEM; the optimizer is quite likely to sort it out. */
3525 if (ACCUMULATE_OUTGOING_ARGS && pass && MEM_P (target))
3526 for (i = 0; i < num_actuals; i++)
3527 if (args[i].save_area)
3529 may_overlap = true;
3530 break;
3533 if (may_overlap)
3534 target = copy_to_reg (valreg);
3535 else
3537 /* TARGET and VALREG cannot be equal at this point
3538 because the latter would not have
3539 REG_FUNCTION_VALUE_P true, while the former would if
3540 it were referring to the same register.
3542 If they refer to the same register, this move will be
3543 a no-op, except when function inlining is being
3544 done. */
3545 emit_move_insn (target, valreg);
3547 /* If we are setting a MEM, this code must be executed.
3548 Since it is emitted after the call insn, sibcall
3549 optimization cannot be performed in that case. */
3550 if (MEM_P (target))
3551 sibcall_failure = 1;
3554 else
3555 target = copy_to_reg (avoid_likely_spilled_reg (valreg));
3557 /* If we promoted this return value, make the proper SUBREG.
3558 TARGET might be const0_rtx here, so be careful. */
3559 if (REG_P (target)
3560 && TYPE_MODE (rettype) != BLKmode
3561 && GET_MODE (target) != TYPE_MODE (rettype))
3563 tree type = rettype;
3564 int unsignedp = TYPE_UNSIGNED (type);
3565 int offset = 0;
3566 machine_mode pmode;
3568 /* Ensure we promote as expected, and get the new unsignedness. */
3569 pmode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
3570 funtype, 1);
3571 gcc_assert (GET_MODE (target) == pmode);
3573 if ((WORDS_BIG_ENDIAN || BYTES_BIG_ENDIAN)
3574 && (GET_MODE_SIZE (GET_MODE (target))
3575 > GET_MODE_SIZE (TYPE_MODE (type))))
3577 offset = GET_MODE_SIZE (GET_MODE (target))
3578 - GET_MODE_SIZE (TYPE_MODE (type));
3579 if (! BYTES_BIG_ENDIAN)
3580 offset = (offset / UNITS_PER_WORD) * UNITS_PER_WORD;
3581 else if (! WORDS_BIG_ENDIAN)
3582 offset %= UNITS_PER_WORD;
3585 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
3586 SUBREG_PROMOTED_VAR_P (target) = 1;
3587 SUBREG_PROMOTED_SET (target, unsignedp);
3590 /* If size of args is variable or this was a constructor call for a stack
3591 argument, restore saved stack-pointer value. */
3593 if (old_stack_level)
3595 rtx_insn *prev = get_last_insn ();
3597 emit_stack_restore (SAVE_BLOCK, old_stack_level);
3598 stack_pointer_delta = old_stack_pointer_delta;
3600 fixup_args_size_notes (prev, get_last_insn (), stack_pointer_delta);
3602 pending_stack_adjust = old_pending_adj;
3603 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
3604 stack_arg_under_construction = old_stack_arg_under_construction;
3605 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3606 stack_usage_map = initial_stack_usage_map;
3607 sibcall_failure = 1;
3609 else if (ACCUMULATE_OUTGOING_ARGS && pass)
3611 #ifdef REG_PARM_STACK_SPACE
3612 if (save_area)
3613 restore_fixed_argument_area (save_area, argblock,
3614 high_to_save, low_to_save);
3615 #endif
3617 /* If we saved any argument areas, restore them. */
3618 for (i = 0; i < num_actuals; i++)
3619 if (args[i].save_area)
3621 machine_mode save_mode = GET_MODE (args[i].save_area);
3622 rtx stack_area
3623 = gen_rtx_MEM (save_mode,
3624 memory_address (save_mode,
3625 XEXP (args[i].stack_slot, 0)));
3627 if (save_mode != BLKmode)
3628 emit_move_insn (stack_area, args[i].save_area);
3629 else
3630 emit_block_move (stack_area, args[i].save_area,
3631 GEN_INT (args[i].locate.size.constant),
3632 BLOCK_OP_CALL_PARM);
3635 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3636 stack_usage_map = initial_stack_usage_map;
3639 /* If this was alloca, record the new stack level for nonlocal gotos.
3640 Check for the handler slots since we might not have a save area
3641 for non-local gotos. */
3643 if ((flags & ECF_MAY_BE_ALLOCA) && cfun->nonlocal_goto_save_area != 0)
3644 update_nonlocal_goto_save_area ();
3646 /* Free up storage we no longer need. */
3647 for (i = 0; i < num_actuals; ++i)
3648 free (args[i].aligned_regs);
3650 targetm.calls.end_call_args ();
3652 insns = get_insns ();
3653 end_sequence ();
3655 if (pass == 0)
3657 tail_call_insns = insns;
3659 /* Restore the pending stack adjustment now that we have
3660 finished generating the sibling call sequence. */
3662 restore_pending_stack_adjust (&save);
3664 /* Prepare arg structure for next iteration. */
3665 for (i = 0; i < num_actuals; i++)
3667 args[i].value = 0;
3668 args[i].aligned_regs = 0;
3669 args[i].stack = 0;
3672 sbitmap_free (stored_args_map);
3673 internal_arg_pointer_exp_state.scan_start = NULL;
3674 internal_arg_pointer_exp_state.cache.release ();
3676 else
3678 normal_call_insns = insns;
3680 /* Verify that we've deallocated all the stack we used. */
3681 gcc_assert ((flags & ECF_NORETURN)
3682 || (old_stack_allocated
3683 == stack_pointer_delta - pending_stack_adjust));
3686 /* If something prevents making this a sibling call,
3687 zero out the sequence. */
3688 if (sibcall_failure)
3689 tail_call_insns = NULL;
3690 else
3691 break;
3694 /* If tail call production succeeded, we need to remove REG_EQUIV notes on
3695 arguments too, as argument area is now clobbered by the call. */
3696 if (tail_call_insns)
3698 emit_insn (tail_call_insns);
3699 crtl->tail_call_emit = true;
3701 else
3702 emit_insn (normal_call_insns);
3704 currently_expanding_call--;
3706 free (stack_usage_map_buf);
3708 /* Join result with returned bounds so caller may use them if needed. */
3709 target = chkp_join_splitted_slot (target, valbnd);
3711 return target;
3714 /* A sibling call sequence invalidates any REG_EQUIV notes made for
3715 this function's incoming arguments.
3717 At the start of RTL generation we know the only REG_EQUIV notes
3718 in the rtl chain are those for incoming arguments, so we can look
3719 for REG_EQUIV notes between the start of the function and the
3720 NOTE_INSN_FUNCTION_BEG.
3722 This is (slight) overkill. We could keep track of the highest
3723 argument we clobber and be more selective in removing notes, but it
3724 does not seem to be worth the effort. */
3726 void
3727 fixup_tail_calls (void)
3729 rtx_insn *insn;
3731 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3733 rtx note;
3735 /* There are never REG_EQUIV notes for the incoming arguments
3736 after the NOTE_INSN_FUNCTION_BEG note, so stop if we see it. */
3737 if (NOTE_P (insn)
3738 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
3739 break;
3741 note = find_reg_note (insn, REG_EQUIV, 0);
3742 if (note)
3743 remove_note (insn, note);
3744 note = find_reg_note (insn, REG_EQUIV, 0);
3745 gcc_assert (!note);
3749 /* Traverse a list of TYPES and expand all complex types into their
3750 components. */
3751 static tree
3752 split_complex_types (tree types)
3754 tree p;
3756 /* Before allocating memory, check for the common case of no complex. */
3757 for (p = types; p; p = TREE_CHAIN (p))
3759 tree type = TREE_VALUE (p);
3760 if (TREE_CODE (type) == COMPLEX_TYPE
3761 && targetm.calls.split_complex_arg (type))
3762 goto found;
3764 return types;
3766 found:
3767 types = copy_list (types);
3769 for (p = types; p; p = TREE_CHAIN (p))
3771 tree complex_type = TREE_VALUE (p);
3773 if (TREE_CODE (complex_type) == COMPLEX_TYPE
3774 && targetm.calls.split_complex_arg (complex_type))
3776 tree next, imag;
3778 /* Rewrite complex type with component type. */
3779 TREE_VALUE (p) = TREE_TYPE (complex_type);
3780 next = TREE_CHAIN (p);
3782 /* Add another component type for the imaginary part. */
3783 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
3784 TREE_CHAIN (p) = imag;
3785 TREE_CHAIN (imag) = next;
3787 /* Skip the newly created node. */
3788 p = TREE_CHAIN (p);
3792 return types;
3795 /* Output a library call to function FUN (a SYMBOL_REF rtx).
3796 The RETVAL parameter specifies whether return value needs to be saved, other
3797 parameters are documented in the emit_library_call function below. */
3799 static rtx
3800 emit_library_call_value_1 (int retval, rtx orgfun, rtx value,
3801 enum libcall_type fn_type,
3802 machine_mode outmode, int nargs, va_list p)
3804 /* Total size in bytes of all the stack-parms scanned so far. */
3805 struct args_size args_size;
3806 /* Size of arguments before any adjustments (such as rounding). */
3807 struct args_size original_args_size;
3808 int argnum;
3809 rtx fun;
3810 /* Todo, choose the correct decl type of orgfun. Sadly this information
3811 isn't present here, so we default to native calling abi here. */
3812 tree fndecl ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3813 tree fntype ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3814 int count;
3815 rtx argblock = 0;
3816 CUMULATIVE_ARGS args_so_far_v;
3817 cumulative_args_t args_so_far;
3818 struct arg
3820 rtx value;
3821 machine_mode mode;
3822 rtx reg;
3823 int partial;
3824 struct locate_and_pad_arg_data locate;
3825 rtx save_area;
3827 struct arg *argvec;
3828 int old_inhibit_defer_pop = inhibit_defer_pop;
3829 rtx call_fusage = 0;
3830 rtx mem_value = 0;
3831 rtx valreg;
3832 int pcc_struct_value = 0;
3833 int struct_value_size = 0;
3834 int flags;
3835 int reg_parm_stack_space = 0;
3836 int needed;
3837 rtx_insn *before_call;
3838 bool have_push_fusage;
3839 tree tfom; /* type_for_mode (outmode, 0) */
3841 #ifdef REG_PARM_STACK_SPACE
3842 /* Define the boundary of the register parm stack space that needs to be
3843 save, if any. */
3844 int low_to_save = 0, high_to_save = 0;
3845 rtx save_area = 0; /* Place that it is saved. */
3846 #endif
3848 /* Size of the stack reserved for parameter registers. */
3849 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3850 char *initial_stack_usage_map = stack_usage_map;
3851 char *stack_usage_map_buf = NULL;
3853 rtx struct_value = targetm.calls.struct_value_rtx (0, 0);
3855 #ifdef REG_PARM_STACK_SPACE
3856 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
3857 #endif
3859 /* By default, library functions can not throw. */
3860 flags = ECF_NOTHROW;
3862 switch (fn_type)
3864 case LCT_NORMAL:
3865 break;
3866 case LCT_CONST:
3867 flags |= ECF_CONST;
3868 break;
3869 case LCT_PURE:
3870 flags |= ECF_PURE;
3871 break;
3872 case LCT_NORETURN:
3873 flags |= ECF_NORETURN;
3874 break;
3875 case LCT_THROW:
3876 flags = ECF_NORETURN;
3877 break;
3878 case LCT_RETURNS_TWICE:
3879 flags = ECF_RETURNS_TWICE;
3880 break;
3882 fun = orgfun;
3884 /* Ensure current function's preferred stack boundary is at least
3885 what we need. */
3886 if (crtl->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
3887 crtl->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
3889 /* If this kind of value comes back in memory,
3890 decide where in memory it should come back. */
3891 if (outmode != VOIDmode)
3893 tfom = lang_hooks.types.type_for_mode (outmode, 0);
3894 if (aggregate_value_p (tfom, 0))
3896 #ifdef PCC_STATIC_STRUCT_RETURN
3897 rtx pointer_reg
3898 = hard_function_value (build_pointer_type (tfom), 0, 0, 0);
3899 mem_value = gen_rtx_MEM (outmode, pointer_reg);
3900 pcc_struct_value = 1;
3901 if (value == 0)
3902 value = gen_reg_rtx (outmode);
3903 #else /* not PCC_STATIC_STRUCT_RETURN */
3904 struct_value_size = GET_MODE_SIZE (outmode);
3905 if (value != 0 && MEM_P (value))
3906 mem_value = value;
3907 else
3908 mem_value = assign_temp (tfom, 1, 1);
3909 #endif
3910 /* This call returns a big structure. */
3911 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
3914 else
3915 tfom = void_type_node;
3917 /* ??? Unfinished: must pass the memory address as an argument. */
3919 /* Copy all the libcall-arguments out of the varargs data
3920 and into a vector ARGVEC.
3922 Compute how to pass each argument. We only support a very small subset
3923 of the full argument passing conventions to limit complexity here since
3924 library functions shouldn't have many args. */
3926 argvec = XALLOCAVEC (struct arg, nargs + 1);
3927 memset (argvec, 0, (nargs + 1) * sizeof (struct arg));
3929 #ifdef INIT_CUMULATIVE_LIBCALL_ARGS
3930 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far_v, outmode, fun);
3931 #else
3932 INIT_CUMULATIVE_ARGS (args_so_far_v, NULL_TREE, fun, 0, nargs);
3933 #endif
3934 args_so_far = pack_cumulative_args (&args_so_far_v);
3936 args_size.constant = 0;
3937 args_size.var = 0;
3939 count = 0;
3941 push_temp_slots ();
3943 /* If there's a structure value address to be passed,
3944 either pass it in the special place, or pass it as an extra argument. */
3945 if (mem_value && struct_value == 0 && ! pcc_struct_value)
3947 rtx addr = XEXP (mem_value, 0);
3949 nargs++;
3951 /* Make sure it is a reasonable operand for a move or push insn. */
3952 if (!REG_P (addr) && !MEM_P (addr)
3953 && !(CONSTANT_P (addr)
3954 && targetm.legitimate_constant_p (Pmode, addr)))
3955 addr = force_operand (addr, NULL_RTX);
3957 argvec[count].value = addr;
3958 argvec[count].mode = Pmode;
3959 argvec[count].partial = 0;
3961 argvec[count].reg = targetm.calls.function_arg (args_so_far,
3962 Pmode, NULL_TREE, true);
3963 gcc_assert (targetm.calls.arg_partial_bytes (args_so_far, Pmode,
3964 NULL_TREE, 1) == 0);
3966 locate_and_pad_parm (Pmode, NULL_TREE,
3967 #ifdef STACK_PARMS_IN_REG_PARM_AREA
3969 #else
3970 argvec[count].reg != 0,
3971 #endif
3972 reg_parm_stack_space, 0,
3973 NULL_TREE, &args_size, &argvec[count].locate);
3975 if (argvec[count].reg == 0 || argvec[count].partial != 0
3976 || reg_parm_stack_space > 0)
3977 args_size.constant += argvec[count].locate.size.constant;
3979 targetm.calls.function_arg_advance (args_so_far, Pmode, (tree) 0, true);
3981 count++;
3984 for (; count < nargs; count++)
3986 rtx val = va_arg (p, rtx);
3987 machine_mode mode = (machine_mode) va_arg (p, int);
3988 int unsigned_p = 0;
3990 /* We cannot convert the arg value to the mode the library wants here;
3991 must do it earlier where we know the signedness of the arg. */
3992 gcc_assert (mode != BLKmode
3993 && (GET_MODE (val) == mode || GET_MODE (val) == VOIDmode));
3995 /* Make sure it is a reasonable operand for a move or push insn. */
3996 if (!REG_P (val) && !MEM_P (val)
3997 && !(CONSTANT_P (val) && targetm.legitimate_constant_p (mode, val)))
3998 val = force_operand (val, NULL_RTX);
4000 if (pass_by_reference (&args_so_far_v, mode, NULL_TREE, 1))
4002 rtx slot;
4003 int must_copy
4004 = !reference_callee_copied (&args_so_far_v, mode, NULL_TREE, 1);
4006 /* If this was a CONST function, it is now PURE since it now
4007 reads memory. */
4008 if (flags & ECF_CONST)
4010 flags &= ~ECF_CONST;
4011 flags |= ECF_PURE;
4014 if (MEM_P (val) && !must_copy)
4016 tree val_expr = MEM_EXPR (val);
4017 if (val_expr)
4018 mark_addressable (val_expr);
4019 slot = val;
4021 else
4023 slot = assign_temp (lang_hooks.types.type_for_mode (mode, 0),
4024 1, 1);
4025 emit_move_insn (slot, val);
4028 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
4029 gen_rtx_USE (VOIDmode, slot),
4030 call_fusage);
4031 if (must_copy)
4032 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
4033 gen_rtx_CLOBBER (VOIDmode,
4034 slot),
4035 call_fusage);
4037 mode = Pmode;
4038 val = force_operand (XEXP (slot, 0), NULL_RTX);
4041 mode = promote_function_mode (NULL_TREE, mode, &unsigned_p, NULL_TREE, 0);
4042 argvec[count].mode = mode;
4043 argvec[count].value = convert_modes (mode, GET_MODE (val), val, unsigned_p);
4044 argvec[count].reg = targetm.calls.function_arg (args_so_far, mode,
4045 NULL_TREE, true);
4047 argvec[count].partial
4048 = targetm.calls.arg_partial_bytes (args_so_far, mode, NULL_TREE, 1);
4050 if (argvec[count].reg == 0
4051 || argvec[count].partial != 0
4052 || reg_parm_stack_space > 0)
4054 locate_and_pad_parm (mode, NULL_TREE,
4055 #ifdef STACK_PARMS_IN_REG_PARM_AREA
4057 #else
4058 argvec[count].reg != 0,
4059 #endif
4060 reg_parm_stack_space, argvec[count].partial,
4061 NULL_TREE, &args_size, &argvec[count].locate);
4062 args_size.constant += argvec[count].locate.size.constant;
4063 gcc_assert (!argvec[count].locate.size.var);
4065 #ifdef BLOCK_REG_PADDING
4066 else
4067 /* The argument is passed entirely in registers. See at which
4068 end it should be padded. */
4069 argvec[count].locate.where_pad =
4070 BLOCK_REG_PADDING (mode, NULL_TREE,
4071 GET_MODE_SIZE (mode) <= UNITS_PER_WORD);
4072 #endif
4074 targetm.calls.function_arg_advance (args_so_far, mode, (tree) 0, true);
4077 /* If this machine requires an external definition for library
4078 functions, write one out. */
4079 assemble_external_libcall (fun);
4081 original_args_size = args_size;
4082 args_size.constant = (((args_size.constant
4083 + stack_pointer_delta
4084 + STACK_BYTES - 1)
4085 / STACK_BYTES
4086 * STACK_BYTES)
4087 - stack_pointer_delta);
4089 args_size.constant = MAX (args_size.constant,
4090 reg_parm_stack_space);
4092 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
4093 args_size.constant -= reg_parm_stack_space;
4095 if (args_size.constant > crtl->outgoing_args_size)
4096 crtl->outgoing_args_size = args_size.constant;
4098 if (flag_stack_usage_info && !ACCUMULATE_OUTGOING_ARGS)
4100 int pushed = args_size.constant + pending_stack_adjust;
4101 if (pushed > current_function_pushed_stack_size)
4102 current_function_pushed_stack_size = pushed;
4105 if (ACCUMULATE_OUTGOING_ARGS)
4107 /* Since the stack pointer will never be pushed, it is possible for
4108 the evaluation of a parm to clobber something we have already
4109 written to the stack. Since most function calls on RISC machines
4110 do not use the stack, this is uncommon, but must work correctly.
4112 Therefore, we save any area of the stack that was already written
4113 and that we are using. Here we set up to do this by making a new
4114 stack usage map from the old one.
4116 Another approach might be to try to reorder the argument
4117 evaluations to avoid this conflicting stack usage. */
4119 needed = args_size.constant;
4121 /* Since we will be writing into the entire argument area, the
4122 map must be allocated for its entire size, not just the part that
4123 is the responsibility of the caller. */
4124 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
4125 needed += reg_parm_stack_space;
4127 #ifdef ARGS_GROW_DOWNWARD
4128 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
4129 needed + 1);
4130 #else
4131 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
4132 needed);
4133 #endif
4134 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
4135 stack_usage_map = stack_usage_map_buf;
4137 if (initial_highest_arg_in_use)
4138 memcpy (stack_usage_map, initial_stack_usage_map,
4139 initial_highest_arg_in_use);
4141 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
4142 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
4143 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
4144 needed = 0;
4146 /* We must be careful to use virtual regs before they're instantiated,
4147 and real regs afterwards. Loop optimization, for example, can create
4148 new libcalls after we've instantiated the virtual regs, and if we
4149 use virtuals anyway, they won't match the rtl patterns. */
4151 if (virtuals_instantiated)
4152 argblock = plus_constant (Pmode, stack_pointer_rtx,
4153 STACK_POINTER_OFFSET);
4154 else
4155 argblock = virtual_outgoing_args_rtx;
4157 else
4159 if (!PUSH_ARGS)
4160 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
4163 /* We push args individually in reverse order, perform stack alignment
4164 before the first push (the last arg). */
4165 if (argblock == 0)
4166 anti_adjust_stack (GEN_INT (args_size.constant
4167 - original_args_size.constant));
4169 argnum = nargs - 1;
4171 #ifdef REG_PARM_STACK_SPACE
4172 if (ACCUMULATE_OUTGOING_ARGS)
4174 /* The argument list is the property of the called routine and it
4175 may clobber it. If the fixed area has been used for previous
4176 parameters, we must save and restore it. */
4177 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
4178 &low_to_save, &high_to_save);
4180 #endif
4182 /* When expanding a normal call, args are stored in push order,
4183 which is the reverse of what we have here. */
4184 bool any_regs = false;
4185 for (int i = nargs; i-- > 0; )
4186 if (argvec[i].reg != NULL_RTX)
4188 targetm.calls.call_args (argvec[i].reg, NULL_TREE);
4189 any_regs = true;
4191 if (!any_regs)
4192 targetm.calls.call_args (pc_rtx, NULL_TREE);
4194 /* Push the args that need to be pushed. */
4196 have_push_fusage = false;
4198 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4199 are to be pushed. */
4200 for (count = 0; count < nargs; count++, argnum--)
4202 machine_mode mode = argvec[argnum].mode;
4203 rtx val = argvec[argnum].value;
4204 rtx reg = argvec[argnum].reg;
4205 int partial = argvec[argnum].partial;
4206 unsigned int parm_align = argvec[argnum].locate.boundary;
4207 int lower_bound = 0, upper_bound = 0, i;
4209 if (! (reg != 0 && partial == 0))
4211 rtx use;
4213 if (ACCUMULATE_OUTGOING_ARGS)
4215 /* If this is being stored into a pre-allocated, fixed-size,
4216 stack area, save any previous data at that location. */
4218 #ifdef ARGS_GROW_DOWNWARD
4219 /* stack_slot is negative, but we want to index stack_usage_map
4220 with positive values. */
4221 upper_bound = -argvec[argnum].locate.slot_offset.constant + 1;
4222 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
4223 #else
4224 lower_bound = argvec[argnum].locate.slot_offset.constant;
4225 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
4226 #endif
4228 i = lower_bound;
4229 /* Don't worry about things in the fixed argument area;
4230 it has already been saved. */
4231 if (i < reg_parm_stack_space)
4232 i = reg_parm_stack_space;
4233 while (i < upper_bound && stack_usage_map[i] == 0)
4234 i++;
4236 if (i < upper_bound)
4238 /* We need to make a save area. */
4239 unsigned int size
4240 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
4241 machine_mode save_mode
4242 = mode_for_size (size, MODE_INT, 1);
4243 rtx adr
4244 = plus_constant (Pmode, argblock,
4245 argvec[argnum].locate.offset.constant);
4246 rtx stack_area
4247 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
4249 if (save_mode == BLKmode)
4251 argvec[argnum].save_area
4252 = assign_stack_temp (BLKmode,
4253 argvec[argnum].locate.size.constant
4256 emit_block_move (validize_mem
4257 (copy_rtx (argvec[argnum].save_area)),
4258 stack_area,
4259 GEN_INT (argvec[argnum].locate.size.constant),
4260 BLOCK_OP_CALL_PARM);
4262 else
4264 argvec[argnum].save_area = gen_reg_rtx (save_mode);
4266 emit_move_insn (argvec[argnum].save_area, stack_area);
4271 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, parm_align,
4272 partial, reg, 0, argblock,
4273 GEN_INT (argvec[argnum].locate.offset.constant),
4274 reg_parm_stack_space,
4275 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad));
4277 /* Now mark the segment we just used. */
4278 if (ACCUMULATE_OUTGOING_ARGS)
4279 for (i = lower_bound; i < upper_bound; i++)
4280 stack_usage_map[i] = 1;
4282 NO_DEFER_POP;
4284 /* Indicate argument access so that alias.c knows that these
4285 values are live. */
4286 if (argblock)
4287 use = plus_constant (Pmode, argblock,
4288 argvec[argnum].locate.offset.constant);
4289 else if (have_push_fusage)
4290 continue;
4291 else
4293 /* When arguments are pushed, trying to tell alias.c where
4294 exactly this argument is won't work, because the
4295 auto-increment causes confusion. So we merely indicate
4296 that we access something with a known mode somewhere on
4297 the stack. */
4298 use = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
4299 gen_rtx_SCRATCH (Pmode));
4300 have_push_fusage = true;
4302 use = gen_rtx_MEM (argvec[argnum].mode, use);
4303 use = gen_rtx_USE (VOIDmode, use);
4304 call_fusage = gen_rtx_EXPR_LIST (VOIDmode, use, call_fusage);
4308 argnum = nargs - 1;
4310 fun = prepare_call_address (NULL, fun, NULL, &call_fusage, 0, 0);
4312 /* Now load any reg parms into their regs. */
4314 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4315 are to be pushed. */
4316 for (count = 0; count < nargs; count++, argnum--)
4318 machine_mode mode = argvec[argnum].mode;
4319 rtx val = argvec[argnum].value;
4320 rtx reg = argvec[argnum].reg;
4321 int partial = argvec[argnum].partial;
4322 #ifdef BLOCK_REG_PADDING
4323 int size = 0;
4324 #endif
4326 /* Handle calls that pass values in multiple non-contiguous
4327 locations. The PA64 has examples of this for library calls. */
4328 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4329 emit_group_load (reg, val, NULL_TREE, GET_MODE_SIZE (mode));
4330 else if (reg != 0 && partial == 0)
4332 emit_move_insn (reg, val);
4333 #ifdef BLOCK_REG_PADDING
4334 size = GET_MODE_SIZE (argvec[argnum].mode);
4336 /* Copied from load_register_parameters. */
4338 /* Handle case where we have a value that needs shifting
4339 up to the msb. eg. a QImode value and we're padding
4340 upward on a BYTES_BIG_ENDIAN machine. */
4341 if (size < UNITS_PER_WORD
4342 && (argvec[argnum].locate.where_pad
4343 == (BYTES_BIG_ENDIAN ? upward : downward)))
4345 rtx x;
4346 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
4348 /* Assigning REG here rather than a temp makes CALL_FUSAGE
4349 report the whole reg as used. Strictly speaking, the
4350 call only uses SIZE bytes at the msb end, but it doesn't
4351 seem worth generating rtl to say that. */
4352 reg = gen_rtx_REG (word_mode, REGNO (reg));
4353 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
4354 if (x != reg)
4355 emit_move_insn (reg, x);
4357 #endif
4360 NO_DEFER_POP;
4363 /* Any regs containing parms remain in use through the call. */
4364 for (count = 0; count < nargs; count++)
4366 rtx reg = argvec[count].reg;
4367 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4368 use_group_regs (&call_fusage, reg);
4369 else if (reg != 0)
4371 int partial = argvec[count].partial;
4372 if (partial)
4374 int nregs;
4375 gcc_assert (partial % UNITS_PER_WORD == 0);
4376 nregs = partial / UNITS_PER_WORD;
4377 use_regs (&call_fusage, REGNO (reg), nregs);
4379 else
4380 use_reg (&call_fusage, reg);
4384 /* Pass the function the address in which to return a structure value. */
4385 if (mem_value != 0 && struct_value != 0 && ! pcc_struct_value)
4387 emit_move_insn (struct_value,
4388 force_reg (Pmode,
4389 force_operand (XEXP (mem_value, 0),
4390 NULL_RTX)));
4391 if (REG_P (struct_value))
4392 use_reg (&call_fusage, struct_value);
4395 /* Don't allow popping to be deferred, since then
4396 cse'ing of library calls could delete a call and leave the pop. */
4397 NO_DEFER_POP;
4398 valreg = (mem_value == 0 && outmode != VOIDmode
4399 ? hard_libcall_value (outmode, orgfun) : NULL_RTX);
4401 /* Stack must be properly aligned now. */
4402 gcc_assert (!(stack_pointer_delta
4403 & (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1)));
4405 before_call = get_last_insn ();
4407 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
4408 will set inhibit_defer_pop to that value. */
4409 /* The return type is needed to decide how many bytes the function pops.
4410 Signedness plays no role in that, so for simplicity, we pretend it's
4411 always signed. We also assume that the list of arguments passed has
4412 no impact, so we pretend it is unknown. */
4414 emit_call_1 (fun, NULL,
4415 get_identifier (XSTR (orgfun, 0)),
4416 build_function_type (tfom, NULL_TREE),
4417 original_args_size.constant, args_size.constant,
4418 struct_value_size,
4419 targetm.calls.function_arg (args_so_far,
4420 VOIDmode, void_type_node, true),
4421 valreg,
4422 old_inhibit_defer_pop + 1, call_fusage, flags, args_so_far);
4424 if (flag_ipa_ra)
4426 rtx last, datum = orgfun;
4427 gcc_assert (GET_CODE (datum) == SYMBOL_REF);
4428 last = last_call_insn ();
4429 add_reg_note (last, REG_CALL_DECL, datum);
4432 /* Right-shift returned value if necessary. */
4433 if (!pcc_struct_value
4434 && TYPE_MODE (tfom) != BLKmode
4435 && targetm.calls.return_in_msb (tfom))
4437 shift_return_value (TYPE_MODE (tfom), false, valreg);
4438 valreg = gen_rtx_REG (TYPE_MODE (tfom), REGNO (valreg));
4441 targetm.calls.end_call_args ();
4443 /* For calls to `setjmp', etc., inform function.c:setjmp_warnings
4444 that it should complain if nonvolatile values are live. For
4445 functions that cannot return, inform flow that control does not
4446 fall through. */
4447 if (flags & ECF_NORETURN)
4449 /* The barrier note must be emitted
4450 immediately after the CALL_INSN. Some ports emit more than
4451 just a CALL_INSN above, so we must search for it here. */
4452 rtx_insn *last = get_last_insn ();
4453 while (!CALL_P (last))
4455 last = PREV_INSN (last);
4456 /* There was no CALL_INSN? */
4457 gcc_assert (last != before_call);
4460 emit_barrier_after (last);
4463 /* Consider that "regular" libcalls, i.e. all of them except for LCT_THROW
4464 and LCT_RETURNS_TWICE, cannot perform non-local gotos. */
4465 if (flags & ECF_NOTHROW)
4467 rtx_insn *last = get_last_insn ();
4468 while (!CALL_P (last))
4470 last = PREV_INSN (last);
4471 /* There was no CALL_INSN? */
4472 gcc_assert (last != before_call);
4475 make_reg_eh_region_note_nothrow_nononlocal (last);
4478 /* Now restore inhibit_defer_pop to its actual original value. */
4479 OK_DEFER_POP;
4481 pop_temp_slots ();
4483 /* Copy the value to the right place. */
4484 if (outmode != VOIDmode && retval)
4486 if (mem_value)
4488 if (value == 0)
4489 value = mem_value;
4490 if (value != mem_value)
4491 emit_move_insn (value, mem_value);
4493 else if (GET_CODE (valreg) == PARALLEL)
4495 if (value == 0)
4496 value = gen_reg_rtx (outmode);
4497 emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode));
4499 else
4501 /* Convert to the proper mode if a promotion has been active. */
4502 if (GET_MODE (valreg) != outmode)
4504 int unsignedp = TYPE_UNSIGNED (tfom);
4506 gcc_assert (promote_function_mode (tfom, outmode, &unsignedp,
4507 fndecl ? TREE_TYPE (fndecl) : fntype, 1)
4508 == GET_MODE (valreg));
4509 valreg = convert_modes (outmode, GET_MODE (valreg), valreg, 0);
4512 if (value != 0)
4513 emit_move_insn (value, valreg);
4514 else
4515 value = valreg;
4519 if (ACCUMULATE_OUTGOING_ARGS)
4521 #ifdef REG_PARM_STACK_SPACE
4522 if (save_area)
4523 restore_fixed_argument_area (save_area, argblock,
4524 high_to_save, low_to_save);
4525 #endif
4527 /* If we saved any argument areas, restore them. */
4528 for (count = 0; count < nargs; count++)
4529 if (argvec[count].save_area)
4531 machine_mode save_mode = GET_MODE (argvec[count].save_area);
4532 rtx adr = plus_constant (Pmode, argblock,
4533 argvec[count].locate.offset.constant);
4534 rtx stack_area = gen_rtx_MEM (save_mode,
4535 memory_address (save_mode, adr));
4537 if (save_mode == BLKmode)
4538 emit_block_move (stack_area,
4539 validize_mem
4540 (copy_rtx (argvec[count].save_area)),
4541 GEN_INT (argvec[count].locate.size.constant),
4542 BLOCK_OP_CALL_PARM);
4543 else
4544 emit_move_insn (stack_area, argvec[count].save_area);
4547 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4548 stack_usage_map = initial_stack_usage_map;
4551 free (stack_usage_map_buf);
4553 return value;
4557 /* Output a library call to function FUN (a SYMBOL_REF rtx)
4558 (emitting the queue unless NO_QUEUE is nonzero),
4559 for a value of mode OUTMODE,
4560 with NARGS different arguments, passed as alternating rtx values
4561 and machine_modes to convert them to.
4563 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for
4564 `const' calls, LCT_PURE for `pure' calls, or other LCT_ value for
4565 other types of library calls. */
4567 void
4568 emit_library_call (rtx orgfun, enum libcall_type fn_type,
4569 machine_mode outmode, int nargs, ...)
4571 va_list p;
4573 va_start (p, nargs);
4574 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
4575 va_end (p);
4578 /* Like emit_library_call except that an extra argument, VALUE,
4579 comes second and says where to store the result.
4580 (If VALUE is zero, this function chooses a convenient way
4581 to return the value.
4583 This function returns an rtx for where the value is to be found.
4584 If VALUE is nonzero, VALUE is returned. */
4587 emit_library_call_value (rtx orgfun, rtx value,
4588 enum libcall_type fn_type,
4589 machine_mode outmode, int nargs, ...)
4591 rtx result;
4592 va_list p;
4594 va_start (p, nargs);
4595 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode,
4596 nargs, p);
4597 va_end (p);
4599 return result;
4603 /* Store pointer bounds argument ARG into Bounds Table entry
4604 associated with PARM. */
4605 static void
4606 store_bounds (struct arg_data *arg, struct arg_data *parm)
4608 rtx slot = NULL, ptr = NULL, addr = NULL;
4610 /* We may pass bounds not associated with any pointer. */
4611 if (!parm)
4613 gcc_assert (arg->special_slot);
4614 slot = arg->special_slot;
4615 ptr = const0_rtx;
4617 /* Find pointer associated with bounds and where it is
4618 passed. */
4619 else
4621 if (!parm->reg)
4623 gcc_assert (!arg->special_slot);
4625 addr = adjust_address (parm->stack, Pmode, arg->pointer_offset);
4627 else if (REG_P (parm->reg))
4629 gcc_assert (arg->special_slot);
4630 slot = arg->special_slot;
4632 if (MEM_P (parm->value))
4633 addr = adjust_address (parm->value, Pmode, arg->pointer_offset);
4634 else if (REG_P (parm->value))
4635 ptr = gen_rtx_SUBREG (Pmode, parm->value, arg->pointer_offset);
4636 else
4638 gcc_assert (!arg->pointer_offset);
4639 ptr = parm->value;
4642 else
4644 gcc_assert (GET_CODE (parm->reg) == PARALLEL);
4646 gcc_assert (arg->special_slot);
4647 slot = arg->special_slot;
4649 if (parm->parallel_value)
4650 ptr = chkp_get_value_with_offs (parm->parallel_value,
4651 GEN_INT (arg->pointer_offset));
4652 else
4653 gcc_unreachable ();
4657 /* Expand bounds. */
4658 if (!arg->value)
4659 arg->value = expand_normal (arg->tree_value);
4661 targetm.calls.store_bounds_for_arg (ptr, addr, arg->value, slot);
4664 /* Store a single argument for a function call
4665 into the register or memory area where it must be passed.
4666 *ARG describes the argument value and where to pass it.
4668 ARGBLOCK is the address of the stack-block for all the arguments,
4669 or 0 on a machine where arguments are pushed individually.
4671 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
4672 so must be careful about how the stack is used.
4674 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
4675 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
4676 that we need not worry about saving and restoring the stack.
4678 FNDECL is the declaration of the function we are calling.
4680 Return nonzero if this arg should cause sibcall failure,
4681 zero otherwise. */
4683 static int
4684 store_one_arg (struct arg_data *arg, rtx argblock, int flags,
4685 int variable_size ATTRIBUTE_UNUSED, int reg_parm_stack_space)
4687 tree pval = arg->tree_value;
4688 rtx reg = 0;
4689 int partial = 0;
4690 int used = 0;
4691 int i, lower_bound = 0, upper_bound = 0;
4692 int sibcall_failure = 0;
4694 if (TREE_CODE (pval) == ERROR_MARK)
4695 return 1;
4697 /* Push a new temporary level for any temporaries we make for
4698 this argument. */
4699 push_temp_slots ();
4701 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
4703 /* If this is being stored into a pre-allocated, fixed-size, stack area,
4704 save any previous data at that location. */
4705 if (argblock && ! variable_size && arg->stack)
4707 #ifdef ARGS_GROW_DOWNWARD
4708 /* stack_slot is negative, but we want to index stack_usage_map
4709 with positive values. */
4710 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4711 upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
4712 else
4713 upper_bound = 0;
4715 lower_bound = upper_bound - arg->locate.size.constant;
4716 #else
4717 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4718 lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
4719 else
4720 lower_bound = 0;
4722 upper_bound = lower_bound + arg->locate.size.constant;
4723 #endif
4725 i = lower_bound;
4726 /* Don't worry about things in the fixed argument area;
4727 it has already been saved. */
4728 if (i < reg_parm_stack_space)
4729 i = reg_parm_stack_space;
4730 while (i < upper_bound && stack_usage_map[i] == 0)
4731 i++;
4733 if (i < upper_bound)
4735 /* We need to make a save area. */
4736 unsigned int size = arg->locate.size.constant * BITS_PER_UNIT;
4737 machine_mode save_mode = mode_for_size (size, MODE_INT, 1);
4738 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
4739 rtx stack_area = gen_rtx_MEM (save_mode, adr);
4741 if (save_mode == BLKmode)
4743 arg->save_area
4744 = assign_temp (TREE_TYPE (arg->tree_value), 1, 1);
4745 preserve_temp_slots (arg->save_area);
4746 emit_block_move (validize_mem (copy_rtx (arg->save_area)),
4747 stack_area,
4748 GEN_INT (arg->locate.size.constant),
4749 BLOCK_OP_CALL_PARM);
4751 else
4753 arg->save_area = gen_reg_rtx (save_mode);
4754 emit_move_insn (arg->save_area, stack_area);
4760 /* If this isn't going to be placed on both the stack and in registers,
4761 set up the register and number of words. */
4762 if (! arg->pass_on_stack)
4764 if (flags & ECF_SIBCALL)
4765 reg = arg->tail_call_reg;
4766 else
4767 reg = arg->reg;
4768 partial = arg->partial;
4771 /* Being passed entirely in a register. We shouldn't be called in
4772 this case. */
4773 gcc_assert (reg == 0 || partial != 0);
4775 /* If this arg needs special alignment, don't load the registers
4776 here. */
4777 if (arg->n_aligned_regs != 0)
4778 reg = 0;
4780 /* If this is being passed partially in a register, we can't evaluate
4781 it directly into its stack slot. Otherwise, we can. */
4782 if (arg->value == 0)
4784 /* stack_arg_under_construction is nonzero if a function argument is
4785 being evaluated directly into the outgoing argument list and
4786 expand_call must take special action to preserve the argument list
4787 if it is called recursively.
4789 For scalar function arguments stack_usage_map is sufficient to
4790 determine which stack slots must be saved and restored. Scalar
4791 arguments in general have pass_on_stack == 0.
4793 If this argument is initialized by a function which takes the
4794 address of the argument (a C++ constructor or a C function
4795 returning a BLKmode structure), then stack_usage_map is
4796 insufficient and expand_call must push the stack around the
4797 function call. Such arguments have pass_on_stack == 1.
4799 Note that it is always safe to set stack_arg_under_construction,
4800 but this generates suboptimal code if set when not needed. */
4802 if (arg->pass_on_stack)
4803 stack_arg_under_construction++;
4805 arg->value = expand_expr (pval,
4806 (partial
4807 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
4808 ? NULL_RTX : arg->stack,
4809 VOIDmode, EXPAND_STACK_PARM);
4811 /* If we are promoting object (or for any other reason) the mode
4812 doesn't agree, convert the mode. */
4814 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
4815 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
4816 arg->value, arg->unsignedp);
4818 if (arg->pass_on_stack)
4819 stack_arg_under_construction--;
4822 /* Check for overlap with already clobbered argument area. */
4823 if ((flags & ECF_SIBCALL)
4824 && MEM_P (arg->value)
4825 && mem_overlaps_already_clobbered_arg_p (XEXP (arg->value, 0),
4826 arg->locate.size.constant))
4827 sibcall_failure = 1;
4829 /* Don't allow anything left on stack from computation
4830 of argument to alloca. */
4831 if (flags & ECF_MAY_BE_ALLOCA)
4832 do_pending_stack_adjust ();
4834 if (arg->value == arg->stack)
4835 /* If the value is already in the stack slot, we are done. */
4837 else if (arg->mode != BLKmode)
4839 int size;
4840 unsigned int parm_align;
4842 /* Argument is a scalar, not entirely passed in registers.
4843 (If part is passed in registers, arg->partial says how much
4844 and emit_push_insn will take care of putting it there.)
4846 Push it, and if its size is less than the
4847 amount of space allocated to it,
4848 also bump stack pointer by the additional space.
4849 Note that in C the default argument promotions
4850 will prevent such mismatches. */
4852 size = GET_MODE_SIZE (arg->mode);
4853 /* Compute how much space the push instruction will push.
4854 On many machines, pushing a byte will advance the stack
4855 pointer by a halfword. */
4856 #ifdef PUSH_ROUNDING
4857 size = PUSH_ROUNDING (size);
4858 #endif
4859 used = size;
4861 /* Compute how much space the argument should get:
4862 round up to a multiple of the alignment for arguments. */
4863 if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
4864 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
4865 / (PARM_BOUNDARY / BITS_PER_UNIT))
4866 * (PARM_BOUNDARY / BITS_PER_UNIT));
4868 /* Compute the alignment of the pushed argument. */
4869 parm_align = arg->locate.boundary;
4870 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4872 int pad = used - size;
4873 if (pad)
4875 unsigned int pad_align = (pad & -pad) * BITS_PER_UNIT;
4876 parm_align = MIN (parm_align, pad_align);
4880 /* This isn't already where we want it on the stack, so put it there.
4881 This can either be done with push or copy insns. */
4882 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX,
4883 parm_align, partial, reg, used - size, argblock,
4884 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4885 ARGS_SIZE_RTX (arg->locate.alignment_pad));
4887 /* Unless this is a partially-in-register argument, the argument is now
4888 in the stack. */
4889 if (partial == 0)
4890 arg->value = arg->stack;
4892 else
4894 /* BLKmode, at least partly to be pushed. */
4896 unsigned int parm_align;
4897 int excess;
4898 rtx size_rtx;
4900 /* Pushing a nonscalar.
4901 If part is passed in registers, PARTIAL says how much
4902 and emit_push_insn will take care of putting it there. */
4904 /* Round its size up to a multiple
4905 of the allocation unit for arguments. */
4907 if (arg->locate.size.var != 0)
4909 excess = 0;
4910 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
4912 else
4914 /* PUSH_ROUNDING has no effect on us, because emit_push_insn
4915 for BLKmode is careful to avoid it. */
4916 excess = (arg->locate.size.constant
4917 - int_size_in_bytes (TREE_TYPE (pval))
4918 + partial);
4919 size_rtx = expand_expr (size_in_bytes (TREE_TYPE (pval)),
4920 NULL_RTX, TYPE_MODE (sizetype),
4921 EXPAND_NORMAL);
4924 parm_align = arg->locate.boundary;
4926 /* When an argument is padded down, the block is aligned to
4927 PARM_BOUNDARY, but the actual argument isn't. */
4928 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4930 if (arg->locate.size.var)
4931 parm_align = BITS_PER_UNIT;
4932 else if (excess)
4934 unsigned int excess_align = (excess & -excess) * BITS_PER_UNIT;
4935 parm_align = MIN (parm_align, excess_align);
4939 if ((flags & ECF_SIBCALL) && MEM_P (arg->value))
4941 /* emit_push_insn might not work properly if arg->value and
4942 argblock + arg->locate.offset areas overlap. */
4943 rtx x = arg->value;
4944 int i = 0;
4946 if (XEXP (x, 0) == crtl->args.internal_arg_pointer
4947 || (GET_CODE (XEXP (x, 0)) == PLUS
4948 && XEXP (XEXP (x, 0), 0) ==
4949 crtl->args.internal_arg_pointer
4950 && CONST_INT_P (XEXP (XEXP (x, 0), 1))))
4952 if (XEXP (x, 0) != crtl->args.internal_arg_pointer)
4953 i = INTVAL (XEXP (XEXP (x, 0), 1));
4955 /* expand_call should ensure this. */
4956 gcc_assert (!arg->locate.offset.var
4957 && arg->locate.size.var == 0
4958 && CONST_INT_P (size_rtx));
4960 if (arg->locate.offset.constant > i)
4962 if (arg->locate.offset.constant < i + INTVAL (size_rtx))
4963 sibcall_failure = 1;
4965 else if (arg->locate.offset.constant < i)
4967 /* Use arg->locate.size.constant instead of size_rtx
4968 because we only care about the part of the argument
4969 on the stack. */
4970 if (i < (arg->locate.offset.constant
4971 + arg->locate.size.constant))
4972 sibcall_failure = 1;
4974 else
4976 /* Even though they appear to be at the same location,
4977 if part of the outgoing argument is in registers,
4978 they aren't really at the same location. Check for
4979 this by making sure that the incoming size is the
4980 same as the outgoing size. */
4981 if (arg->locate.size.constant != INTVAL (size_rtx))
4982 sibcall_failure = 1;
4987 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
4988 parm_align, partial, reg, excess, argblock,
4989 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4990 ARGS_SIZE_RTX (arg->locate.alignment_pad));
4992 /* Unless this is a partially-in-register argument, the argument is now
4993 in the stack.
4995 ??? Unlike the case above, in which we want the actual
4996 address of the data, so that we can load it directly into a
4997 register, here we want the address of the stack slot, so that
4998 it's properly aligned for word-by-word copying or something
4999 like that. It's not clear that this is always correct. */
5000 if (partial == 0)
5001 arg->value = arg->stack_slot;
5004 if (arg->reg && GET_CODE (arg->reg) == PARALLEL)
5006 tree type = TREE_TYPE (arg->tree_value);
5007 arg->parallel_value
5008 = emit_group_load_into_temps (arg->reg, arg->value, type,
5009 int_size_in_bytes (type));
5012 /* Mark all slots this store used. */
5013 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
5014 && argblock && ! variable_size && arg->stack)
5015 for (i = lower_bound; i < upper_bound; i++)
5016 stack_usage_map[i] = 1;
5018 /* Once we have pushed something, pops can't safely
5019 be deferred during the rest of the arguments. */
5020 NO_DEFER_POP;
5022 /* Free any temporary slots made in processing this argument. */
5023 pop_temp_slots ();
5025 return sibcall_failure;
5028 /* Nonzero if we do not know how to pass TYPE solely in registers. */
5030 bool
5031 must_pass_in_stack_var_size (machine_mode mode ATTRIBUTE_UNUSED,
5032 const_tree type)
5034 if (!type)
5035 return false;
5037 /* If the type has variable size... */
5038 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5039 return true;
5041 /* If the type is marked as addressable (it is required
5042 to be constructed into the stack)... */
5043 if (TREE_ADDRESSABLE (type))
5044 return true;
5046 return false;
5049 /* Another version of the TARGET_MUST_PASS_IN_STACK hook. This one
5050 takes trailing padding of a structure into account. */
5051 /* ??? Should be able to merge these two by examining BLOCK_REG_PADDING. */
5053 bool
5054 must_pass_in_stack_var_size_or_pad (machine_mode mode, const_tree type)
5056 if (!type)
5057 return false;
5059 /* If the type has variable size... */
5060 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5061 return true;
5063 /* If the type is marked as addressable (it is required
5064 to be constructed into the stack)... */
5065 if (TREE_ADDRESSABLE (type))
5066 return true;
5068 /* If the padding and mode of the type is such that a copy into
5069 a register would put it into the wrong part of the register. */
5070 if (mode == BLKmode
5071 && int_size_in_bytes (type) % (PARM_BOUNDARY / BITS_PER_UNIT)
5072 && (FUNCTION_ARG_PADDING (mode, type)
5073 == (BYTES_BIG_ENDIAN ? upward : downward)))
5074 return true;
5076 return false;