2016-09-25 François Dumont <fdumont@gcc.gnu.org>
[official-gcc.git] / gcc / calls.c
blob86369e9cfdc832a13599172a3b7f02827dce09c7
1 /* Convert function calls to rtl insns, for GNU C compiler.
2 Copyright (C) 1989-2016 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 "backend.h"
24 #include "target.h"
25 #include "rtl.h"
26 #include "tree.h"
27 #include "gimple.h"
28 #include "predict.h"
29 #include "tm_p.h"
30 #include "stringpool.h"
31 #include "expmed.h"
32 #include "optabs.h"
33 #include "emit-rtl.h"
34 #include "cgraph.h"
35 #include "diagnostic-core.h"
36 #include "fold-const.h"
37 #include "stor-layout.h"
38 #include "varasm.h"
39 #include "internal-fn.h"
40 #include "dojump.h"
41 #include "explow.h"
42 #include "calls.h"
43 #include "expr.h"
44 #include "output.h"
45 #include "langhooks.h"
46 #include "except.h"
47 #include "dbgcnt.h"
48 #include "rtl-iter.h"
49 #include "tree-chkp.h"
50 #include "rtl-chkp.h"
53 /* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
54 #define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
56 /* Data structure and subroutines used within expand_call. */
58 struct arg_data
60 /* Tree node for this argument. */
61 tree tree_value;
62 /* Mode for value; TYPE_MODE unless promoted. */
63 machine_mode mode;
64 /* Current RTL value for argument, or 0 if it isn't precomputed. */
65 rtx value;
66 /* Initially-compute RTL value for argument; only for const functions. */
67 rtx initial_value;
68 /* Register to pass this argument in, 0 if passed on stack, or an
69 PARALLEL if the arg is to be copied into multiple non-contiguous
70 registers. */
71 rtx reg;
72 /* Register to pass this argument in when generating tail call sequence.
73 This is not the same register as for normal calls on machines with
74 register windows. */
75 rtx tail_call_reg;
76 /* If REG is a PARALLEL, this is a copy of VALUE pulled into the correct
77 form for emit_group_move. */
78 rtx parallel_value;
79 /* If value is passed in neither reg nor stack, this field holds a number
80 of a special slot to be used. */
81 rtx special_slot;
82 /* For pointer bounds hold an index of parm bounds are bound to. -1 if
83 there is no such pointer. */
84 int pointer_arg;
85 /* If pointer_arg refers a structure, then pointer_offset holds an offset
86 of a pointer in this structure. */
87 int pointer_offset;
88 /* If REG was promoted from the actual mode of the argument expression,
89 indicates whether the promotion is sign- or zero-extended. */
90 int unsignedp;
91 /* Number of bytes to put in registers. 0 means put the whole arg
92 in registers. Also 0 if not passed in registers. */
93 int partial;
94 /* Nonzero if argument must be passed on stack.
95 Note that some arguments may be passed on the stack
96 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
97 pass_on_stack identifies arguments that *cannot* go in registers. */
98 int pass_on_stack;
99 /* Some fields packaged up for locate_and_pad_parm. */
100 struct locate_and_pad_arg_data locate;
101 /* Location on the stack at which parameter should be stored. The store
102 has already been done if STACK == VALUE. */
103 rtx stack;
104 /* Location on the stack of the start of this argument slot. This can
105 differ from STACK if this arg pads downward. This location is known
106 to be aligned to TARGET_FUNCTION_ARG_BOUNDARY. */
107 rtx stack_slot;
108 /* Place that this stack area has been saved, if needed. */
109 rtx save_area;
110 /* If an argument's alignment does not permit direct copying into registers,
111 copy in smaller-sized pieces into pseudos. These are stored in a
112 block pointed to by this field. The next field says how many
113 word-sized pseudos we made. */
114 rtx *aligned_regs;
115 int n_aligned_regs;
118 /* A vector of one char per byte of stack space. A byte if nonzero if
119 the corresponding stack location has been used.
120 This vector is used to prevent a function call within an argument from
121 clobbering any stack already set up. */
122 static char *stack_usage_map;
124 /* Size of STACK_USAGE_MAP. */
125 static int highest_outgoing_arg_in_use;
127 /* A bitmap of virtual-incoming stack space. Bit is set if the corresponding
128 stack location's tail call argument has been already stored into the stack.
129 This bitmap is used to prevent sibling call optimization if function tries
130 to use parent's incoming argument slots when they have been already
131 overwritten with tail call arguments. */
132 static sbitmap stored_args_map;
134 /* stack_arg_under_construction is nonzero when an argument may be
135 initialized with a constructor call (including a C function that
136 returns a BLKmode struct) and expand_call must take special action
137 to make sure the object being constructed does not overlap the
138 argument list for the constructor call. */
139 static int stack_arg_under_construction;
141 static void emit_call_1 (rtx, tree, tree, tree, HOST_WIDE_INT, HOST_WIDE_INT,
142 HOST_WIDE_INT, rtx, rtx, int, rtx, int,
143 cumulative_args_t);
144 static void precompute_register_parameters (int, struct arg_data *, int *);
145 static void store_bounds (struct arg_data *, struct arg_data *);
146 static int store_one_arg (struct arg_data *, rtx, int, int, int);
147 static void store_unaligned_arguments_into_pseudos (struct arg_data *, int);
148 static int finalize_must_preallocate (int, int, struct arg_data *,
149 struct args_size *);
150 static void precompute_arguments (int, struct arg_data *);
151 static int compute_argument_block_size (int, struct args_size *, tree, tree, int);
152 static void initialize_argument_information (int, struct arg_data *,
153 struct args_size *, int,
154 tree, tree,
155 tree, tree, cumulative_args_t, int,
156 rtx *, int *, int *, int *,
157 bool *, bool);
158 static void compute_argument_addresses (struct arg_data *, rtx, int);
159 static rtx rtx_for_function_call (tree, tree);
160 static void load_register_parameters (struct arg_data *, int, rtx *, int,
161 int, int *);
162 static rtx emit_library_call_value_1 (int, rtx, rtx, enum libcall_type,
163 machine_mode, int, va_list);
164 static int special_function_p (const_tree, int);
165 static int check_sibcall_argument_overlap_1 (rtx);
166 static int check_sibcall_argument_overlap (rtx_insn *, struct arg_data *, int);
168 static int combine_pending_stack_adjustment_and_call (int, struct args_size *,
169 unsigned int);
170 static tree split_complex_types (tree);
172 #ifdef REG_PARM_STACK_SPACE
173 static rtx save_fixed_argument_area (int, rtx, int *, int *);
174 static void restore_fixed_argument_area (rtx, rtx, int, int);
175 #endif
177 /* Force FUNEXP into a form suitable for the address of a CALL,
178 and return that as an rtx. Also load the static chain register
179 if FNDECL is a nested function.
181 CALL_FUSAGE points to a variable holding the prospective
182 CALL_INSN_FUNCTION_USAGE information. */
185 prepare_call_address (tree fndecl_or_type, rtx funexp, rtx static_chain_value,
186 rtx *call_fusage, int reg_parm_seen, int sibcallp)
188 /* Make a valid memory address and copy constants through pseudo-regs,
189 but not for a constant address if -fno-function-cse. */
190 if (GET_CODE (funexp) != SYMBOL_REF)
191 /* If we are using registers for parameters, force the
192 function address into a register now. */
193 funexp = ((reg_parm_seen
194 && targetm.small_register_classes_for_mode_p (FUNCTION_MODE))
195 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
196 : memory_address (FUNCTION_MODE, funexp));
197 else
199 /* funexp could be a SYMBOL_REF represents a function pointer which is
200 of ptr_mode. In this case, it should be converted into address mode
201 to be a valid address for memory rtx pattern. See PR 64971. */
202 if (GET_MODE (funexp) != Pmode)
203 funexp = convert_memory_address (Pmode, funexp);
205 if (! sibcallp)
207 if (!NO_FUNCTION_CSE && optimize && ! flag_no_function_cse)
208 funexp = force_reg (Pmode, funexp);
212 if (static_chain_value != 0
213 && (TREE_CODE (fndecl_or_type) != FUNCTION_DECL
214 || DECL_STATIC_CHAIN (fndecl_or_type)))
216 rtx chain;
218 chain = targetm.calls.static_chain (fndecl_or_type, false);
219 static_chain_value = convert_memory_address (Pmode, static_chain_value);
221 emit_move_insn (chain, static_chain_value);
222 if (REG_P (chain))
223 use_reg (call_fusage, chain);
226 return funexp;
229 /* Generate instructions to call function FUNEXP,
230 and optionally pop the results.
231 The CALL_INSN is the first insn generated.
233 FNDECL is the declaration node of the function. This is given to the
234 hook TARGET_RETURN_POPS_ARGS to determine whether this function pops
235 its own args.
237 FUNTYPE is the data type of the function. This is given to the hook
238 TARGET_RETURN_POPS_ARGS to determine whether this function pops its
239 own args. We used to allow an identifier for library functions, but
240 that doesn't work when the return type is an aggregate type and the
241 calling convention says that the pointer to this aggregate is to be
242 popped by the callee.
244 STACK_SIZE is the number of bytes of arguments on the stack,
245 ROUNDED_STACK_SIZE is that number rounded up to
246 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
247 both to put into the call insn and to generate explicit popping
248 code if necessary.
250 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
251 It is zero if this call doesn't want a structure value.
253 NEXT_ARG_REG is the rtx that results from executing
254 targetm.calls.function_arg (&args_so_far, VOIDmode, void_type_node, true)
255 just after all the args have had their registers assigned.
256 This could be whatever you like, but normally it is the first
257 arg-register beyond those used for args in this call,
258 or 0 if all the arg-registers are used in this call.
259 It is passed on to `gen_call' so you can put this info in the call insn.
261 VALREG is a hard register in which a value is returned,
262 or 0 if the call does not return a value.
264 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
265 the args to this call were processed.
266 We restore `inhibit_defer_pop' to that value.
268 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
269 denote registers used by the called function. */
271 static void
272 emit_call_1 (rtx funexp, tree fntree ATTRIBUTE_UNUSED, tree fndecl ATTRIBUTE_UNUSED,
273 tree funtype ATTRIBUTE_UNUSED,
274 HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED,
275 HOST_WIDE_INT rounded_stack_size,
276 HOST_WIDE_INT struct_value_size ATTRIBUTE_UNUSED,
277 rtx next_arg_reg ATTRIBUTE_UNUSED, rtx valreg,
278 int old_inhibit_defer_pop, rtx call_fusage, int ecf_flags,
279 cumulative_args_t args_so_far ATTRIBUTE_UNUSED)
281 rtx rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
282 rtx call, funmem, pat;
283 int already_popped = 0;
284 HOST_WIDE_INT n_popped = 0;
286 /* Sibling call patterns never pop arguments (no sibcall(_value)_pop
287 patterns exist). Any popping that the callee does on return will
288 be from our caller's frame rather than ours. */
289 if (!(ecf_flags & ECF_SIBCALL))
291 n_popped += targetm.calls.return_pops_args (fndecl, funtype, stack_size);
293 #ifdef CALL_POPS_ARGS
294 n_popped += CALL_POPS_ARGS (*get_cumulative_args (args_so_far));
295 #endif
298 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
299 and we don't want to load it into a register as an optimization,
300 because prepare_call_address already did it if it should be done. */
301 if (GET_CODE (funexp) != SYMBOL_REF)
302 funexp = memory_address (FUNCTION_MODE, funexp);
304 funmem = gen_rtx_MEM (FUNCTION_MODE, funexp);
305 if (fndecl && TREE_CODE (fndecl) == FUNCTION_DECL)
307 tree t = fndecl;
309 /* Although a built-in FUNCTION_DECL and its non-__builtin
310 counterpart compare equal and get a shared mem_attrs, they
311 produce different dump output in compare-debug compilations,
312 if an entry gets garbage collected in one compilation, then
313 adds a different (but equivalent) entry, while the other
314 doesn't run the garbage collector at the same spot and then
315 shares the mem_attr with the equivalent entry. */
316 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
318 tree t2 = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
319 if (t2)
320 t = t2;
323 set_mem_expr (funmem, t);
325 else if (fntree)
326 set_mem_expr (funmem, build_simple_mem_ref (CALL_EXPR_FN (fntree)));
328 if (ecf_flags & ECF_SIBCALL)
330 if (valreg)
331 pat = targetm.gen_sibcall_value (valreg, funmem,
332 rounded_stack_size_rtx,
333 next_arg_reg, NULL_RTX);
334 else
335 pat = targetm.gen_sibcall (funmem, rounded_stack_size_rtx,
336 next_arg_reg, GEN_INT (struct_value_size));
338 /* If the target has "call" or "call_value" insns, then prefer them
339 if no arguments are actually popped. If the target does not have
340 "call" or "call_value" insns, then we must use the popping versions
341 even if the call has no arguments to pop. */
342 else if (n_popped > 0
343 || !(valreg
344 ? targetm.have_call_value ()
345 : targetm.have_call ()))
347 rtx n_pop = GEN_INT (n_popped);
349 /* If this subroutine pops its own args, record that in the call insn
350 if possible, for the sake of frame pointer elimination. */
352 if (valreg)
353 pat = targetm.gen_call_value_pop (valreg, funmem,
354 rounded_stack_size_rtx,
355 next_arg_reg, n_pop);
356 else
357 pat = targetm.gen_call_pop (funmem, rounded_stack_size_rtx,
358 next_arg_reg, n_pop);
360 already_popped = 1;
362 else
364 if (valreg)
365 pat = targetm.gen_call_value (valreg, funmem, rounded_stack_size_rtx,
366 next_arg_reg, NULL_RTX);
367 else
368 pat = targetm.gen_call (funmem, rounded_stack_size_rtx, next_arg_reg,
369 GEN_INT (struct_value_size));
371 emit_insn (pat);
373 /* Find the call we just emitted. */
374 rtx_call_insn *call_insn = last_call_insn ();
376 /* Some target create a fresh MEM instead of reusing the one provided
377 above. Set its MEM_EXPR. */
378 call = get_call_rtx_from (call_insn);
379 if (call
380 && MEM_EXPR (XEXP (call, 0)) == NULL_TREE
381 && MEM_EXPR (funmem) != NULL_TREE)
382 set_mem_expr (XEXP (call, 0), MEM_EXPR (funmem));
384 /* Mark instrumented calls. */
385 if (call && fntree)
386 CALL_EXPR_WITH_BOUNDS_P (call) = CALL_WITH_BOUNDS_P (fntree);
388 /* Put the register usage information there. */
389 add_function_usage_to (call_insn, call_fusage);
391 /* If this is a const call, then set the insn's unchanging bit. */
392 if (ecf_flags & ECF_CONST)
393 RTL_CONST_CALL_P (call_insn) = 1;
395 /* If this is a pure call, then set the insn's unchanging bit. */
396 if (ecf_flags & ECF_PURE)
397 RTL_PURE_CALL_P (call_insn) = 1;
399 /* If this is a const call, then set the insn's unchanging bit. */
400 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
401 RTL_LOOPING_CONST_OR_PURE_CALL_P (call_insn) = 1;
403 /* Create a nothrow REG_EH_REGION note, if needed. */
404 make_reg_eh_region_note (call_insn, ecf_flags, 0);
406 if (ecf_flags & ECF_NORETURN)
407 add_reg_note (call_insn, REG_NORETURN, const0_rtx);
409 if (ecf_flags & ECF_RETURNS_TWICE)
411 add_reg_note (call_insn, REG_SETJMP, const0_rtx);
412 cfun->calls_setjmp = 1;
415 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
417 /* Restore this now, so that we do defer pops for this call's args
418 if the context of the call as a whole permits. */
419 inhibit_defer_pop = old_inhibit_defer_pop;
421 if (n_popped > 0)
423 if (!already_popped)
424 CALL_INSN_FUNCTION_USAGE (call_insn)
425 = gen_rtx_EXPR_LIST (VOIDmode,
426 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
427 CALL_INSN_FUNCTION_USAGE (call_insn));
428 rounded_stack_size -= n_popped;
429 rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
430 stack_pointer_delta -= n_popped;
432 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
434 /* If popup is needed, stack realign must use DRAP */
435 if (SUPPORTS_STACK_ALIGNMENT)
436 crtl->need_drap = true;
438 /* For noreturn calls when not accumulating outgoing args force
439 REG_ARGS_SIZE note to prevent crossjumping of calls with different
440 args sizes. */
441 else if (!ACCUMULATE_OUTGOING_ARGS && (ecf_flags & ECF_NORETURN) != 0)
442 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
444 if (!ACCUMULATE_OUTGOING_ARGS)
446 /* If returning from the subroutine does not automatically pop the args,
447 we need an instruction to pop them sooner or later.
448 Perhaps do it now; perhaps just record how much space to pop later.
450 If returning from the subroutine does pop the args, indicate that the
451 stack pointer will be changed. */
453 if (rounded_stack_size != 0)
455 if (ecf_flags & ECF_NORETURN)
456 /* Just pretend we did the pop. */
457 stack_pointer_delta -= rounded_stack_size;
458 else if (flag_defer_pop && inhibit_defer_pop == 0
459 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
460 pending_stack_adjust += rounded_stack_size;
461 else
462 adjust_stack (rounded_stack_size_rtx);
465 /* When we accumulate outgoing args, we must avoid any stack manipulations.
466 Restore the stack pointer to its original value now. Usually
467 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
468 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
469 popping variants of functions exist as well.
471 ??? We may optimize similar to defer_pop above, but it is
472 probably not worthwhile.
474 ??? It will be worthwhile to enable combine_stack_adjustments even for
475 such machines. */
476 else if (n_popped)
477 anti_adjust_stack (GEN_INT (n_popped));
480 /* Determine if the function identified by FNDECL is one with
481 special properties we wish to know about. Modify FLAGS accordingly.
483 For example, if the function might return more than one time (setjmp), then
484 set ECF_RETURNS_TWICE.
486 Set ECF_MAY_BE_ALLOCA for any memory allocation function that might allocate
487 space from the stack such as alloca. */
489 static int
490 special_function_p (const_tree fndecl, int flags)
492 tree name_decl = DECL_NAME (fndecl);
494 /* For instrumentation clones we want to derive flags
495 from the original name. */
496 if (cgraph_node::get (fndecl)
497 && cgraph_node::get (fndecl)->instrumentation_clone)
498 name_decl = DECL_NAME (cgraph_node::get (fndecl)->orig_decl);
500 if (fndecl && name_decl
501 && IDENTIFIER_LENGTH (name_decl) <= 11
502 /* Exclude functions not at the file scope, or not `extern',
503 since they are not the magic functions we would otherwise
504 think they are.
505 FIXME: this should be handled with attributes, not with this
506 hacky imitation of DECL_ASSEMBLER_NAME. It's (also) wrong
507 because you can declare fork() inside a function if you
508 wish. */
509 && (DECL_CONTEXT (fndecl) == NULL_TREE
510 || TREE_CODE (DECL_CONTEXT (fndecl)) == TRANSLATION_UNIT_DECL)
511 && TREE_PUBLIC (fndecl))
513 const char *name = IDENTIFIER_POINTER (name_decl);
514 const char *tname = name;
516 /* We assume that alloca will always be called by name. It
517 makes no sense to pass it as a pointer-to-function to
518 anything that does not understand its behavior. */
519 if (IDENTIFIER_LENGTH (name_decl) == 6
520 && name[0] == 'a'
521 && ! strcmp (name, "alloca"))
522 flags |= ECF_MAY_BE_ALLOCA;
524 /* Disregard prefix _ or __. */
525 if (name[0] == '_')
527 if (name[1] == '_')
528 tname += 2;
529 else
530 tname += 1;
533 /* ECF_RETURNS_TWICE is safe even for -ffreestanding. */
534 if (! strcmp (tname, "setjmp")
535 || ! strcmp (tname, "sigsetjmp")
536 || ! strcmp (name, "savectx")
537 || ! strcmp (name, "vfork")
538 || ! strcmp (name, "getcontext"))
539 flags |= ECF_RETURNS_TWICE;
542 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
543 switch (DECL_FUNCTION_CODE (fndecl))
545 case BUILT_IN_ALLOCA:
546 case BUILT_IN_ALLOCA_WITH_ALIGN:
547 flags |= ECF_MAY_BE_ALLOCA;
548 break;
549 default:
550 break;
553 return flags;
556 /* Similar to special_function_p; return a set of ERF_ flags for the
557 function FNDECL. */
558 static int
559 decl_return_flags (tree fndecl)
561 tree attr;
562 tree type = TREE_TYPE (fndecl);
563 if (!type)
564 return 0;
566 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
567 if (!attr)
568 return 0;
570 attr = TREE_VALUE (TREE_VALUE (attr));
571 if (!attr || TREE_STRING_LENGTH (attr) < 1)
572 return 0;
574 switch (TREE_STRING_POINTER (attr)[0])
576 case '1':
577 case '2':
578 case '3':
579 case '4':
580 return ERF_RETURNS_ARG | (TREE_STRING_POINTER (attr)[0] - '1');
582 case 'm':
583 return ERF_NOALIAS;
585 case '.':
586 default:
587 return 0;
591 /* Return nonzero when FNDECL represents a call to setjmp. */
594 setjmp_call_p (const_tree fndecl)
596 if (DECL_IS_RETURNS_TWICE (fndecl))
597 return ECF_RETURNS_TWICE;
598 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
602 /* Return true if STMT may be an alloca call. */
604 bool
605 gimple_maybe_alloca_call_p (const gimple *stmt)
607 tree fndecl;
609 if (!is_gimple_call (stmt))
610 return false;
612 fndecl = gimple_call_fndecl (stmt);
613 if (fndecl && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
614 return true;
616 return false;
619 /* Return true if STMT is a builtin alloca call. */
621 bool
622 gimple_alloca_call_p (const gimple *stmt)
624 tree fndecl;
626 if (!is_gimple_call (stmt))
627 return false;
629 fndecl = gimple_call_fndecl (stmt);
630 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
631 switch (DECL_FUNCTION_CODE (fndecl))
633 case BUILT_IN_ALLOCA:
634 case BUILT_IN_ALLOCA_WITH_ALIGN:
635 return true;
636 default:
637 break;
640 return false;
643 /* Return true when exp contains a builtin alloca call. */
645 bool
646 alloca_call_p (const_tree exp)
648 tree fndecl;
649 if (TREE_CODE (exp) == CALL_EXPR
650 && (fndecl = get_callee_fndecl (exp))
651 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
652 switch (DECL_FUNCTION_CODE (fndecl))
654 case BUILT_IN_ALLOCA:
655 case BUILT_IN_ALLOCA_WITH_ALIGN:
656 return true;
657 default:
658 break;
661 return false;
664 /* Return TRUE if FNDECL is either a TM builtin or a TM cloned
665 function. Return FALSE otherwise. */
667 static bool
668 is_tm_builtin (const_tree fndecl)
670 if (fndecl == NULL)
671 return false;
673 if (decl_is_tm_clone (fndecl))
674 return true;
676 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
678 switch (DECL_FUNCTION_CODE (fndecl))
680 case BUILT_IN_TM_COMMIT:
681 case BUILT_IN_TM_COMMIT_EH:
682 case BUILT_IN_TM_ABORT:
683 case BUILT_IN_TM_IRREVOCABLE:
684 case BUILT_IN_TM_GETTMCLONE_IRR:
685 case BUILT_IN_TM_MEMCPY:
686 case BUILT_IN_TM_MEMMOVE:
687 case BUILT_IN_TM_MEMSET:
688 CASE_BUILT_IN_TM_STORE (1):
689 CASE_BUILT_IN_TM_STORE (2):
690 CASE_BUILT_IN_TM_STORE (4):
691 CASE_BUILT_IN_TM_STORE (8):
692 CASE_BUILT_IN_TM_STORE (FLOAT):
693 CASE_BUILT_IN_TM_STORE (DOUBLE):
694 CASE_BUILT_IN_TM_STORE (LDOUBLE):
695 CASE_BUILT_IN_TM_STORE (M64):
696 CASE_BUILT_IN_TM_STORE (M128):
697 CASE_BUILT_IN_TM_STORE (M256):
698 CASE_BUILT_IN_TM_LOAD (1):
699 CASE_BUILT_IN_TM_LOAD (2):
700 CASE_BUILT_IN_TM_LOAD (4):
701 CASE_BUILT_IN_TM_LOAD (8):
702 CASE_BUILT_IN_TM_LOAD (FLOAT):
703 CASE_BUILT_IN_TM_LOAD (DOUBLE):
704 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
705 CASE_BUILT_IN_TM_LOAD (M64):
706 CASE_BUILT_IN_TM_LOAD (M128):
707 CASE_BUILT_IN_TM_LOAD (M256):
708 case BUILT_IN_TM_LOG:
709 case BUILT_IN_TM_LOG_1:
710 case BUILT_IN_TM_LOG_2:
711 case BUILT_IN_TM_LOG_4:
712 case BUILT_IN_TM_LOG_8:
713 case BUILT_IN_TM_LOG_FLOAT:
714 case BUILT_IN_TM_LOG_DOUBLE:
715 case BUILT_IN_TM_LOG_LDOUBLE:
716 case BUILT_IN_TM_LOG_M64:
717 case BUILT_IN_TM_LOG_M128:
718 case BUILT_IN_TM_LOG_M256:
719 return true;
720 default:
721 break;
724 return false;
727 /* Detect flags (function attributes) from the function decl or type node. */
730 flags_from_decl_or_type (const_tree exp)
732 int flags = 0;
734 if (DECL_P (exp))
736 /* The function exp may have the `malloc' attribute. */
737 if (DECL_IS_MALLOC (exp))
738 flags |= ECF_MALLOC;
740 /* The function exp may have the `returns_twice' attribute. */
741 if (DECL_IS_RETURNS_TWICE (exp))
742 flags |= ECF_RETURNS_TWICE;
744 /* Process the pure and const attributes. */
745 if (TREE_READONLY (exp))
746 flags |= ECF_CONST;
747 if (DECL_PURE_P (exp))
748 flags |= ECF_PURE;
749 if (DECL_LOOPING_CONST_OR_PURE_P (exp))
750 flags |= ECF_LOOPING_CONST_OR_PURE;
752 if (DECL_IS_NOVOPS (exp))
753 flags |= ECF_NOVOPS;
754 if (lookup_attribute ("leaf", DECL_ATTRIBUTES (exp)))
755 flags |= ECF_LEAF;
757 if (TREE_NOTHROW (exp))
758 flags |= ECF_NOTHROW;
760 if (flag_tm)
762 if (is_tm_builtin (exp))
763 flags |= ECF_TM_BUILTIN;
764 else if ((flags & (ECF_CONST|ECF_NOVOPS)) != 0
765 || lookup_attribute ("transaction_pure",
766 TYPE_ATTRIBUTES (TREE_TYPE (exp))))
767 flags |= ECF_TM_PURE;
770 flags = special_function_p (exp, flags);
772 else if (TYPE_P (exp))
774 if (TYPE_READONLY (exp))
775 flags |= ECF_CONST;
777 if (flag_tm
778 && ((flags & ECF_CONST) != 0
779 || lookup_attribute ("transaction_pure", TYPE_ATTRIBUTES (exp))))
780 flags |= ECF_TM_PURE;
782 else
783 gcc_unreachable ();
785 if (TREE_THIS_VOLATILE (exp))
787 flags |= ECF_NORETURN;
788 if (flags & (ECF_CONST|ECF_PURE))
789 flags |= ECF_LOOPING_CONST_OR_PURE;
792 return flags;
795 /* Detect flags from a CALL_EXPR. */
798 call_expr_flags (const_tree t)
800 int flags;
801 tree decl = get_callee_fndecl (t);
803 if (decl)
804 flags = flags_from_decl_or_type (decl);
805 else if (CALL_EXPR_FN (t) == NULL_TREE)
806 flags = internal_fn_flags (CALL_EXPR_IFN (t));
807 else
809 t = TREE_TYPE (CALL_EXPR_FN (t));
810 if (t && TREE_CODE (t) == POINTER_TYPE)
811 flags = flags_from_decl_or_type (TREE_TYPE (t));
812 else
813 flags = 0;
816 return flags;
819 /* Return true if TYPE should be passed by invisible reference. */
821 bool
822 pass_by_reference (CUMULATIVE_ARGS *ca, machine_mode mode,
823 tree type, bool named_arg)
825 if (type)
827 /* If this type contains non-trivial constructors, then it is
828 forbidden for the middle-end to create any new copies. */
829 if (TREE_ADDRESSABLE (type))
830 return true;
832 /* GCC post 3.4 passes *all* variable sized types by reference. */
833 if (!TYPE_SIZE (type) || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
834 return true;
836 /* If a record type should be passed the same as its first (and only)
837 member, use the type and mode of that member. */
838 if (TREE_CODE (type) == RECORD_TYPE && TYPE_TRANSPARENT_AGGR (type))
840 type = TREE_TYPE (first_field (type));
841 mode = TYPE_MODE (type);
845 return targetm.calls.pass_by_reference (pack_cumulative_args (ca), mode,
846 type, named_arg);
849 /* Return true if TYPE, which is passed by reference, should be callee
850 copied instead of caller copied. */
852 bool
853 reference_callee_copied (CUMULATIVE_ARGS *ca, machine_mode mode,
854 tree type, bool named_arg)
856 if (type && TREE_ADDRESSABLE (type))
857 return false;
858 return targetm.calls.callee_copies (pack_cumulative_args (ca), mode, type,
859 named_arg);
863 /* Precompute all register parameters as described by ARGS, storing values
864 into fields within the ARGS array.
866 NUM_ACTUALS indicates the total number elements in the ARGS array.
868 Set REG_PARM_SEEN if we encounter a register parameter. */
870 static void
871 precompute_register_parameters (int num_actuals, struct arg_data *args,
872 int *reg_parm_seen)
874 int i;
876 *reg_parm_seen = 0;
878 for (i = 0; i < num_actuals; i++)
879 if (args[i].reg != 0 && ! args[i].pass_on_stack)
881 *reg_parm_seen = 1;
883 if (args[i].value == 0)
885 push_temp_slots ();
886 args[i].value = expand_normal (args[i].tree_value);
887 preserve_temp_slots (args[i].value);
888 pop_temp_slots ();
891 /* If we are to promote the function arg to a wider mode,
892 do it now. */
894 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
895 args[i].value
896 = convert_modes (args[i].mode,
897 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
898 args[i].value, args[i].unsignedp);
900 /* If the value is a non-legitimate constant, force it into a
901 pseudo now. TLS symbols sometimes need a call to resolve. */
902 if (CONSTANT_P (args[i].value)
903 && !targetm.legitimate_constant_p (args[i].mode, args[i].value))
904 args[i].value = force_reg (args[i].mode, args[i].value);
906 /* If we're going to have to load the value by parts, pull the
907 parts into pseudos. The part extraction process can involve
908 non-trivial computation. */
909 if (GET_CODE (args[i].reg) == PARALLEL)
911 tree type = TREE_TYPE (args[i].tree_value);
912 args[i].parallel_value
913 = emit_group_load_into_temps (args[i].reg, args[i].value,
914 type, int_size_in_bytes (type));
917 /* If the value is expensive, and we are inside an appropriately
918 short loop, put the value into a pseudo and then put the pseudo
919 into the hard reg.
921 For small register classes, also do this if this call uses
922 register parameters. This is to avoid reload conflicts while
923 loading the parameters registers. */
925 else if ((! (REG_P (args[i].value)
926 || (GET_CODE (args[i].value) == SUBREG
927 && REG_P (SUBREG_REG (args[i].value)))))
928 && args[i].mode != BLKmode
929 && (set_src_cost (args[i].value, args[i].mode,
930 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 if (ARGS_GROW_DOWNWARD)
954 high += 1;
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 if (ARGS_GROW_DOWNWARD)
985 delta = -high;
986 else
987 delta = low;
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 if (ARGS_GROW_DOWNWARD)
1019 delta = -high_to_save;
1020 else
1021 delta = low_to_save;
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, false);
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, false);
1119 /* Issue an error if CALL_EXPR was flagged as requiring
1120 tall-call optimization. */
1122 static void
1123 maybe_complain_about_tail_call (tree call_expr, const char *reason)
1125 gcc_assert (TREE_CODE (call_expr) == CALL_EXPR);
1126 if (!CALL_EXPR_MUST_TAIL_CALL (call_expr))
1127 return;
1129 error_at (EXPR_LOCATION (call_expr), "cannot tail-call: %s", reason);
1132 /* Fill in ARGS_SIZE and ARGS array based on the parameters found in
1133 CALL_EXPR EXP.
1135 NUM_ACTUALS is the total number of parameters.
1137 N_NAMED_ARGS is the total number of named arguments.
1139 STRUCT_VALUE_ADDR_VALUE is the implicit argument for a struct return
1140 value, or null.
1142 FNDECL is the tree code for the target of this call (if known)
1144 ARGS_SO_FAR holds state needed by the target to know where to place
1145 the next argument.
1147 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
1148 for arguments which are passed in registers.
1150 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
1151 and may be modified by this routine.
1153 OLD_PENDING_ADJ, MUST_PREALLOCATE and FLAGS are pointers to integer
1154 flags which may be modified by this routine.
1156 MAY_TAILCALL is cleared if we encounter an invisible pass-by-reference
1157 that requires allocation of stack space.
1159 CALL_FROM_THUNK_P is true if this call is the jump from a thunk to
1160 the thunked-to function. */
1162 static void
1163 initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED,
1164 struct arg_data *args,
1165 struct args_size *args_size,
1166 int n_named_args ATTRIBUTE_UNUSED,
1167 tree exp, tree struct_value_addr_value,
1168 tree fndecl, tree fntype,
1169 cumulative_args_t args_so_far,
1170 int reg_parm_stack_space,
1171 rtx *old_stack_level, int *old_pending_adj,
1172 int *must_preallocate, int *ecf_flags,
1173 bool *may_tailcall, bool call_from_thunk_p)
1175 CUMULATIVE_ARGS *args_so_far_pnt = get_cumulative_args (args_so_far);
1176 location_t loc = EXPR_LOCATION (exp);
1178 /* Count arg position in order args appear. */
1179 int argpos;
1181 int i;
1183 args_size->constant = 0;
1184 args_size->var = 0;
1186 bitmap_obstack_initialize (NULL);
1188 /* In this loop, we consider args in the order they are written.
1189 We fill up ARGS from the back. */
1191 i = num_actuals - 1;
1193 int j = i, ptr_arg = -1;
1194 call_expr_arg_iterator iter;
1195 tree arg;
1196 bitmap slots = NULL;
1198 if (struct_value_addr_value)
1200 args[j].tree_value = struct_value_addr_value;
1201 j--;
1203 /* If we pass structure address then we need to
1204 create bounds for it. Since created bounds is
1205 a call statement, we expand it right here to avoid
1206 fixing all other places where it may be expanded. */
1207 if (CALL_WITH_BOUNDS_P (exp))
1209 args[j].value = gen_reg_rtx (targetm.chkp_bound_mode ());
1210 args[j].tree_value
1211 = chkp_make_bounds_for_struct_addr (struct_value_addr_value);
1212 expand_expr_real (args[j].tree_value, args[j].value, VOIDmode,
1213 EXPAND_NORMAL, 0, false);
1214 args[j].pointer_arg = j + 1;
1215 j--;
1218 argpos = 0;
1219 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
1221 tree argtype = TREE_TYPE (arg);
1223 /* Remember last param with pointer and associate it
1224 with following pointer bounds. */
1225 if (CALL_WITH_BOUNDS_P (exp)
1226 && chkp_type_has_pointer (argtype))
1228 if (slots)
1229 BITMAP_FREE (slots);
1230 ptr_arg = j;
1231 if (!BOUNDED_TYPE_P (argtype))
1233 slots = BITMAP_ALLOC (NULL);
1234 chkp_find_bound_slots (argtype, slots);
1237 else if (CALL_WITH_BOUNDS_P (exp)
1238 && pass_by_reference (NULL, TYPE_MODE (argtype), argtype,
1239 argpos < n_named_args))
1241 if (slots)
1242 BITMAP_FREE (slots);
1243 ptr_arg = j;
1245 else if (POINTER_BOUNDS_TYPE_P (argtype))
1247 /* We expect bounds in instrumented calls only.
1248 Otherwise it is a sign we lost flag due to some optimization
1249 and may emit call args incorrectly. */
1250 gcc_assert (CALL_WITH_BOUNDS_P (exp));
1252 /* For structures look for the next available pointer. */
1253 if (ptr_arg != -1 && slots)
1255 unsigned bnd_no = bitmap_first_set_bit (slots);
1256 args[j].pointer_offset =
1257 bnd_no * POINTER_SIZE / BITS_PER_UNIT;
1259 bitmap_clear_bit (slots, bnd_no);
1261 /* Check we have no more pointers in the structure. */
1262 if (bitmap_empty_p (slots))
1263 BITMAP_FREE (slots);
1265 args[j].pointer_arg = ptr_arg;
1267 /* Check we covered all pointers in the previous
1268 non bounds arg. */
1269 if (!slots)
1270 ptr_arg = -1;
1272 else
1273 ptr_arg = -1;
1275 if (targetm.calls.split_complex_arg
1276 && argtype
1277 && TREE_CODE (argtype) == COMPLEX_TYPE
1278 && targetm.calls.split_complex_arg (argtype))
1280 tree subtype = TREE_TYPE (argtype);
1281 args[j].tree_value = build1 (REALPART_EXPR, subtype, arg);
1282 j--;
1283 args[j].tree_value = build1 (IMAGPART_EXPR, subtype, arg);
1285 else
1286 args[j].tree_value = arg;
1287 j--;
1288 argpos++;
1291 if (slots)
1292 BITMAP_FREE (slots);
1295 bitmap_obstack_release (NULL);
1297 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
1298 for (argpos = 0; argpos < num_actuals; i--, argpos++)
1300 tree type = TREE_TYPE (args[i].tree_value);
1301 int unsignedp;
1302 machine_mode mode;
1304 /* Replace erroneous argument with constant zero. */
1305 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
1306 args[i].tree_value = integer_zero_node, type = integer_type_node;
1308 /* If TYPE is a transparent union or record, pass things the way
1309 we would pass the first field of the union or record. We have
1310 already verified that the modes are the same. */
1311 if ((TREE_CODE (type) == UNION_TYPE || TREE_CODE (type) == RECORD_TYPE)
1312 && TYPE_TRANSPARENT_AGGR (type))
1313 type = TREE_TYPE (first_field (type));
1315 /* Decide where to pass this arg.
1317 args[i].reg is nonzero if all or part is passed in registers.
1319 args[i].partial is nonzero if part but not all is passed in registers,
1320 and the exact value says how many bytes are passed in registers.
1322 args[i].pass_on_stack is nonzero if the argument must at least be
1323 computed on the stack. It may then be loaded back into registers
1324 if args[i].reg is nonzero.
1326 These decisions are driven by the FUNCTION_... macros and must agree
1327 with those made by function.c. */
1329 /* See if this argument should be passed by invisible reference. */
1330 if (pass_by_reference (args_so_far_pnt, TYPE_MODE (type),
1331 type, argpos < n_named_args))
1333 bool callee_copies;
1334 tree base = NULL_TREE;
1336 callee_copies
1337 = reference_callee_copied (args_so_far_pnt, TYPE_MODE (type),
1338 type, argpos < n_named_args);
1340 /* If we're compiling a thunk, pass through invisible references
1341 instead of making a copy. */
1342 if (call_from_thunk_p
1343 || (callee_copies
1344 && !TREE_ADDRESSABLE (type)
1345 && (base = get_base_address (args[i].tree_value))
1346 && TREE_CODE (base) != SSA_NAME
1347 && (!DECL_P (base) || MEM_P (DECL_RTL (base)))))
1349 /* We may have turned the parameter value into an SSA name.
1350 Go back to the original parameter so we can take the
1351 address. */
1352 if (TREE_CODE (args[i].tree_value) == SSA_NAME)
1354 gcc_assert (SSA_NAME_IS_DEFAULT_DEF (args[i].tree_value));
1355 args[i].tree_value = SSA_NAME_VAR (args[i].tree_value);
1356 gcc_assert (TREE_CODE (args[i].tree_value) == PARM_DECL);
1358 /* Argument setup code may have copied the value to register. We
1359 revert that optimization now because the tail call code must
1360 use the original location. */
1361 if (TREE_CODE (args[i].tree_value) == PARM_DECL
1362 && !MEM_P (DECL_RTL (args[i].tree_value))
1363 && DECL_INCOMING_RTL (args[i].tree_value)
1364 && MEM_P (DECL_INCOMING_RTL (args[i].tree_value)))
1365 set_decl_rtl (args[i].tree_value,
1366 DECL_INCOMING_RTL (args[i].tree_value));
1368 mark_addressable (args[i].tree_value);
1370 /* We can't use sibcalls if a callee-copied argument is
1371 stored in the current function's frame. */
1372 if (!call_from_thunk_p && DECL_P (base) && !TREE_STATIC (base))
1374 *may_tailcall = false;
1375 maybe_complain_about_tail_call (exp,
1376 "a callee-copied argument is"
1377 " stored in the current "
1378 " function's frame");
1381 args[i].tree_value = build_fold_addr_expr_loc (loc,
1382 args[i].tree_value);
1383 type = TREE_TYPE (args[i].tree_value);
1385 if (*ecf_flags & ECF_CONST)
1386 *ecf_flags &= ~(ECF_CONST | ECF_LOOPING_CONST_OR_PURE);
1388 else
1390 /* We make a copy of the object and pass the address to the
1391 function being called. */
1392 rtx copy;
1394 if (!COMPLETE_TYPE_P (type)
1395 || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST
1396 || (flag_stack_check == GENERIC_STACK_CHECK
1397 && compare_tree_int (TYPE_SIZE_UNIT (type),
1398 STACK_CHECK_MAX_VAR_SIZE) > 0))
1400 /* This is a variable-sized object. Make space on the stack
1401 for it. */
1402 rtx size_rtx = expr_size (args[i].tree_value);
1404 if (*old_stack_level == 0)
1406 emit_stack_save (SAVE_BLOCK, old_stack_level);
1407 *old_pending_adj = pending_stack_adjust;
1408 pending_stack_adjust = 0;
1411 /* We can pass TRUE as the 4th argument because we just
1412 saved the stack pointer and will restore it right after
1413 the call. */
1414 copy = allocate_dynamic_stack_space (size_rtx,
1415 TYPE_ALIGN (type),
1416 TYPE_ALIGN (type),
1417 true);
1418 copy = gen_rtx_MEM (BLKmode, copy);
1419 set_mem_attributes (copy, type, 1);
1421 else
1422 copy = assign_temp (type, 1, 0);
1424 store_expr (args[i].tree_value, copy, 0, false, false);
1426 /* Just change the const function to pure and then let
1427 the next test clear the pure based on
1428 callee_copies. */
1429 if (*ecf_flags & ECF_CONST)
1431 *ecf_flags &= ~ECF_CONST;
1432 *ecf_flags |= ECF_PURE;
1435 if (!callee_copies && *ecf_flags & ECF_PURE)
1436 *ecf_flags &= ~(ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
1438 args[i].tree_value
1439 = build_fold_addr_expr_loc (loc, make_tree (type, copy));
1440 type = TREE_TYPE (args[i].tree_value);
1441 *may_tailcall = false;
1442 maybe_complain_about_tail_call (exp,
1443 "argument must be passed"
1444 " by copying");
1448 unsignedp = TYPE_UNSIGNED (type);
1449 mode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
1450 fndecl ? TREE_TYPE (fndecl) : fntype, 0);
1452 args[i].unsignedp = unsignedp;
1453 args[i].mode = mode;
1455 args[i].reg = targetm.calls.function_arg (args_so_far, mode, type,
1456 argpos < n_named_args);
1458 if (args[i].reg && CONST_INT_P (args[i].reg))
1460 args[i].special_slot = args[i].reg;
1461 args[i].reg = NULL;
1464 /* If this is a sibling call and the machine has register windows, the
1465 register window has to be unwinded before calling the routine, so
1466 arguments have to go into the incoming registers. */
1467 if (targetm.calls.function_incoming_arg != targetm.calls.function_arg)
1468 args[i].tail_call_reg
1469 = targetm.calls.function_incoming_arg (args_so_far, mode, type,
1470 argpos < n_named_args);
1471 else
1472 args[i].tail_call_reg = args[i].reg;
1474 if (args[i].reg)
1475 args[i].partial
1476 = targetm.calls.arg_partial_bytes (args_so_far, mode, type,
1477 argpos < n_named_args);
1479 args[i].pass_on_stack = targetm.calls.must_pass_in_stack (mode, type);
1481 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
1482 it means that we are to pass this arg in the register(s) designated
1483 by the PARALLEL, but also to pass it in the stack. */
1484 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
1485 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
1486 args[i].pass_on_stack = 1;
1488 /* If this is an addressable type, we must preallocate the stack
1489 since we must evaluate the object into its final location.
1491 If this is to be passed in both registers and the stack, it is simpler
1492 to preallocate. */
1493 if (TREE_ADDRESSABLE (type)
1494 || (args[i].pass_on_stack && args[i].reg != 0))
1495 *must_preallocate = 1;
1497 /* No stack allocation and padding for bounds. */
1498 if (POINTER_BOUNDS_P (args[i].tree_value))
1500 /* Compute the stack-size of this argument. */
1501 else if (args[i].reg == 0 || args[i].partial != 0
1502 || reg_parm_stack_space > 0
1503 || args[i].pass_on_stack)
1504 locate_and_pad_parm (mode, type,
1505 #ifdef STACK_PARMS_IN_REG_PARM_AREA
1507 #else
1508 args[i].reg != 0,
1509 #endif
1510 reg_parm_stack_space,
1511 args[i].pass_on_stack ? 0 : args[i].partial,
1512 fndecl, args_size, &args[i].locate);
1513 #ifdef BLOCK_REG_PADDING
1514 else
1515 /* The argument is passed entirely in registers. See at which
1516 end it should be padded. */
1517 args[i].locate.where_pad =
1518 BLOCK_REG_PADDING (mode, type,
1519 int_size_in_bytes (type) <= UNITS_PER_WORD);
1520 #endif
1522 /* Update ARGS_SIZE, the total stack space for args so far. */
1524 args_size->constant += args[i].locate.size.constant;
1525 if (args[i].locate.size.var)
1526 ADD_PARM_SIZE (*args_size, args[i].locate.size.var);
1528 /* Increment ARGS_SO_FAR, which has info about which arg-registers
1529 have been used, etc. */
1531 targetm.calls.function_arg_advance (args_so_far, TYPE_MODE (type),
1532 type, argpos < n_named_args);
1536 /* Update ARGS_SIZE to contain the total size for the argument block.
1537 Return the original constant component of the argument block's size.
1539 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
1540 for arguments passed in registers. */
1542 static int
1543 compute_argument_block_size (int reg_parm_stack_space,
1544 struct args_size *args_size,
1545 tree fndecl ATTRIBUTE_UNUSED,
1546 tree fntype ATTRIBUTE_UNUSED,
1547 int preferred_stack_boundary ATTRIBUTE_UNUSED)
1549 int unadjusted_args_size = args_size->constant;
1551 /* For accumulate outgoing args mode we don't need to align, since the frame
1552 will be already aligned. Align to STACK_BOUNDARY in order to prevent
1553 backends from generating misaligned frame sizes. */
1554 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
1555 preferred_stack_boundary = STACK_BOUNDARY;
1557 /* Compute the actual size of the argument block required. The variable
1558 and constant sizes must be combined, the size may have to be rounded,
1559 and there may be a minimum required size. */
1561 if (args_size->var)
1563 args_size->var = ARGS_SIZE_TREE (*args_size);
1564 args_size->constant = 0;
1566 preferred_stack_boundary /= BITS_PER_UNIT;
1567 if (preferred_stack_boundary > 1)
1569 /* We don't handle this case yet. To handle it correctly we have
1570 to add the delta, round and subtract the delta.
1571 Currently no machine description requires this support. */
1572 gcc_assert (!(stack_pointer_delta & (preferred_stack_boundary - 1)));
1573 args_size->var = round_up (args_size->var, preferred_stack_boundary);
1576 if (reg_parm_stack_space > 0)
1578 args_size->var
1579 = size_binop (MAX_EXPR, args_size->var,
1580 ssize_int (reg_parm_stack_space));
1582 /* The area corresponding to register parameters is not to count in
1583 the size of the block we need. So make the adjustment. */
1584 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1585 args_size->var
1586 = size_binop (MINUS_EXPR, args_size->var,
1587 ssize_int (reg_parm_stack_space));
1590 else
1592 preferred_stack_boundary /= BITS_PER_UNIT;
1593 if (preferred_stack_boundary < 1)
1594 preferred_stack_boundary = 1;
1595 args_size->constant = (((args_size->constant
1596 + stack_pointer_delta
1597 + preferred_stack_boundary - 1)
1598 / preferred_stack_boundary
1599 * preferred_stack_boundary)
1600 - stack_pointer_delta);
1602 args_size->constant = MAX (args_size->constant,
1603 reg_parm_stack_space);
1605 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1606 args_size->constant -= reg_parm_stack_space;
1608 return unadjusted_args_size;
1611 /* Precompute parameters as needed for a function call.
1613 FLAGS is mask of ECF_* constants.
1615 NUM_ACTUALS is the number of arguments.
1617 ARGS is an array containing information for each argument; this
1618 routine fills in the INITIAL_VALUE and VALUE fields for each
1619 precomputed argument. */
1621 static void
1622 precompute_arguments (int num_actuals, struct arg_data *args)
1624 int i;
1626 /* If this is a libcall, then precompute all arguments so that we do not
1627 get extraneous instructions emitted as part of the libcall sequence. */
1629 /* If we preallocated the stack space, and some arguments must be passed
1630 on the stack, then we must precompute any parameter which contains a
1631 function call which will store arguments on the stack.
1632 Otherwise, evaluating the parameter may clobber previous parameters
1633 which have already been stored into the stack. (we have code to avoid
1634 such case by saving the outgoing stack arguments, but it results in
1635 worse code) */
1636 if (!ACCUMULATE_OUTGOING_ARGS)
1637 return;
1639 for (i = 0; i < num_actuals; i++)
1641 tree type;
1642 machine_mode mode;
1644 if (TREE_CODE (args[i].tree_value) != CALL_EXPR)
1645 continue;
1647 /* If this is an addressable type, we cannot pre-evaluate it. */
1648 type = TREE_TYPE (args[i].tree_value);
1649 gcc_assert (!TREE_ADDRESSABLE (type));
1651 args[i].initial_value = args[i].value
1652 = expand_normal (args[i].tree_value);
1654 mode = TYPE_MODE (type);
1655 if (mode != args[i].mode)
1657 int unsignedp = args[i].unsignedp;
1658 args[i].value
1659 = convert_modes (args[i].mode, mode,
1660 args[i].value, args[i].unsignedp);
1662 /* CSE will replace this only if it contains args[i].value
1663 pseudo, so convert it down to the declared mode using
1664 a SUBREG. */
1665 if (REG_P (args[i].value)
1666 && GET_MODE_CLASS (args[i].mode) == MODE_INT
1667 && promote_mode (type, mode, &unsignedp) != args[i].mode)
1669 args[i].initial_value
1670 = gen_lowpart_SUBREG (mode, args[i].value);
1671 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
1672 SUBREG_PROMOTED_SET (args[i].initial_value, args[i].unsignedp);
1678 /* Given the current state of MUST_PREALLOCATE and information about
1679 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
1680 compute and return the final value for MUST_PREALLOCATE. */
1682 static int
1683 finalize_must_preallocate (int must_preallocate, int num_actuals,
1684 struct arg_data *args, struct args_size *args_size)
1686 /* See if we have or want to preallocate stack space.
1688 If we would have to push a partially-in-regs parm
1689 before other stack parms, preallocate stack space instead.
1691 If the size of some parm is not a multiple of the required stack
1692 alignment, we must preallocate.
1694 If the total size of arguments that would otherwise create a copy in
1695 a temporary (such as a CALL) is more than half the total argument list
1696 size, preallocation is faster.
1698 Another reason to preallocate is if we have a machine (like the m88k)
1699 where stack alignment is required to be maintained between every
1700 pair of insns, not just when the call is made. However, we assume here
1701 that such machines either do not have push insns (and hence preallocation
1702 would occur anyway) or the problem is taken care of with
1703 PUSH_ROUNDING. */
1705 if (! must_preallocate)
1707 int partial_seen = 0;
1708 int copy_to_evaluate_size = 0;
1709 int i;
1711 for (i = 0; i < num_actuals && ! must_preallocate; i++)
1713 if (args[i].partial > 0 && ! args[i].pass_on_stack)
1714 partial_seen = 1;
1715 else if (partial_seen && args[i].reg == 0)
1716 must_preallocate = 1;
1717 /* We preallocate in case there are bounds passed
1718 in the bounds table to have precomputed address
1719 for bounds association. */
1720 else if (POINTER_BOUNDS_P (args[i].tree_value)
1721 && !args[i].reg)
1722 must_preallocate = 1;
1724 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1725 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
1726 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
1727 || TREE_CODE (args[i].tree_value) == COND_EXPR
1728 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
1729 copy_to_evaluate_size
1730 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1733 if (copy_to_evaluate_size * 2 >= args_size->constant
1734 && args_size->constant > 0)
1735 must_preallocate = 1;
1737 return must_preallocate;
1740 /* If we preallocated stack space, compute the address of each argument
1741 and store it into the ARGS array.
1743 We need not ensure it is a valid memory address here; it will be
1744 validized when it is used.
1746 ARGBLOCK is an rtx for the address of the outgoing arguments. */
1748 static void
1749 compute_argument_addresses (struct arg_data *args, rtx argblock, int num_actuals)
1751 if (argblock)
1753 rtx arg_reg = argblock;
1754 int i, arg_offset = 0;
1756 if (GET_CODE (argblock) == PLUS)
1757 arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
1759 for (i = 0; i < num_actuals; i++)
1761 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
1762 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
1763 rtx addr;
1764 unsigned int align, boundary;
1765 unsigned int units_on_stack = 0;
1766 machine_mode partial_mode = VOIDmode;
1768 /* Skip this parm if it will not be passed on the stack. */
1769 if (! args[i].pass_on_stack
1770 && args[i].reg != 0
1771 && args[i].partial == 0)
1772 continue;
1774 /* Pointer Bounds are never passed on the stack. */
1775 if (POINTER_BOUNDS_P (args[i].tree_value))
1776 continue;
1778 if (CONST_INT_P (offset))
1779 addr = plus_constant (Pmode, arg_reg, INTVAL (offset));
1780 else
1781 addr = gen_rtx_PLUS (Pmode, arg_reg, offset);
1783 addr = plus_constant (Pmode, addr, arg_offset);
1785 if (args[i].partial != 0)
1787 /* Only part of the parameter is being passed on the stack.
1788 Generate a simple memory reference of the correct size. */
1789 units_on_stack = args[i].locate.size.constant;
1790 partial_mode = mode_for_size (units_on_stack * BITS_PER_UNIT,
1791 MODE_INT, 1);
1792 args[i].stack = gen_rtx_MEM (partial_mode, addr);
1793 set_mem_size (args[i].stack, units_on_stack);
1795 else
1797 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
1798 set_mem_attributes (args[i].stack,
1799 TREE_TYPE (args[i].tree_value), 1);
1801 align = BITS_PER_UNIT;
1802 boundary = args[i].locate.boundary;
1803 if (args[i].locate.where_pad != downward)
1804 align = boundary;
1805 else if (CONST_INT_P (offset))
1807 align = INTVAL (offset) * BITS_PER_UNIT | boundary;
1808 align = least_bit_hwi (align);
1810 set_mem_align (args[i].stack, align);
1812 if (CONST_INT_P (slot_offset))
1813 addr = plus_constant (Pmode, arg_reg, INTVAL (slot_offset));
1814 else
1815 addr = gen_rtx_PLUS (Pmode, arg_reg, slot_offset);
1817 addr = plus_constant (Pmode, addr, arg_offset);
1819 if (args[i].partial != 0)
1821 /* Only part of the parameter is being passed on the stack.
1822 Generate a simple memory reference of the correct size.
1824 args[i].stack_slot = gen_rtx_MEM (partial_mode, addr);
1825 set_mem_size (args[i].stack_slot, units_on_stack);
1827 else
1829 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
1830 set_mem_attributes (args[i].stack_slot,
1831 TREE_TYPE (args[i].tree_value), 1);
1833 set_mem_align (args[i].stack_slot, args[i].locate.boundary);
1835 /* Function incoming arguments may overlap with sibling call
1836 outgoing arguments and we cannot allow reordering of reads
1837 from function arguments with stores to outgoing arguments
1838 of sibling calls. */
1839 set_mem_alias_set (args[i].stack, 0);
1840 set_mem_alias_set (args[i].stack_slot, 0);
1845 /* Given a FNDECL and EXP, return an rtx suitable for use as a target address
1846 in a call instruction.
1848 FNDECL is the tree node for the target function. For an indirect call
1849 FNDECL will be NULL_TREE.
1851 ADDR is the operand 0 of CALL_EXPR for this call. */
1853 static rtx
1854 rtx_for_function_call (tree fndecl, tree addr)
1856 rtx funexp;
1858 /* Get the function to call, in the form of RTL. */
1859 if (fndecl)
1861 if (!TREE_USED (fndecl) && fndecl != current_function_decl)
1862 TREE_USED (fndecl) = 1;
1864 /* Get a SYMBOL_REF rtx for the function address. */
1865 funexp = XEXP (DECL_RTL (fndecl), 0);
1867 else
1868 /* Generate an rtx (probably a pseudo-register) for the address. */
1870 push_temp_slots ();
1871 funexp = expand_normal (addr);
1872 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
1874 return funexp;
1877 /* Internal state for internal_arg_pointer_based_exp and its helpers. */
1878 static struct
1880 /* Last insn that has been scanned by internal_arg_pointer_based_exp_scan,
1881 or NULL_RTX if none has been scanned yet. */
1882 rtx_insn *scan_start;
1883 /* Vector indexed by REGNO - FIRST_PSEUDO_REGISTER, recording if a pseudo is
1884 based on crtl->args.internal_arg_pointer. The element is NULL_RTX if the
1885 pseudo isn't based on it, a CONST_INT offset if the pseudo is based on it
1886 with fixed offset, or PC if this is with variable or unknown offset. */
1887 vec<rtx> cache;
1888 } internal_arg_pointer_exp_state;
1890 static rtx internal_arg_pointer_based_exp (const_rtx, bool);
1892 /* Helper function for internal_arg_pointer_based_exp. Scan insns in
1893 the tail call sequence, starting with first insn that hasn't been
1894 scanned yet, and note for each pseudo on the LHS whether it is based
1895 on crtl->args.internal_arg_pointer or not, and what offset from that
1896 that pointer it has. */
1898 static void
1899 internal_arg_pointer_based_exp_scan (void)
1901 rtx_insn *insn, *scan_start = internal_arg_pointer_exp_state.scan_start;
1903 if (scan_start == NULL_RTX)
1904 insn = get_insns ();
1905 else
1906 insn = NEXT_INSN (scan_start);
1908 while (insn)
1910 rtx set = single_set (insn);
1911 if (set && REG_P (SET_DEST (set)) && !HARD_REGISTER_P (SET_DEST (set)))
1913 rtx val = NULL_RTX;
1914 unsigned int idx = REGNO (SET_DEST (set)) - FIRST_PSEUDO_REGISTER;
1915 /* Punt on pseudos set multiple times. */
1916 if (idx < internal_arg_pointer_exp_state.cache.length ()
1917 && (internal_arg_pointer_exp_state.cache[idx]
1918 != NULL_RTX))
1919 val = pc_rtx;
1920 else
1921 val = internal_arg_pointer_based_exp (SET_SRC (set), false);
1922 if (val != NULL_RTX)
1924 if (idx >= internal_arg_pointer_exp_state.cache.length ())
1925 internal_arg_pointer_exp_state.cache
1926 .safe_grow_cleared (idx + 1);
1927 internal_arg_pointer_exp_state.cache[idx] = val;
1930 if (NEXT_INSN (insn) == NULL_RTX)
1931 scan_start = insn;
1932 insn = NEXT_INSN (insn);
1935 internal_arg_pointer_exp_state.scan_start = scan_start;
1938 /* Compute whether RTL is based on crtl->args.internal_arg_pointer. Return
1939 NULL_RTX if RTL isn't based on it, a CONST_INT offset if RTL is based on
1940 it with fixed offset, or PC if this is with variable or unknown offset.
1941 TOPLEVEL is true if the function is invoked at the topmost level. */
1943 static rtx
1944 internal_arg_pointer_based_exp (const_rtx rtl, bool toplevel)
1946 if (CONSTANT_P (rtl))
1947 return NULL_RTX;
1949 if (rtl == crtl->args.internal_arg_pointer)
1950 return const0_rtx;
1952 if (REG_P (rtl) && HARD_REGISTER_P (rtl))
1953 return NULL_RTX;
1955 if (GET_CODE (rtl) == PLUS && CONST_INT_P (XEXP (rtl, 1)))
1957 rtx val = internal_arg_pointer_based_exp (XEXP (rtl, 0), toplevel);
1958 if (val == NULL_RTX || val == pc_rtx)
1959 return val;
1960 return plus_constant (Pmode, val, INTVAL (XEXP (rtl, 1)));
1963 /* When called at the topmost level, scan pseudo assignments in between the
1964 last scanned instruction in the tail call sequence and the latest insn
1965 in that sequence. */
1966 if (toplevel)
1967 internal_arg_pointer_based_exp_scan ();
1969 if (REG_P (rtl))
1971 unsigned int idx = REGNO (rtl) - FIRST_PSEUDO_REGISTER;
1972 if (idx < internal_arg_pointer_exp_state.cache.length ())
1973 return internal_arg_pointer_exp_state.cache[idx];
1975 return NULL_RTX;
1978 subrtx_iterator::array_type array;
1979 FOR_EACH_SUBRTX (iter, array, rtl, NONCONST)
1981 const_rtx x = *iter;
1982 if (REG_P (x) && internal_arg_pointer_based_exp (x, false) != NULL_RTX)
1983 return pc_rtx;
1984 if (MEM_P (x))
1985 iter.skip_subrtxes ();
1988 return NULL_RTX;
1991 /* Return true if and only if SIZE storage units (usually bytes)
1992 starting from address ADDR overlap with already clobbered argument
1993 area. This function is used to determine if we should give up a
1994 sibcall. */
1996 static bool
1997 mem_overlaps_already_clobbered_arg_p (rtx addr, unsigned HOST_WIDE_INT size)
1999 HOST_WIDE_INT i;
2000 rtx val;
2002 if (bitmap_empty_p (stored_args_map))
2003 return false;
2004 val = internal_arg_pointer_based_exp (addr, true);
2005 if (val == NULL_RTX)
2006 return false;
2007 else if (val == pc_rtx)
2008 return true;
2009 else
2010 i = INTVAL (val);
2012 if (STACK_GROWS_DOWNWARD)
2013 i -= crtl->args.pretend_args_size;
2014 else
2015 i += crtl->args.pretend_args_size;
2018 if (ARGS_GROW_DOWNWARD)
2019 i = -i - size;
2021 if (size > 0)
2023 unsigned HOST_WIDE_INT k;
2025 for (k = 0; k < size; k++)
2026 if (i + k < SBITMAP_SIZE (stored_args_map)
2027 && bitmap_bit_p (stored_args_map, i + k))
2028 return true;
2031 return false;
2034 /* Do the register loads required for any wholly-register parms or any
2035 parms which are passed both on the stack and in a register. Their
2036 expressions were already evaluated.
2038 Mark all register-parms as living through the call, putting these USE
2039 insns in the CALL_INSN_FUNCTION_USAGE field.
2041 When IS_SIBCALL, perform the check_sibcall_argument_overlap
2042 checking, setting *SIBCALL_FAILURE if appropriate. */
2044 static void
2045 load_register_parameters (struct arg_data *args, int num_actuals,
2046 rtx *call_fusage, int flags, int is_sibcall,
2047 int *sibcall_failure)
2049 int i, j;
2051 for (i = 0; i < num_actuals; i++)
2053 rtx reg = ((flags & ECF_SIBCALL)
2054 ? args[i].tail_call_reg : args[i].reg);
2055 if (reg)
2057 int partial = args[i].partial;
2058 int nregs;
2059 int size = 0;
2060 rtx_insn *before_arg = get_last_insn ();
2061 /* Set non-negative if we must move a word at a time, even if
2062 just one word (e.g, partial == 4 && mode == DFmode). Set
2063 to -1 if we just use a normal move insn. This value can be
2064 zero if the argument is a zero size structure. */
2065 nregs = -1;
2066 if (GET_CODE (reg) == PARALLEL)
2068 else if (partial)
2070 gcc_assert (partial % UNITS_PER_WORD == 0);
2071 nregs = partial / UNITS_PER_WORD;
2073 else if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode)
2075 size = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
2076 nregs = (size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
2078 else
2079 size = GET_MODE_SIZE (args[i].mode);
2081 /* Handle calls that pass values in multiple non-contiguous
2082 locations. The Irix 6 ABI has examples of this. */
2084 if (GET_CODE (reg) == PARALLEL)
2085 emit_group_move (reg, args[i].parallel_value);
2087 /* If simple case, just do move. If normal partial, store_one_arg
2088 has already loaded the register for us. In all other cases,
2089 load the register(s) from memory. */
2091 else if (nregs == -1)
2093 emit_move_insn (reg, args[i].value);
2094 #ifdef BLOCK_REG_PADDING
2095 /* Handle case where we have a value that needs shifting
2096 up to the msb. eg. a QImode value and we're padding
2097 upward on a BYTES_BIG_ENDIAN machine. */
2098 if (size < UNITS_PER_WORD
2099 && (args[i].locate.where_pad
2100 == (BYTES_BIG_ENDIAN ? upward : downward)))
2102 rtx x;
2103 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2105 /* Assigning REG here rather than a temp makes CALL_FUSAGE
2106 report the whole reg as used. Strictly speaking, the
2107 call only uses SIZE bytes at the msb end, but it doesn't
2108 seem worth generating rtl to say that. */
2109 reg = gen_rtx_REG (word_mode, REGNO (reg));
2110 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
2111 if (x != reg)
2112 emit_move_insn (reg, x);
2114 #endif
2117 /* If we have pre-computed the values to put in the registers in
2118 the case of non-aligned structures, copy them in now. */
2120 else if (args[i].n_aligned_regs != 0)
2121 for (j = 0; j < args[i].n_aligned_regs; j++)
2122 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
2123 args[i].aligned_regs[j]);
2125 else if (partial == 0 || args[i].pass_on_stack)
2127 rtx mem = validize_mem (copy_rtx (args[i].value));
2129 /* Check for overlap with already clobbered argument area,
2130 providing that this has non-zero size. */
2131 if (is_sibcall
2132 && size != 0
2133 && (mem_overlaps_already_clobbered_arg_p
2134 (XEXP (args[i].value, 0), size)))
2135 *sibcall_failure = 1;
2137 if (size % UNITS_PER_WORD == 0
2138 || MEM_ALIGN (mem) % BITS_PER_WORD == 0)
2139 move_block_to_reg (REGNO (reg), mem, nregs, args[i].mode);
2140 else
2142 if (nregs > 1)
2143 move_block_to_reg (REGNO (reg), mem, nregs - 1,
2144 args[i].mode);
2145 rtx dest = gen_rtx_REG (word_mode, REGNO (reg) + nregs - 1);
2146 unsigned int bitoff = (nregs - 1) * BITS_PER_WORD;
2147 unsigned int bitsize = size * BITS_PER_UNIT - bitoff;
2148 rtx x = extract_bit_field (mem, bitsize, bitoff, 1, dest,
2149 word_mode, word_mode, false);
2150 if (BYTES_BIG_ENDIAN)
2151 x = expand_shift (LSHIFT_EXPR, word_mode, x,
2152 BITS_PER_WORD - bitsize, dest, 1);
2153 if (x != dest)
2154 emit_move_insn (dest, x);
2157 /* Handle a BLKmode that needs shifting. */
2158 if (nregs == 1 && size < UNITS_PER_WORD
2159 #ifdef BLOCK_REG_PADDING
2160 && args[i].locate.where_pad == downward
2161 #else
2162 && BYTES_BIG_ENDIAN
2163 #endif
2166 rtx dest = gen_rtx_REG (word_mode, REGNO (reg));
2167 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2168 enum tree_code dir = (BYTES_BIG_ENDIAN
2169 ? RSHIFT_EXPR : LSHIFT_EXPR);
2170 rtx x;
2172 x = expand_shift (dir, word_mode, dest, shift, dest, 1);
2173 if (x != dest)
2174 emit_move_insn (dest, x);
2178 /* When a parameter is a block, and perhaps in other cases, it is
2179 possible that it did a load from an argument slot that was
2180 already clobbered. */
2181 if (is_sibcall
2182 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
2183 *sibcall_failure = 1;
2185 /* Handle calls that pass values in multiple non-contiguous
2186 locations. The Irix 6 ABI has examples of this. */
2187 if (GET_CODE (reg) == PARALLEL)
2188 use_group_regs (call_fusage, reg);
2189 else if (nregs == -1)
2190 use_reg_mode (call_fusage, reg,
2191 TYPE_MODE (TREE_TYPE (args[i].tree_value)));
2192 else if (nregs > 0)
2193 use_regs (call_fusage, REGNO (reg), nregs);
2198 /* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
2199 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
2200 bytes, then we would need to push some additional bytes to pad the
2201 arguments. So, we compute an adjust to the stack pointer for an
2202 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
2203 bytes. Then, when the arguments are pushed the stack will be perfectly
2204 aligned. ARGS_SIZE->CONSTANT is set to the number of bytes that should
2205 be popped after the call. Returns the adjustment. */
2207 static int
2208 combine_pending_stack_adjustment_and_call (int unadjusted_args_size,
2209 struct args_size *args_size,
2210 unsigned int preferred_unit_stack_boundary)
2212 /* The number of bytes to pop so that the stack will be
2213 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
2214 HOST_WIDE_INT adjustment;
2215 /* The alignment of the stack after the arguments are pushed, if we
2216 just pushed the arguments without adjust the stack here. */
2217 unsigned HOST_WIDE_INT unadjusted_alignment;
2219 unadjusted_alignment
2220 = ((stack_pointer_delta + unadjusted_args_size)
2221 % preferred_unit_stack_boundary);
2223 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
2224 as possible -- leaving just enough left to cancel out the
2225 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
2226 PENDING_STACK_ADJUST is non-negative, and congruent to
2227 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
2229 /* Begin by trying to pop all the bytes. */
2230 unadjusted_alignment
2231 = (unadjusted_alignment
2232 - (pending_stack_adjust % preferred_unit_stack_boundary));
2233 adjustment = pending_stack_adjust;
2234 /* Push enough additional bytes that the stack will be aligned
2235 after the arguments are pushed. */
2236 if (preferred_unit_stack_boundary > 1)
2238 if (unadjusted_alignment > 0)
2239 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
2240 else
2241 adjustment += unadjusted_alignment;
2244 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
2245 bytes after the call. The right number is the entire
2246 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
2247 by the arguments in the first place. */
2248 args_size->constant
2249 = pending_stack_adjust - adjustment + unadjusted_args_size;
2251 return adjustment;
2254 /* Scan X expression if it does not dereference any argument slots
2255 we already clobbered by tail call arguments (as noted in stored_args_map
2256 bitmap).
2257 Return nonzero if X expression dereferences such argument slots,
2258 zero otherwise. */
2260 static int
2261 check_sibcall_argument_overlap_1 (rtx x)
2263 RTX_CODE code;
2264 int i, j;
2265 const char *fmt;
2267 if (x == NULL_RTX)
2268 return 0;
2270 code = GET_CODE (x);
2272 /* We need not check the operands of the CALL expression itself. */
2273 if (code == CALL)
2274 return 0;
2276 if (code == MEM)
2277 return mem_overlaps_already_clobbered_arg_p (XEXP (x, 0),
2278 GET_MODE_SIZE (GET_MODE (x)));
2280 /* Scan all subexpressions. */
2281 fmt = GET_RTX_FORMAT (code);
2282 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2284 if (*fmt == 'e')
2286 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
2287 return 1;
2289 else if (*fmt == 'E')
2291 for (j = 0; j < XVECLEN (x, i); j++)
2292 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
2293 return 1;
2296 return 0;
2299 /* Scan sequence after INSN if it does not dereference any argument slots
2300 we already clobbered by tail call arguments (as noted in stored_args_map
2301 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
2302 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
2303 should be 0). Return nonzero if sequence after INSN dereferences such argument
2304 slots, zero otherwise. */
2306 static int
2307 check_sibcall_argument_overlap (rtx_insn *insn, struct arg_data *arg,
2308 int mark_stored_args_map)
2310 int low, high;
2312 if (insn == NULL_RTX)
2313 insn = get_insns ();
2314 else
2315 insn = NEXT_INSN (insn);
2317 for (; insn; insn = NEXT_INSN (insn))
2318 if (INSN_P (insn)
2319 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
2320 break;
2322 if (mark_stored_args_map)
2324 if (ARGS_GROW_DOWNWARD)
2325 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
2326 else
2327 low = arg->locate.slot_offset.constant;
2329 for (high = low + arg->locate.size.constant; low < high; low++)
2330 bitmap_set_bit (stored_args_map, low);
2332 return insn != NULL_RTX;
2335 /* Given that a function returns a value of mode MODE at the most
2336 significant end of hard register VALUE, shift VALUE left or right
2337 as specified by LEFT_P. Return true if some action was needed. */
2339 bool
2340 shift_return_value (machine_mode mode, bool left_p, rtx value)
2342 HOST_WIDE_INT shift;
2344 gcc_assert (REG_P (value) && HARD_REGISTER_P (value));
2345 shift = GET_MODE_BITSIZE (GET_MODE (value)) - GET_MODE_BITSIZE (mode);
2346 if (shift == 0)
2347 return false;
2349 /* Use ashr rather than lshr for right shifts. This is for the benefit
2350 of the MIPS port, which requires SImode values to be sign-extended
2351 when stored in 64-bit registers. */
2352 if (!force_expand_binop (GET_MODE (value), left_p ? ashl_optab : ashr_optab,
2353 value, GEN_INT (shift), value, 1, OPTAB_WIDEN))
2354 gcc_unreachable ();
2355 return true;
2358 /* If X is a likely-spilled register value, copy it to a pseudo
2359 register and return that register. Return X otherwise. */
2361 static rtx
2362 avoid_likely_spilled_reg (rtx x)
2364 rtx new_rtx;
2366 if (REG_P (x)
2367 && HARD_REGISTER_P (x)
2368 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (x))))
2370 /* Make sure that we generate a REG rather than a CONCAT.
2371 Moves into CONCATs can need nontrivial instructions,
2372 and the whole point of this function is to avoid
2373 using the hard register directly in such a situation. */
2374 generating_concat_p = 0;
2375 new_rtx = gen_reg_rtx (GET_MODE (x));
2376 generating_concat_p = 1;
2377 emit_move_insn (new_rtx, x);
2378 return new_rtx;
2380 return x;
2383 /* Helper function for expand_call.
2384 Return false is EXP is not implementable as a sibling call. */
2386 static bool
2387 can_implement_as_sibling_call_p (tree exp,
2388 rtx structure_value_addr,
2389 tree funtype,
2390 int reg_parm_stack_space ATTRIBUTE_UNUSED,
2391 tree fndecl,
2392 int flags,
2393 tree addr,
2394 const args_size &args_size)
2396 if (!targetm.have_sibcall_epilogue ())
2398 maybe_complain_about_tail_call
2399 (exp,
2400 "machine description does not have"
2401 " a sibcall_epilogue instruction pattern");
2402 return false;
2405 /* Doing sibling call optimization needs some work, since
2406 structure_value_addr can be allocated on the stack.
2407 It does not seem worth the effort since few optimizable
2408 sibling calls will return a structure. */
2409 if (structure_value_addr != NULL_RTX)
2411 maybe_complain_about_tail_call (exp, "callee returns a structure");
2412 return false;
2415 #ifdef REG_PARM_STACK_SPACE
2416 /* If outgoing reg parm stack space changes, we can not do sibcall. */
2417 if (OUTGOING_REG_PARM_STACK_SPACE (funtype)
2418 != OUTGOING_REG_PARM_STACK_SPACE (TREE_TYPE (current_function_decl))
2419 || (reg_parm_stack_space != REG_PARM_STACK_SPACE (current_function_decl)))
2421 maybe_complain_about_tail_call (exp,
2422 "inconsistent size of stack space"
2423 " allocated for arguments which are"
2424 " passed in registers");
2425 return false;
2427 #endif
2429 /* Check whether the target is able to optimize the call
2430 into a sibcall. */
2431 if (!targetm.function_ok_for_sibcall (fndecl, exp))
2433 maybe_complain_about_tail_call (exp,
2434 "target is not able to optimize the"
2435 " call into a sibling call");
2436 return false;
2439 /* Functions that do not return exactly once may not be sibcall
2440 optimized. */
2441 if (flags & ECF_RETURNS_TWICE)
2443 maybe_complain_about_tail_call (exp, "callee returns twice");
2444 return false;
2446 if (flags & ECF_NORETURN)
2448 maybe_complain_about_tail_call (exp, "callee does not return");
2449 return false;
2452 if (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr))))
2454 maybe_complain_about_tail_call (exp, "volatile function type");
2455 return false;
2458 /* If the called function is nested in the current one, it might access
2459 some of the caller's arguments, but could clobber them beforehand if
2460 the argument areas are shared. */
2461 if (fndecl && decl_function_context (fndecl) == current_function_decl)
2463 maybe_complain_about_tail_call (exp, "nested function");
2464 return false;
2467 /* If this function requires more stack slots than the current
2468 function, we cannot change it into a sibling call.
2469 crtl->args.pretend_args_size is not part of the
2470 stack allocated by our caller. */
2471 if (args_size.constant > (crtl->args.size - crtl->args.pretend_args_size))
2473 maybe_complain_about_tail_call (exp,
2474 "callee required more stack slots"
2475 " than the caller");
2476 return false;
2479 /* If the callee pops its own arguments, then it must pop exactly
2480 the same number of arguments as the current function. */
2481 if (targetm.calls.return_pops_args (fndecl, funtype, args_size.constant)
2482 != targetm.calls.return_pops_args (current_function_decl,
2483 TREE_TYPE (current_function_decl),
2484 crtl->args.size))
2486 maybe_complain_about_tail_call (exp,
2487 "inconsistent number of"
2488 " popped arguments");
2489 return false;
2492 if (!lang_hooks.decls.ok_for_sibcall (fndecl))
2494 maybe_complain_about_tail_call (exp, "frontend does not support"
2495 " sibling call");
2496 return false;
2499 /* All checks passed. */
2500 return true;
2503 /* Generate all the code for a CALL_EXPR exp
2504 and return an rtx for its value.
2505 Store the value in TARGET (specified as an rtx) if convenient.
2506 If the value is stored in TARGET then TARGET is returned.
2507 If IGNORE is nonzero, then we ignore the value of the function call. */
2510 expand_call (tree exp, rtx target, int ignore)
2512 /* Nonzero if we are currently expanding a call. */
2513 static int currently_expanding_call = 0;
2515 /* RTX for the function to be called. */
2516 rtx funexp;
2517 /* Sequence of insns to perform a normal "call". */
2518 rtx_insn *normal_call_insns = NULL;
2519 /* Sequence of insns to perform a tail "call". */
2520 rtx_insn *tail_call_insns = NULL;
2521 /* Data type of the function. */
2522 tree funtype;
2523 tree type_arg_types;
2524 tree rettype;
2525 /* Declaration of the function being called,
2526 or 0 if the function is computed (not known by name). */
2527 tree fndecl = 0;
2528 /* The type of the function being called. */
2529 tree fntype;
2530 bool try_tail_call = CALL_EXPR_TAILCALL (exp);
2531 bool must_tail_call = CALL_EXPR_MUST_TAIL_CALL (exp);
2532 int pass;
2534 /* Register in which non-BLKmode value will be returned,
2535 or 0 if no value or if value is BLKmode. */
2536 rtx valreg;
2537 /* Register(s) in which bounds are returned. */
2538 rtx valbnd = NULL;
2539 /* Address where we should return a BLKmode value;
2540 0 if value not BLKmode. */
2541 rtx structure_value_addr = 0;
2542 /* Nonzero if that address is being passed by treating it as
2543 an extra, implicit first parameter. Otherwise,
2544 it is passed by being copied directly into struct_value_rtx. */
2545 int structure_value_addr_parm = 0;
2546 /* Holds the value of implicit argument for the struct value. */
2547 tree structure_value_addr_value = NULL_TREE;
2548 /* Size of aggregate value wanted, or zero if none wanted
2549 or if we are using the non-reentrant PCC calling convention
2550 or expecting the value in registers. */
2551 HOST_WIDE_INT struct_value_size = 0;
2552 /* Nonzero if called function returns an aggregate in memory PCC style,
2553 by returning the address of where to find it. */
2554 int pcc_struct_value = 0;
2555 rtx struct_value = 0;
2557 /* Number of actual parameters in this call, including struct value addr. */
2558 int num_actuals;
2559 /* Number of named args. Args after this are anonymous ones
2560 and they must all go on the stack. */
2561 int n_named_args;
2562 /* Number of complex actual arguments that need to be split. */
2563 int num_complex_actuals = 0;
2565 /* Vector of information about each argument.
2566 Arguments are numbered in the order they will be pushed,
2567 not the order they are written. */
2568 struct arg_data *args;
2570 /* Total size in bytes of all the stack-parms scanned so far. */
2571 struct args_size args_size;
2572 struct args_size adjusted_args_size;
2573 /* Size of arguments before any adjustments (such as rounding). */
2574 int unadjusted_args_size;
2575 /* Data on reg parms scanned so far. */
2576 CUMULATIVE_ARGS args_so_far_v;
2577 cumulative_args_t args_so_far;
2578 /* Nonzero if a reg parm has been scanned. */
2579 int reg_parm_seen;
2580 /* Nonzero if this is an indirect function call. */
2582 /* Nonzero if we must avoid push-insns in the args for this call.
2583 If stack space is allocated for register parameters, but not by the
2584 caller, then it is preallocated in the fixed part of the stack frame.
2585 So the entire argument block must then be preallocated (i.e., we
2586 ignore PUSH_ROUNDING in that case). */
2588 int must_preallocate = !PUSH_ARGS;
2590 /* Size of the stack reserved for parameter registers. */
2591 int reg_parm_stack_space = 0;
2593 /* Address of space preallocated for stack parms
2594 (on machines that lack push insns), or 0 if space not preallocated. */
2595 rtx argblock = 0;
2597 /* Mask of ECF_ and ERF_ flags. */
2598 int flags = 0;
2599 int return_flags = 0;
2600 #ifdef REG_PARM_STACK_SPACE
2601 /* Define the boundary of the register parm stack space that needs to be
2602 saved, if any. */
2603 int low_to_save, high_to_save;
2604 rtx save_area = 0; /* Place that it is saved */
2605 #endif
2607 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
2608 char *initial_stack_usage_map = stack_usage_map;
2609 char *stack_usage_map_buf = NULL;
2611 int old_stack_allocated;
2613 /* State variables to track stack modifications. */
2614 rtx old_stack_level = 0;
2615 int old_stack_arg_under_construction = 0;
2616 int old_pending_adj = 0;
2617 int old_inhibit_defer_pop = inhibit_defer_pop;
2619 /* Some stack pointer alterations we make are performed via
2620 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
2621 which we then also need to save/restore along the way. */
2622 int old_stack_pointer_delta = 0;
2624 rtx call_fusage;
2625 tree addr = CALL_EXPR_FN (exp);
2626 int i;
2627 /* The alignment of the stack, in bits. */
2628 unsigned HOST_WIDE_INT preferred_stack_boundary;
2629 /* The alignment of the stack, in bytes. */
2630 unsigned HOST_WIDE_INT preferred_unit_stack_boundary;
2631 /* The static chain value to use for this call. */
2632 rtx static_chain_value;
2633 /* See if this is "nothrow" function call. */
2634 if (TREE_NOTHROW (exp))
2635 flags |= ECF_NOTHROW;
2637 /* See if we can find a DECL-node for the actual function, and get the
2638 function attributes (flags) from the function decl or type node. */
2639 fndecl = get_callee_fndecl (exp);
2640 if (fndecl)
2642 fntype = TREE_TYPE (fndecl);
2643 flags |= flags_from_decl_or_type (fndecl);
2644 return_flags |= decl_return_flags (fndecl);
2646 else
2648 fntype = TREE_TYPE (TREE_TYPE (addr));
2649 flags |= flags_from_decl_or_type (fntype);
2651 rettype = TREE_TYPE (exp);
2653 struct_value = targetm.calls.struct_value_rtx (fntype, 0);
2655 /* Warn if this value is an aggregate type,
2656 regardless of which calling convention we are using for it. */
2657 if (AGGREGATE_TYPE_P (rettype))
2658 warning (OPT_Waggregate_return, "function call has aggregate value");
2660 /* If the result of a non looping pure or const function call is
2661 ignored (or void), and none of its arguments are volatile, we can
2662 avoid expanding the call and just evaluate the arguments for
2663 side-effects. */
2664 if ((flags & (ECF_CONST | ECF_PURE))
2665 && (!(flags & ECF_LOOPING_CONST_OR_PURE))
2666 && (ignore || target == const0_rtx
2667 || TYPE_MODE (rettype) == VOIDmode))
2669 bool volatilep = false;
2670 tree arg;
2671 call_expr_arg_iterator iter;
2673 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2674 if (TREE_THIS_VOLATILE (arg))
2676 volatilep = true;
2677 break;
2680 if (! volatilep)
2682 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2683 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
2684 return const0_rtx;
2688 #ifdef REG_PARM_STACK_SPACE
2689 reg_parm_stack_space = REG_PARM_STACK_SPACE (!fndecl ? fntype : fndecl);
2690 #endif
2692 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
2693 && reg_parm_stack_space > 0 && PUSH_ARGS)
2694 must_preallocate = 1;
2696 /* Set up a place to return a structure. */
2698 /* Cater to broken compilers. */
2699 if (aggregate_value_p (exp, fntype))
2701 /* This call returns a big structure. */
2702 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
2704 #ifdef PCC_STATIC_STRUCT_RETURN
2706 pcc_struct_value = 1;
2708 #else /* not PCC_STATIC_STRUCT_RETURN */
2710 struct_value_size = int_size_in_bytes (rettype);
2712 /* Even if it is semantically safe to use the target as the return
2713 slot, it may be not sufficiently aligned for the return type. */
2714 if (CALL_EXPR_RETURN_SLOT_OPT (exp)
2715 && target
2716 && MEM_P (target)
2717 && !(MEM_ALIGN (target) < TYPE_ALIGN (rettype)
2718 && SLOW_UNALIGNED_ACCESS (TYPE_MODE (rettype),
2719 MEM_ALIGN (target))))
2720 structure_value_addr = XEXP (target, 0);
2721 else
2723 /* For variable-sized objects, we must be called with a target
2724 specified. If we were to allocate space on the stack here,
2725 we would have no way of knowing when to free it. */
2726 rtx d = assign_temp (rettype, 1, 1);
2727 structure_value_addr = XEXP (d, 0);
2728 target = 0;
2731 #endif /* not PCC_STATIC_STRUCT_RETURN */
2734 /* Figure out the amount to which the stack should be aligned. */
2735 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
2736 if (fndecl)
2738 struct cgraph_rtl_info *i = cgraph_node::rtl_info (fndecl);
2739 /* Without automatic stack alignment, we can't increase preferred
2740 stack boundary. With automatic stack alignment, it is
2741 unnecessary since unless we can guarantee that all callers will
2742 align the outgoing stack properly, callee has to align its
2743 stack anyway. */
2744 if (i
2745 && i->preferred_incoming_stack_boundary
2746 && i->preferred_incoming_stack_boundary < preferred_stack_boundary)
2747 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
2750 /* Operand 0 is a pointer-to-function; get the type of the function. */
2751 funtype = TREE_TYPE (addr);
2752 gcc_assert (POINTER_TYPE_P (funtype));
2753 funtype = TREE_TYPE (funtype);
2755 /* Count whether there are actual complex arguments that need to be split
2756 into their real and imaginary parts. Munge the type_arg_types
2757 appropriately here as well. */
2758 if (targetm.calls.split_complex_arg)
2760 call_expr_arg_iterator iter;
2761 tree arg;
2762 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2764 tree type = TREE_TYPE (arg);
2765 if (type && TREE_CODE (type) == COMPLEX_TYPE
2766 && targetm.calls.split_complex_arg (type))
2767 num_complex_actuals++;
2769 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
2771 else
2772 type_arg_types = TYPE_ARG_TYPES (funtype);
2774 if (flags & ECF_MAY_BE_ALLOCA)
2775 cfun->calls_alloca = 1;
2777 /* If struct_value_rtx is 0, it means pass the address
2778 as if it were an extra parameter. Put the argument expression
2779 in structure_value_addr_value. */
2780 if (structure_value_addr && struct_value == 0)
2782 /* If structure_value_addr is a REG other than
2783 virtual_outgoing_args_rtx, we can use always use it. If it
2784 is not a REG, we must always copy it into a register.
2785 If it is virtual_outgoing_args_rtx, we must copy it to another
2786 register in some cases. */
2787 rtx temp = (!REG_P (structure_value_addr)
2788 || (ACCUMULATE_OUTGOING_ARGS
2789 && stack_arg_under_construction
2790 && structure_value_addr == virtual_outgoing_args_rtx)
2791 ? copy_addr_to_reg (convert_memory_address
2792 (Pmode, structure_value_addr))
2793 : structure_value_addr);
2795 structure_value_addr_value =
2796 make_tree (build_pointer_type (TREE_TYPE (funtype)), temp);
2797 structure_value_addr_parm = CALL_WITH_BOUNDS_P (exp) ? 2 : 1;
2800 /* Count the arguments and set NUM_ACTUALS. */
2801 num_actuals =
2802 call_expr_nargs (exp) + num_complex_actuals + structure_value_addr_parm;
2804 /* Compute number of named args.
2805 First, do a raw count of the args for INIT_CUMULATIVE_ARGS. */
2807 if (type_arg_types != 0)
2808 n_named_args
2809 = (list_length (type_arg_types)
2810 /* Count the struct value address, if it is passed as a parm. */
2811 + structure_value_addr_parm);
2812 else
2813 /* If we know nothing, treat all args as named. */
2814 n_named_args = num_actuals;
2816 /* Start updating where the next arg would go.
2818 On some machines (such as the PA) indirect calls have a different
2819 calling convention than normal calls. The fourth argument in
2820 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
2821 or not. */
2822 INIT_CUMULATIVE_ARGS (args_so_far_v, funtype, NULL_RTX, fndecl, n_named_args);
2823 args_so_far = pack_cumulative_args (&args_so_far_v);
2825 /* Now possibly adjust the number of named args.
2826 Normally, don't include the last named arg if anonymous args follow.
2827 We do include the last named arg if
2828 targetm.calls.strict_argument_naming() returns nonzero.
2829 (If no anonymous args follow, the result of list_length is actually
2830 one too large. This is harmless.)
2832 If targetm.calls.pretend_outgoing_varargs_named() returns
2833 nonzero, and targetm.calls.strict_argument_naming() returns zero,
2834 this machine will be able to place unnamed args that were passed
2835 in registers into the stack. So treat all args as named. This
2836 allows the insns emitting for a specific argument list to be
2837 independent of the function declaration.
2839 If targetm.calls.pretend_outgoing_varargs_named() returns zero,
2840 we do not have any reliable way to pass unnamed args in
2841 registers, so we must force them into memory. */
2843 if (type_arg_types != 0
2844 && targetm.calls.strict_argument_naming (args_so_far))
2846 else if (type_arg_types != 0
2847 && ! targetm.calls.pretend_outgoing_varargs_named (args_so_far))
2848 /* Don't include the last named arg. */
2849 --n_named_args;
2850 else
2851 /* Treat all args as named. */
2852 n_named_args = num_actuals;
2854 /* Make a vector to hold all the information about each arg. */
2855 args = XALLOCAVEC (struct arg_data, num_actuals);
2856 memset (args, 0, num_actuals * sizeof (struct arg_data));
2858 /* Build up entries in the ARGS array, compute the size of the
2859 arguments into ARGS_SIZE, etc. */
2860 initialize_argument_information (num_actuals, args, &args_size,
2861 n_named_args, exp,
2862 structure_value_addr_value, fndecl, fntype,
2863 args_so_far, reg_parm_stack_space,
2864 &old_stack_level, &old_pending_adj,
2865 &must_preallocate, &flags,
2866 &try_tail_call, CALL_FROM_THUNK_P (exp));
2868 if (args_size.var)
2869 must_preallocate = 1;
2871 /* Now make final decision about preallocating stack space. */
2872 must_preallocate = finalize_must_preallocate (must_preallocate,
2873 num_actuals, args,
2874 &args_size);
2876 /* If the structure value address will reference the stack pointer, we
2877 must stabilize it. We don't need to do this if we know that we are
2878 not going to adjust the stack pointer in processing this call. */
2880 if (structure_value_addr
2881 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
2882 || reg_mentioned_p (virtual_outgoing_args_rtx,
2883 structure_value_addr))
2884 && (args_size.var
2885 || (!ACCUMULATE_OUTGOING_ARGS && args_size.constant)))
2886 structure_value_addr = copy_to_reg (structure_value_addr);
2888 /* Tail calls can make things harder to debug, and we've traditionally
2889 pushed these optimizations into -O2. Don't try if we're already
2890 expanding a call, as that means we're an argument. Don't try if
2891 there's cleanups, as we know there's code to follow the call. */
2893 if (currently_expanding_call++ != 0
2894 || !flag_optimize_sibling_calls
2895 || args_size.var
2896 || dbg_cnt (tail_call) == false)
2897 try_tail_call = 0;
2899 /* If the user has marked the function as requiring tail-call
2900 optimization, attempt it. */
2901 if (must_tail_call)
2902 try_tail_call = 1;
2904 /* Rest of purposes for tail call optimizations to fail. */
2905 if (try_tail_call)
2906 try_tail_call = can_implement_as_sibling_call_p (exp,
2907 structure_value_addr,
2908 funtype,
2909 reg_parm_stack_space,
2910 fndecl,
2911 flags, addr, args_size);
2913 /* Check if caller and callee disagree in promotion of function
2914 return value. */
2915 if (try_tail_call)
2917 machine_mode caller_mode, caller_promoted_mode;
2918 machine_mode callee_mode, callee_promoted_mode;
2919 int caller_unsignedp, callee_unsignedp;
2920 tree caller_res = DECL_RESULT (current_function_decl);
2922 caller_unsignedp = TYPE_UNSIGNED (TREE_TYPE (caller_res));
2923 caller_mode = DECL_MODE (caller_res);
2924 callee_unsignedp = TYPE_UNSIGNED (TREE_TYPE (funtype));
2925 callee_mode = TYPE_MODE (TREE_TYPE (funtype));
2926 caller_promoted_mode
2927 = promote_function_mode (TREE_TYPE (caller_res), caller_mode,
2928 &caller_unsignedp,
2929 TREE_TYPE (current_function_decl), 1);
2930 callee_promoted_mode
2931 = promote_function_mode (TREE_TYPE (funtype), callee_mode,
2932 &callee_unsignedp,
2933 funtype, 1);
2934 if (caller_mode != VOIDmode
2935 && (caller_promoted_mode != callee_promoted_mode
2936 || ((caller_mode != caller_promoted_mode
2937 || callee_mode != callee_promoted_mode)
2938 && (caller_unsignedp != callee_unsignedp
2939 || GET_MODE_BITSIZE (caller_mode)
2940 < GET_MODE_BITSIZE (callee_mode)))))
2942 try_tail_call = 0;
2943 maybe_complain_about_tail_call (exp,
2944 "caller and callee disagree in"
2945 " promotion of function"
2946 " return value");
2950 /* Ensure current function's preferred stack boundary is at least
2951 what we need. Stack alignment may also increase preferred stack
2952 boundary. */
2953 if (crtl->preferred_stack_boundary < preferred_stack_boundary)
2954 crtl->preferred_stack_boundary = preferred_stack_boundary;
2955 else
2956 preferred_stack_boundary = crtl->preferred_stack_boundary;
2958 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
2960 /* We want to make two insn chains; one for a sibling call, the other
2961 for a normal call. We will select one of the two chains after
2962 initial RTL generation is complete. */
2963 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
2965 int sibcall_failure = 0;
2966 /* We want to emit any pending stack adjustments before the tail
2967 recursion "call". That way we know any adjustment after the tail
2968 recursion call can be ignored if we indeed use the tail
2969 call expansion. */
2970 saved_pending_stack_adjust save;
2971 rtx_insn *insns, *before_call, *after_args;
2972 rtx next_arg_reg;
2974 if (pass == 0)
2976 /* State variables we need to save and restore between
2977 iterations. */
2978 save_pending_stack_adjust (&save);
2980 if (pass)
2981 flags &= ~ECF_SIBCALL;
2982 else
2983 flags |= ECF_SIBCALL;
2985 /* Other state variables that we must reinitialize each time
2986 through the loop (that are not initialized by the loop itself). */
2987 argblock = 0;
2988 call_fusage = 0;
2990 /* Start a new sequence for the normal call case.
2992 From this point on, if the sibling call fails, we want to set
2993 sibcall_failure instead of continuing the loop. */
2994 start_sequence ();
2996 /* Don't let pending stack adjusts add up to too much.
2997 Also, do all pending adjustments now if there is any chance
2998 this might be a call to alloca or if we are expanding a sibling
2999 call sequence.
3000 Also do the adjustments before a throwing call, otherwise
3001 exception handling can fail; PR 19225. */
3002 if (pending_stack_adjust >= 32
3003 || (pending_stack_adjust > 0
3004 && (flags & ECF_MAY_BE_ALLOCA))
3005 || (pending_stack_adjust > 0
3006 && flag_exceptions && !(flags & ECF_NOTHROW))
3007 || pass == 0)
3008 do_pending_stack_adjust ();
3010 /* Precompute any arguments as needed. */
3011 if (pass)
3012 precompute_arguments (num_actuals, args);
3014 /* Now we are about to start emitting insns that can be deleted
3015 if a libcall is deleted. */
3016 if (pass && (flags & ECF_MALLOC))
3017 start_sequence ();
3019 if (pass == 0 && crtl->stack_protect_guard)
3020 stack_protect_epilogue ();
3022 adjusted_args_size = args_size;
3023 /* Compute the actual size of the argument block required. The variable
3024 and constant sizes must be combined, the size may have to be rounded,
3025 and there may be a minimum required size. When generating a sibcall
3026 pattern, do not round up, since we'll be re-using whatever space our
3027 caller provided. */
3028 unadjusted_args_size
3029 = compute_argument_block_size (reg_parm_stack_space,
3030 &adjusted_args_size,
3031 fndecl, fntype,
3032 (pass == 0 ? 0
3033 : preferred_stack_boundary));
3035 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
3037 /* The argument block when performing a sibling call is the
3038 incoming argument block. */
3039 if (pass == 0)
3041 argblock = crtl->args.internal_arg_pointer;
3042 if (STACK_GROWS_DOWNWARD)
3043 argblock
3044 = plus_constant (Pmode, argblock, crtl->args.pretend_args_size);
3045 else
3046 argblock
3047 = plus_constant (Pmode, argblock, -crtl->args.pretend_args_size);
3049 stored_args_map = sbitmap_alloc (args_size.constant);
3050 bitmap_clear (stored_args_map);
3053 /* If we have no actual push instructions, or shouldn't use them,
3054 make space for all args right now. */
3055 else if (adjusted_args_size.var != 0)
3057 if (old_stack_level == 0)
3059 emit_stack_save (SAVE_BLOCK, &old_stack_level);
3060 old_stack_pointer_delta = stack_pointer_delta;
3061 old_pending_adj = pending_stack_adjust;
3062 pending_stack_adjust = 0;
3063 /* stack_arg_under_construction says whether a stack arg is
3064 being constructed at the old stack level. Pushing the stack
3065 gets a clean outgoing argument block. */
3066 old_stack_arg_under_construction = stack_arg_under_construction;
3067 stack_arg_under_construction = 0;
3069 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
3070 if (flag_stack_usage_info)
3071 current_function_has_unbounded_dynamic_stack_size = 1;
3073 else
3075 /* Note that we must go through the motions of allocating an argument
3076 block even if the size is zero because we may be storing args
3077 in the area reserved for register arguments, which may be part of
3078 the stack frame. */
3080 int needed = adjusted_args_size.constant;
3082 /* Store the maximum argument space used. It will be pushed by
3083 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
3084 checking). */
3086 if (needed > crtl->outgoing_args_size)
3087 crtl->outgoing_args_size = needed;
3089 if (must_preallocate)
3091 if (ACCUMULATE_OUTGOING_ARGS)
3093 /* Since the stack pointer will never be pushed, it is
3094 possible for the evaluation of a parm to clobber
3095 something we have already written to the stack.
3096 Since most function calls on RISC machines do not use
3097 the stack, this is uncommon, but must work correctly.
3099 Therefore, we save any area of the stack that was already
3100 written and that we are using. Here we set up to do this
3101 by making a new stack usage map from the old one. The
3102 actual save will be done by store_one_arg.
3104 Another approach might be to try to reorder the argument
3105 evaluations to avoid this conflicting stack usage. */
3107 /* Since we will be writing into the entire argument area,
3108 the map must be allocated for its entire size, not just
3109 the part that is the responsibility of the caller. */
3110 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
3111 needed += reg_parm_stack_space;
3113 if (ARGS_GROW_DOWNWARD)
3114 highest_outgoing_arg_in_use
3115 = MAX (initial_highest_arg_in_use, needed + 1);
3116 else
3117 highest_outgoing_arg_in_use
3118 = MAX (initial_highest_arg_in_use, needed);
3120 free (stack_usage_map_buf);
3121 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
3122 stack_usage_map = stack_usage_map_buf;
3124 if (initial_highest_arg_in_use)
3125 memcpy (stack_usage_map, initial_stack_usage_map,
3126 initial_highest_arg_in_use);
3128 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3129 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
3130 (highest_outgoing_arg_in_use
3131 - initial_highest_arg_in_use));
3132 needed = 0;
3134 /* The address of the outgoing argument list must not be
3135 copied to a register here, because argblock would be left
3136 pointing to the wrong place after the call to
3137 allocate_dynamic_stack_space below. */
3139 argblock = virtual_outgoing_args_rtx;
3141 else
3143 if (inhibit_defer_pop == 0)
3145 /* Try to reuse some or all of the pending_stack_adjust
3146 to get this space. */
3147 needed
3148 = (combine_pending_stack_adjustment_and_call
3149 (unadjusted_args_size,
3150 &adjusted_args_size,
3151 preferred_unit_stack_boundary));
3153 /* combine_pending_stack_adjustment_and_call computes
3154 an adjustment before the arguments are allocated.
3155 Account for them and see whether or not the stack
3156 needs to go up or down. */
3157 needed = unadjusted_args_size - needed;
3159 if (needed < 0)
3161 /* We're releasing stack space. */
3162 /* ??? We can avoid any adjustment at all if we're
3163 already aligned. FIXME. */
3164 pending_stack_adjust = -needed;
3165 do_pending_stack_adjust ();
3166 needed = 0;
3168 else
3169 /* We need to allocate space. We'll do that in
3170 push_block below. */
3171 pending_stack_adjust = 0;
3174 /* Special case this because overhead of `push_block' in
3175 this case is non-trivial. */
3176 if (needed == 0)
3177 argblock = virtual_outgoing_args_rtx;
3178 else
3180 argblock = push_block (GEN_INT (needed), 0, 0);
3181 if (ARGS_GROW_DOWNWARD)
3182 argblock = plus_constant (Pmode, argblock, needed);
3185 /* We only really need to call `copy_to_reg' in the case
3186 where push insns are going to be used to pass ARGBLOCK
3187 to a function call in ARGS. In that case, the stack
3188 pointer changes value from the allocation point to the
3189 call point, and hence the value of
3190 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
3191 as well always do it. */
3192 argblock = copy_to_reg (argblock);
3197 if (ACCUMULATE_OUTGOING_ARGS)
3199 /* The save/restore code in store_one_arg handles all
3200 cases except one: a constructor call (including a C
3201 function returning a BLKmode struct) to initialize
3202 an argument. */
3203 if (stack_arg_under_construction)
3205 rtx push_size
3206 = GEN_INT (adjusted_args_size.constant
3207 + (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype
3208 : TREE_TYPE (fndecl))) ? 0
3209 : reg_parm_stack_space));
3210 if (old_stack_level == 0)
3212 emit_stack_save (SAVE_BLOCK, &old_stack_level);
3213 old_stack_pointer_delta = stack_pointer_delta;
3214 old_pending_adj = pending_stack_adjust;
3215 pending_stack_adjust = 0;
3216 /* stack_arg_under_construction says whether a stack
3217 arg is being constructed at the old stack level.
3218 Pushing the stack gets a clean outgoing argument
3219 block. */
3220 old_stack_arg_under_construction
3221 = stack_arg_under_construction;
3222 stack_arg_under_construction = 0;
3223 /* Make a new map for the new argument list. */
3224 free (stack_usage_map_buf);
3225 stack_usage_map_buf = XCNEWVEC (char, highest_outgoing_arg_in_use);
3226 stack_usage_map = stack_usage_map_buf;
3227 highest_outgoing_arg_in_use = 0;
3229 /* We can pass TRUE as the 4th argument because we just
3230 saved the stack pointer and will restore it right after
3231 the call. */
3232 allocate_dynamic_stack_space (push_size, 0,
3233 BIGGEST_ALIGNMENT, true);
3236 /* If argument evaluation might modify the stack pointer,
3237 copy the address of the argument list to a register. */
3238 for (i = 0; i < num_actuals; i++)
3239 if (args[i].pass_on_stack)
3241 argblock = copy_addr_to_reg (argblock);
3242 break;
3246 compute_argument_addresses (args, argblock, num_actuals);
3248 /* Stack is properly aligned, pops can't safely be deferred during
3249 the evaluation of the arguments. */
3250 NO_DEFER_POP;
3252 /* Precompute all register parameters. It isn't safe to compute
3253 anything once we have started filling any specific hard regs.
3254 TLS symbols sometimes need a call to resolve. Precompute
3255 register parameters before any stack pointer manipulation
3256 to avoid unaligned stack in the called function. */
3257 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
3259 OK_DEFER_POP;
3261 /* Perform stack alignment before the first push (the last arg). */
3262 if (argblock == 0
3263 && adjusted_args_size.constant > reg_parm_stack_space
3264 && adjusted_args_size.constant != unadjusted_args_size)
3266 /* When the stack adjustment is pending, we get better code
3267 by combining the adjustments. */
3268 if (pending_stack_adjust
3269 && ! inhibit_defer_pop)
3271 pending_stack_adjust
3272 = (combine_pending_stack_adjustment_and_call
3273 (unadjusted_args_size,
3274 &adjusted_args_size,
3275 preferred_unit_stack_boundary));
3276 do_pending_stack_adjust ();
3278 else if (argblock == 0)
3279 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
3280 - unadjusted_args_size));
3282 /* Now that the stack is properly aligned, pops can't safely
3283 be deferred during the evaluation of the arguments. */
3284 NO_DEFER_POP;
3286 /* Record the maximum pushed stack space size. We need to delay
3287 doing it this far to take into account the optimization done
3288 by combine_pending_stack_adjustment_and_call. */
3289 if (flag_stack_usage_info
3290 && !ACCUMULATE_OUTGOING_ARGS
3291 && pass
3292 && adjusted_args_size.var == 0)
3294 int pushed = adjusted_args_size.constant + pending_stack_adjust;
3295 if (pushed > current_function_pushed_stack_size)
3296 current_function_pushed_stack_size = pushed;
3299 funexp = rtx_for_function_call (fndecl, addr);
3301 if (CALL_EXPR_STATIC_CHAIN (exp))
3302 static_chain_value = expand_normal (CALL_EXPR_STATIC_CHAIN (exp));
3303 else
3304 static_chain_value = 0;
3306 #ifdef REG_PARM_STACK_SPACE
3307 /* Save the fixed argument area if it's part of the caller's frame and
3308 is clobbered by argument setup for this call. */
3309 if (ACCUMULATE_OUTGOING_ARGS && pass)
3310 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3311 &low_to_save, &high_to_save);
3312 #endif
3314 /* Now store (and compute if necessary) all non-register parms.
3315 These come before register parms, since they can require block-moves,
3316 which could clobber the registers used for register parms.
3317 Parms which have partial registers are not stored here,
3318 but we do preallocate space here if they want that. */
3320 for (i = 0; i < num_actuals; i++)
3322 /* Delay bounds until all other args are stored. */
3323 if (POINTER_BOUNDS_P (args[i].tree_value))
3324 continue;
3325 else if (args[i].reg == 0 || args[i].pass_on_stack)
3327 rtx_insn *before_arg = get_last_insn ();
3329 /* We don't allow passing huge (> 2^30 B) arguments
3330 by value. It would cause an overflow later on. */
3331 if (adjusted_args_size.constant
3332 >= (1 << (HOST_BITS_PER_INT - 2)))
3334 sorry ("passing too large argument on stack");
3335 continue;
3338 if (store_one_arg (&args[i], argblock, flags,
3339 adjusted_args_size.var != 0,
3340 reg_parm_stack_space)
3341 || (pass == 0
3342 && check_sibcall_argument_overlap (before_arg,
3343 &args[i], 1)))
3344 sibcall_failure = 1;
3347 if (args[i].stack)
3348 call_fusage
3349 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
3350 gen_rtx_USE (VOIDmode, args[i].stack),
3351 call_fusage);
3354 /* If we have a parm that is passed in registers but not in memory
3355 and whose alignment does not permit a direct copy into registers,
3356 make a group of pseudos that correspond to each register that we
3357 will later fill. */
3358 if (STRICT_ALIGNMENT)
3359 store_unaligned_arguments_into_pseudos (args, num_actuals);
3361 /* Now store any partially-in-registers parm.
3362 This is the last place a block-move can happen. */
3363 if (reg_parm_seen)
3364 for (i = 0; i < num_actuals; i++)
3365 if (args[i].partial != 0 && ! args[i].pass_on_stack)
3367 rtx_insn *before_arg = get_last_insn ();
3369 /* On targets with weird calling conventions (e.g. PA) it's
3370 hard to ensure that all cases of argument overlap between
3371 stack and registers work. Play it safe and bail out. */
3372 if (ARGS_GROW_DOWNWARD && !STACK_GROWS_DOWNWARD)
3374 sibcall_failure = 1;
3375 break;
3378 if (store_one_arg (&args[i], argblock, flags,
3379 adjusted_args_size.var != 0,
3380 reg_parm_stack_space)
3381 || (pass == 0
3382 && check_sibcall_argument_overlap (before_arg,
3383 &args[i], 1)))
3384 sibcall_failure = 1;
3387 bool any_regs = false;
3388 for (i = 0; i < num_actuals; i++)
3389 if (args[i].reg != NULL_RTX)
3391 any_regs = true;
3392 targetm.calls.call_args (args[i].reg, funtype);
3394 if (!any_regs)
3395 targetm.calls.call_args (pc_rtx, funtype);
3397 /* Figure out the register where the value, if any, will come back. */
3398 valreg = 0;
3399 valbnd = 0;
3400 if (TYPE_MODE (rettype) != VOIDmode
3401 && ! structure_value_addr)
3403 if (pcc_struct_value)
3405 valreg = hard_function_value (build_pointer_type (rettype),
3406 fndecl, NULL, (pass == 0));
3407 if (CALL_WITH_BOUNDS_P (exp))
3408 valbnd = targetm.calls.
3409 chkp_function_value_bounds (build_pointer_type (rettype),
3410 fndecl, (pass == 0));
3412 else
3414 valreg = hard_function_value (rettype, fndecl, fntype,
3415 (pass == 0));
3416 if (CALL_WITH_BOUNDS_P (exp))
3417 valbnd = targetm.calls.chkp_function_value_bounds (rettype,
3418 fndecl,
3419 (pass == 0));
3422 /* If VALREG is a PARALLEL whose first member has a zero
3423 offset, use that. This is for targets such as m68k that
3424 return the same value in multiple places. */
3425 if (GET_CODE (valreg) == PARALLEL)
3427 rtx elem = XVECEXP (valreg, 0, 0);
3428 rtx where = XEXP (elem, 0);
3429 rtx offset = XEXP (elem, 1);
3430 if (offset == const0_rtx
3431 && GET_MODE (where) == GET_MODE (valreg))
3432 valreg = where;
3436 /* Store all bounds not passed in registers. */
3437 for (i = 0; i < num_actuals; i++)
3439 if (POINTER_BOUNDS_P (args[i].tree_value)
3440 && !args[i].reg)
3441 store_bounds (&args[i],
3442 args[i].pointer_arg == -1
3443 ? NULL
3444 : &args[args[i].pointer_arg]);
3447 /* If register arguments require space on the stack and stack space
3448 was not preallocated, allocate stack space here for arguments
3449 passed in registers. */
3450 if (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
3451 && !ACCUMULATE_OUTGOING_ARGS
3452 && must_preallocate == 0 && reg_parm_stack_space > 0)
3453 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
3455 /* Pass the function the address in which to return a
3456 structure value. */
3457 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
3459 structure_value_addr
3460 = convert_memory_address (Pmode, structure_value_addr);
3461 emit_move_insn (struct_value,
3462 force_reg (Pmode,
3463 force_operand (structure_value_addr,
3464 NULL_RTX)));
3466 if (REG_P (struct_value))
3467 use_reg (&call_fusage, struct_value);
3470 after_args = get_last_insn ();
3471 funexp = prepare_call_address (fndecl ? fndecl : fntype, funexp,
3472 static_chain_value, &call_fusage,
3473 reg_parm_seen, pass == 0);
3475 load_register_parameters (args, num_actuals, &call_fusage, flags,
3476 pass == 0, &sibcall_failure);
3478 /* Save a pointer to the last insn before the call, so that we can
3479 later safely search backwards to find the CALL_INSN. */
3480 before_call = get_last_insn ();
3482 /* Set up next argument register. For sibling calls on machines
3483 with register windows this should be the incoming register. */
3484 if (pass == 0)
3485 next_arg_reg = targetm.calls.function_incoming_arg (args_so_far,
3486 VOIDmode,
3487 void_type_node,
3488 true);
3489 else
3490 next_arg_reg = targetm.calls.function_arg (args_so_far,
3491 VOIDmode, void_type_node,
3492 true);
3494 if (pass == 1 && (return_flags & ERF_RETURNS_ARG))
3496 int arg_nr = return_flags & ERF_RETURN_ARG_MASK;
3497 arg_nr = num_actuals - arg_nr - 1;
3498 if (arg_nr >= 0
3499 && arg_nr < num_actuals
3500 && args[arg_nr].reg
3501 && valreg
3502 && REG_P (valreg)
3503 && GET_MODE (args[arg_nr].reg) == GET_MODE (valreg))
3504 call_fusage
3505 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[arg_nr].tree_value)),
3506 gen_rtx_SET (valreg, args[arg_nr].reg),
3507 call_fusage);
3509 /* All arguments and registers used for the call must be set up by
3510 now! */
3512 /* Stack must be properly aligned now. */
3513 gcc_assert (!pass
3514 || !(stack_pointer_delta % preferred_unit_stack_boundary));
3516 /* Generate the actual call instruction. */
3517 emit_call_1 (funexp, exp, fndecl, funtype, unadjusted_args_size,
3518 adjusted_args_size.constant, struct_value_size,
3519 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
3520 flags, args_so_far);
3522 if (flag_ipa_ra)
3524 rtx_call_insn *last;
3525 rtx datum = NULL_RTX;
3526 if (fndecl != NULL_TREE)
3528 datum = XEXP (DECL_RTL (fndecl), 0);
3529 gcc_assert (datum != NULL_RTX
3530 && GET_CODE (datum) == SYMBOL_REF);
3532 last = last_call_insn ();
3533 add_reg_note (last, REG_CALL_DECL, datum);
3536 /* If the call setup or the call itself overlaps with anything
3537 of the argument setup we probably clobbered our call address.
3538 In that case we can't do sibcalls. */
3539 if (pass == 0
3540 && check_sibcall_argument_overlap (after_args, 0, 0))
3541 sibcall_failure = 1;
3543 /* If a non-BLKmode value is returned at the most significant end
3544 of a register, shift the register right by the appropriate amount
3545 and update VALREG accordingly. BLKmode values are handled by the
3546 group load/store machinery below. */
3547 if (!structure_value_addr
3548 && !pcc_struct_value
3549 && TYPE_MODE (rettype) != VOIDmode
3550 && TYPE_MODE (rettype) != BLKmode
3551 && REG_P (valreg)
3552 && targetm.calls.return_in_msb (rettype))
3554 if (shift_return_value (TYPE_MODE (rettype), false, valreg))
3555 sibcall_failure = 1;
3556 valreg = gen_rtx_REG (TYPE_MODE (rettype), REGNO (valreg));
3559 if (pass && (flags & ECF_MALLOC))
3561 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3562 rtx_insn *last, *insns;
3564 /* The return value from a malloc-like function is a pointer. */
3565 if (TREE_CODE (rettype) == POINTER_TYPE)
3566 mark_reg_pointer (temp, MALLOC_ABI_ALIGNMENT);
3568 emit_move_insn (temp, valreg);
3570 /* The return value from a malloc-like function can not alias
3571 anything else. */
3572 last = get_last_insn ();
3573 add_reg_note (last, REG_NOALIAS, temp);
3575 /* Write out the sequence. */
3576 insns = get_insns ();
3577 end_sequence ();
3578 emit_insn (insns);
3579 valreg = temp;
3582 /* For calls to `setjmp', etc., inform
3583 function.c:setjmp_warnings that it should complain if
3584 nonvolatile values are live. For functions that cannot
3585 return, inform flow that control does not fall through. */
3587 if ((flags & ECF_NORETURN) || pass == 0)
3589 /* The barrier must be emitted
3590 immediately after the CALL_INSN. Some ports emit more
3591 than just a CALL_INSN above, so we must search for it here. */
3593 rtx_insn *last = get_last_insn ();
3594 while (!CALL_P (last))
3596 last = PREV_INSN (last);
3597 /* There was no CALL_INSN? */
3598 gcc_assert (last != before_call);
3601 emit_barrier_after (last);
3603 /* Stack adjustments after a noreturn call are dead code.
3604 However when NO_DEFER_POP is in effect, we must preserve
3605 stack_pointer_delta. */
3606 if (inhibit_defer_pop == 0)
3608 stack_pointer_delta = old_stack_allocated;
3609 pending_stack_adjust = 0;
3613 /* If value type not void, return an rtx for the value. */
3615 if (TYPE_MODE (rettype) == VOIDmode
3616 || ignore)
3617 target = const0_rtx;
3618 else if (structure_value_addr)
3620 if (target == 0 || !MEM_P (target))
3622 target
3623 = gen_rtx_MEM (TYPE_MODE (rettype),
3624 memory_address (TYPE_MODE (rettype),
3625 structure_value_addr));
3626 set_mem_attributes (target, rettype, 1);
3629 else if (pcc_struct_value)
3631 /* This is the special C++ case where we need to
3632 know what the true target was. We take care to
3633 never use this value more than once in one expression. */
3634 target = gen_rtx_MEM (TYPE_MODE (rettype),
3635 copy_to_reg (valreg));
3636 set_mem_attributes (target, rettype, 1);
3638 /* Handle calls that return values in multiple non-contiguous locations.
3639 The Irix 6 ABI has examples of this. */
3640 else if (GET_CODE (valreg) == PARALLEL)
3642 if (target == 0)
3643 target = emit_group_move_into_temps (valreg);
3644 else if (rtx_equal_p (target, valreg))
3646 else if (GET_CODE (target) == PARALLEL)
3647 /* Handle the result of a emit_group_move_into_temps
3648 call in the previous pass. */
3649 emit_group_move (target, valreg);
3650 else
3651 emit_group_store (target, valreg, rettype,
3652 int_size_in_bytes (rettype));
3654 else if (target
3655 && GET_MODE (target) == TYPE_MODE (rettype)
3656 && GET_MODE (target) == GET_MODE (valreg))
3658 bool may_overlap = false;
3660 /* We have to copy a return value in a CLASS_LIKELY_SPILLED hard
3661 reg to a plain register. */
3662 if (!REG_P (target) || HARD_REGISTER_P (target))
3663 valreg = avoid_likely_spilled_reg (valreg);
3665 /* If TARGET is a MEM in the argument area, and we have
3666 saved part of the argument area, then we can't store
3667 directly into TARGET as it may get overwritten when we
3668 restore the argument save area below. Don't work too
3669 hard though and simply force TARGET to a register if it
3670 is a MEM; the optimizer is quite likely to sort it out. */
3671 if (ACCUMULATE_OUTGOING_ARGS && pass && MEM_P (target))
3672 for (i = 0; i < num_actuals; i++)
3673 if (args[i].save_area)
3675 may_overlap = true;
3676 break;
3679 if (may_overlap)
3680 target = copy_to_reg (valreg);
3681 else
3683 /* TARGET and VALREG cannot be equal at this point
3684 because the latter would not have
3685 REG_FUNCTION_VALUE_P true, while the former would if
3686 it were referring to the same register.
3688 If they refer to the same register, this move will be
3689 a no-op, except when function inlining is being
3690 done. */
3691 emit_move_insn (target, valreg);
3693 /* If we are setting a MEM, this code must be executed.
3694 Since it is emitted after the call insn, sibcall
3695 optimization cannot be performed in that case. */
3696 if (MEM_P (target))
3697 sibcall_failure = 1;
3700 else
3701 target = copy_to_reg (avoid_likely_spilled_reg (valreg));
3703 /* If we promoted this return value, make the proper SUBREG.
3704 TARGET might be const0_rtx here, so be careful. */
3705 if (REG_P (target)
3706 && TYPE_MODE (rettype) != BLKmode
3707 && GET_MODE (target) != TYPE_MODE (rettype))
3709 tree type = rettype;
3710 int unsignedp = TYPE_UNSIGNED (type);
3711 int offset = 0;
3712 machine_mode pmode;
3714 /* Ensure we promote as expected, and get the new unsignedness. */
3715 pmode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
3716 funtype, 1);
3717 gcc_assert (GET_MODE (target) == pmode);
3719 if ((WORDS_BIG_ENDIAN || BYTES_BIG_ENDIAN)
3720 && (GET_MODE_SIZE (GET_MODE (target))
3721 > GET_MODE_SIZE (TYPE_MODE (type))))
3723 offset = GET_MODE_SIZE (GET_MODE (target))
3724 - GET_MODE_SIZE (TYPE_MODE (type));
3725 if (! BYTES_BIG_ENDIAN)
3726 offset = (offset / UNITS_PER_WORD) * UNITS_PER_WORD;
3727 else if (! WORDS_BIG_ENDIAN)
3728 offset %= UNITS_PER_WORD;
3731 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
3732 SUBREG_PROMOTED_VAR_P (target) = 1;
3733 SUBREG_PROMOTED_SET (target, unsignedp);
3736 /* If size of args is variable or this was a constructor call for a stack
3737 argument, restore saved stack-pointer value. */
3739 if (old_stack_level)
3741 rtx_insn *prev = get_last_insn ();
3743 emit_stack_restore (SAVE_BLOCK, old_stack_level);
3744 stack_pointer_delta = old_stack_pointer_delta;
3746 fixup_args_size_notes (prev, get_last_insn (), stack_pointer_delta);
3748 pending_stack_adjust = old_pending_adj;
3749 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
3750 stack_arg_under_construction = old_stack_arg_under_construction;
3751 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3752 stack_usage_map = initial_stack_usage_map;
3753 sibcall_failure = 1;
3755 else if (ACCUMULATE_OUTGOING_ARGS && pass)
3757 #ifdef REG_PARM_STACK_SPACE
3758 if (save_area)
3759 restore_fixed_argument_area (save_area, argblock,
3760 high_to_save, low_to_save);
3761 #endif
3763 /* If we saved any argument areas, restore them. */
3764 for (i = 0; i < num_actuals; i++)
3765 if (args[i].save_area)
3767 machine_mode save_mode = GET_MODE (args[i].save_area);
3768 rtx stack_area
3769 = gen_rtx_MEM (save_mode,
3770 memory_address (save_mode,
3771 XEXP (args[i].stack_slot, 0)));
3773 if (save_mode != BLKmode)
3774 emit_move_insn (stack_area, args[i].save_area);
3775 else
3776 emit_block_move (stack_area, args[i].save_area,
3777 GEN_INT (args[i].locate.size.constant),
3778 BLOCK_OP_CALL_PARM);
3781 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3782 stack_usage_map = initial_stack_usage_map;
3785 /* If this was alloca, record the new stack level. */
3786 if (flags & ECF_MAY_BE_ALLOCA)
3787 record_new_stack_level ();
3789 /* Free up storage we no longer need. */
3790 for (i = 0; i < num_actuals; ++i)
3791 free (args[i].aligned_regs);
3793 targetm.calls.end_call_args ();
3795 insns = get_insns ();
3796 end_sequence ();
3798 if (pass == 0)
3800 tail_call_insns = insns;
3802 /* Restore the pending stack adjustment now that we have
3803 finished generating the sibling call sequence. */
3805 restore_pending_stack_adjust (&save);
3807 /* Prepare arg structure for next iteration. */
3808 for (i = 0; i < num_actuals; i++)
3810 args[i].value = 0;
3811 args[i].aligned_regs = 0;
3812 args[i].stack = 0;
3815 sbitmap_free (stored_args_map);
3816 internal_arg_pointer_exp_state.scan_start = NULL;
3817 internal_arg_pointer_exp_state.cache.release ();
3819 else
3821 normal_call_insns = insns;
3823 /* Verify that we've deallocated all the stack we used. */
3824 gcc_assert ((flags & ECF_NORETURN)
3825 || (old_stack_allocated
3826 == stack_pointer_delta - pending_stack_adjust));
3829 /* If something prevents making this a sibling call,
3830 zero out the sequence. */
3831 if (sibcall_failure)
3832 tail_call_insns = NULL;
3833 else
3834 break;
3837 /* If tail call production succeeded, we need to remove REG_EQUIV notes on
3838 arguments too, as argument area is now clobbered by the call. */
3839 if (tail_call_insns)
3841 emit_insn (tail_call_insns);
3842 crtl->tail_call_emit = true;
3844 else
3846 emit_insn (normal_call_insns);
3847 if (try_tail_call)
3848 /* Ideally we'd emit a message for all of the ways that it could
3849 have failed. */
3850 maybe_complain_about_tail_call (exp, "tail call production failed");
3853 currently_expanding_call--;
3855 free (stack_usage_map_buf);
3857 /* Join result with returned bounds so caller may use them if needed. */
3858 target = chkp_join_splitted_slot (target, valbnd);
3860 return target;
3863 /* A sibling call sequence invalidates any REG_EQUIV notes made for
3864 this function's incoming arguments.
3866 At the start of RTL generation we know the only REG_EQUIV notes
3867 in the rtl chain are those for incoming arguments, so we can look
3868 for REG_EQUIV notes between the start of the function and the
3869 NOTE_INSN_FUNCTION_BEG.
3871 This is (slight) overkill. We could keep track of the highest
3872 argument we clobber and be more selective in removing notes, but it
3873 does not seem to be worth the effort. */
3875 void
3876 fixup_tail_calls (void)
3878 rtx_insn *insn;
3880 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3882 rtx note;
3884 /* There are never REG_EQUIV notes for the incoming arguments
3885 after the NOTE_INSN_FUNCTION_BEG note, so stop if we see it. */
3886 if (NOTE_P (insn)
3887 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
3888 break;
3890 note = find_reg_note (insn, REG_EQUIV, 0);
3891 if (note)
3892 remove_note (insn, note);
3893 note = find_reg_note (insn, REG_EQUIV, 0);
3894 gcc_assert (!note);
3898 /* Traverse a list of TYPES and expand all complex types into their
3899 components. */
3900 static tree
3901 split_complex_types (tree types)
3903 tree p;
3905 /* Before allocating memory, check for the common case of no complex. */
3906 for (p = types; p; p = TREE_CHAIN (p))
3908 tree type = TREE_VALUE (p);
3909 if (TREE_CODE (type) == COMPLEX_TYPE
3910 && targetm.calls.split_complex_arg (type))
3911 goto found;
3913 return types;
3915 found:
3916 types = copy_list (types);
3918 for (p = types; p; p = TREE_CHAIN (p))
3920 tree complex_type = TREE_VALUE (p);
3922 if (TREE_CODE (complex_type) == COMPLEX_TYPE
3923 && targetm.calls.split_complex_arg (complex_type))
3925 tree next, imag;
3927 /* Rewrite complex type with component type. */
3928 TREE_VALUE (p) = TREE_TYPE (complex_type);
3929 next = TREE_CHAIN (p);
3931 /* Add another component type for the imaginary part. */
3932 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
3933 TREE_CHAIN (p) = imag;
3934 TREE_CHAIN (imag) = next;
3936 /* Skip the newly created node. */
3937 p = TREE_CHAIN (p);
3941 return types;
3944 /* Output a library call to function FUN (a SYMBOL_REF rtx).
3945 The RETVAL parameter specifies whether return value needs to be saved, other
3946 parameters are documented in the emit_library_call function below. */
3948 static rtx
3949 emit_library_call_value_1 (int retval, rtx orgfun, rtx value,
3950 enum libcall_type fn_type,
3951 machine_mode outmode, int nargs, va_list p)
3953 /* Total size in bytes of all the stack-parms scanned so far. */
3954 struct args_size args_size;
3955 /* Size of arguments before any adjustments (such as rounding). */
3956 struct args_size original_args_size;
3957 int argnum;
3958 rtx fun;
3959 /* Todo, choose the correct decl type of orgfun. Sadly this information
3960 isn't present here, so we default to native calling abi here. */
3961 tree fndecl ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3962 tree fntype ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3963 int count;
3964 rtx argblock = 0;
3965 CUMULATIVE_ARGS args_so_far_v;
3966 cumulative_args_t args_so_far;
3967 struct arg
3969 rtx value;
3970 machine_mode mode;
3971 rtx reg;
3972 int partial;
3973 struct locate_and_pad_arg_data locate;
3974 rtx save_area;
3976 struct arg *argvec;
3977 int old_inhibit_defer_pop = inhibit_defer_pop;
3978 rtx call_fusage = 0;
3979 rtx mem_value = 0;
3980 rtx valreg;
3981 int pcc_struct_value = 0;
3982 int struct_value_size = 0;
3983 int flags;
3984 int reg_parm_stack_space = 0;
3985 int needed;
3986 rtx_insn *before_call;
3987 bool have_push_fusage;
3988 tree tfom; /* type_for_mode (outmode, 0) */
3990 #ifdef REG_PARM_STACK_SPACE
3991 /* Define the boundary of the register parm stack space that needs to be
3992 save, if any. */
3993 int low_to_save = 0, high_to_save = 0;
3994 rtx save_area = 0; /* Place that it is saved. */
3995 #endif
3997 /* Size of the stack reserved for parameter registers. */
3998 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3999 char *initial_stack_usage_map = stack_usage_map;
4000 char *stack_usage_map_buf = NULL;
4002 rtx struct_value = targetm.calls.struct_value_rtx (0, 0);
4004 #ifdef REG_PARM_STACK_SPACE
4005 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
4006 #endif
4008 /* By default, library functions cannot throw. */
4009 flags = ECF_NOTHROW;
4011 switch (fn_type)
4013 case LCT_NORMAL:
4014 break;
4015 case LCT_CONST:
4016 flags |= ECF_CONST;
4017 break;
4018 case LCT_PURE:
4019 flags |= ECF_PURE;
4020 break;
4021 case LCT_NORETURN:
4022 flags |= ECF_NORETURN;
4023 break;
4024 case LCT_THROW:
4025 flags &= ~ECF_NOTHROW;
4026 break;
4027 case LCT_RETURNS_TWICE:
4028 flags = ECF_RETURNS_TWICE;
4029 break;
4031 fun = orgfun;
4033 /* Ensure current function's preferred stack boundary is at least
4034 what we need. */
4035 if (crtl->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
4036 crtl->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
4038 /* If this kind of value comes back in memory,
4039 decide where in memory it should come back. */
4040 if (outmode != VOIDmode)
4042 tfom = lang_hooks.types.type_for_mode (outmode, 0);
4043 if (aggregate_value_p (tfom, 0))
4045 #ifdef PCC_STATIC_STRUCT_RETURN
4046 rtx pointer_reg
4047 = hard_function_value (build_pointer_type (tfom), 0, 0, 0);
4048 mem_value = gen_rtx_MEM (outmode, pointer_reg);
4049 pcc_struct_value = 1;
4050 if (value == 0)
4051 value = gen_reg_rtx (outmode);
4052 #else /* not PCC_STATIC_STRUCT_RETURN */
4053 struct_value_size = GET_MODE_SIZE (outmode);
4054 if (value != 0 && MEM_P (value))
4055 mem_value = value;
4056 else
4057 mem_value = assign_temp (tfom, 1, 1);
4058 #endif
4059 /* This call returns a big structure. */
4060 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
4063 else
4064 tfom = void_type_node;
4066 /* ??? Unfinished: must pass the memory address as an argument. */
4068 /* Copy all the libcall-arguments out of the varargs data
4069 and into a vector ARGVEC.
4071 Compute how to pass each argument. We only support a very small subset
4072 of the full argument passing conventions to limit complexity here since
4073 library functions shouldn't have many args. */
4075 argvec = XALLOCAVEC (struct arg, nargs + 1);
4076 memset (argvec, 0, (nargs + 1) * sizeof (struct arg));
4078 #ifdef INIT_CUMULATIVE_LIBCALL_ARGS
4079 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far_v, outmode, fun);
4080 #else
4081 INIT_CUMULATIVE_ARGS (args_so_far_v, NULL_TREE, fun, 0, nargs);
4082 #endif
4083 args_so_far = pack_cumulative_args (&args_so_far_v);
4085 args_size.constant = 0;
4086 args_size.var = 0;
4088 count = 0;
4090 push_temp_slots ();
4092 /* If there's a structure value address to be passed,
4093 either pass it in the special place, or pass it as an extra argument. */
4094 if (mem_value && struct_value == 0 && ! pcc_struct_value)
4096 rtx addr = XEXP (mem_value, 0);
4098 nargs++;
4100 /* Make sure it is a reasonable operand for a move or push insn. */
4101 if (!REG_P (addr) && !MEM_P (addr)
4102 && !(CONSTANT_P (addr)
4103 && targetm.legitimate_constant_p (Pmode, addr)))
4104 addr = force_operand (addr, NULL_RTX);
4106 argvec[count].value = addr;
4107 argvec[count].mode = Pmode;
4108 argvec[count].partial = 0;
4110 argvec[count].reg = targetm.calls.function_arg (args_so_far,
4111 Pmode, NULL_TREE, true);
4112 gcc_assert (targetm.calls.arg_partial_bytes (args_so_far, Pmode,
4113 NULL_TREE, 1) == 0);
4115 locate_and_pad_parm (Pmode, NULL_TREE,
4116 #ifdef STACK_PARMS_IN_REG_PARM_AREA
4118 #else
4119 argvec[count].reg != 0,
4120 #endif
4121 reg_parm_stack_space, 0,
4122 NULL_TREE, &args_size, &argvec[count].locate);
4124 if (argvec[count].reg == 0 || argvec[count].partial != 0
4125 || reg_parm_stack_space > 0)
4126 args_size.constant += argvec[count].locate.size.constant;
4128 targetm.calls.function_arg_advance (args_so_far, Pmode, (tree) 0, true);
4130 count++;
4133 for (; count < nargs; count++)
4135 rtx val = va_arg (p, rtx);
4136 machine_mode mode = (machine_mode) va_arg (p, int);
4137 int unsigned_p = 0;
4139 /* We cannot convert the arg value to the mode the library wants here;
4140 must do it earlier where we know the signedness of the arg. */
4141 gcc_assert (mode != BLKmode
4142 && (GET_MODE (val) == mode || GET_MODE (val) == VOIDmode));
4144 /* Make sure it is a reasonable operand for a move or push insn. */
4145 if (!REG_P (val) && !MEM_P (val)
4146 && !(CONSTANT_P (val) && targetm.legitimate_constant_p (mode, val)))
4147 val = force_operand (val, NULL_RTX);
4149 if (pass_by_reference (&args_so_far_v, mode, NULL_TREE, 1))
4151 rtx slot;
4152 int must_copy
4153 = !reference_callee_copied (&args_so_far_v, mode, NULL_TREE, 1);
4155 /* If this was a CONST function, it is now PURE since it now
4156 reads memory. */
4157 if (flags & ECF_CONST)
4159 flags &= ~ECF_CONST;
4160 flags |= ECF_PURE;
4163 if (MEM_P (val) && !must_copy)
4165 tree val_expr = MEM_EXPR (val);
4166 if (val_expr)
4167 mark_addressable (val_expr);
4168 slot = val;
4170 else
4172 slot = assign_temp (lang_hooks.types.type_for_mode (mode, 0),
4173 1, 1);
4174 emit_move_insn (slot, val);
4177 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
4178 gen_rtx_USE (VOIDmode, slot),
4179 call_fusage);
4180 if (must_copy)
4181 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
4182 gen_rtx_CLOBBER (VOIDmode,
4183 slot),
4184 call_fusage);
4186 mode = Pmode;
4187 val = force_operand (XEXP (slot, 0), NULL_RTX);
4190 mode = promote_function_mode (NULL_TREE, mode, &unsigned_p, NULL_TREE, 0);
4191 argvec[count].mode = mode;
4192 argvec[count].value = convert_modes (mode, GET_MODE (val), val, unsigned_p);
4193 argvec[count].reg = targetm.calls.function_arg (args_so_far, mode,
4194 NULL_TREE, true);
4196 argvec[count].partial
4197 = targetm.calls.arg_partial_bytes (args_so_far, mode, NULL_TREE, 1);
4199 if (argvec[count].reg == 0
4200 || argvec[count].partial != 0
4201 || reg_parm_stack_space > 0)
4203 locate_and_pad_parm (mode, NULL_TREE,
4204 #ifdef STACK_PARMS_IN_REG_PARM_AREA
4206 #else
4207 argvec[count].reg != 0,
4208 #endif
4209 reg_parm_stack_space, argvec[count].partial,
4210 NULL_TREE, &args_size, &argvec[count].locate);
4211 args_size.constant += argvec[count].locate.size.constant;
4212 gcc_assert (!argvec[count].locate.size.var);
4214 #ifdef BLOCK_REG_PADDING
4215 else
4216 /* The argument is passed entirely in registers. See at which
4217 end it should be padded. */
4218 argvec[count].locate.where_pad =
4219 BLOCK_REG_PADDING (mode, NULL_TREE,
4220 GET_MODE_SIZE (mode) <= UNITS_PER_WORD);
4221 #endif
4223 targetm.calls.function_arg_advance (args_so_far, mode, (tree) 0, true);
4226 /* If this machine requires an external definition for library
4227 functions, write one out. */
4228 assemble_external_libcall (fun);
4230 original_args_size = args_size;
4231 args_size.constant = (((args_size.constant
4232 + stack_pointer_delta
4233 + STACK_BYTES - 1)
4234 / STACK_BYTES
4235 * STACK_BYTES)
4236 - stack_pointer_delta);
4238 args_size.constant = MAX (args_size.constant,
4239 reg_parm_stack_space);
4241 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
4242 args_size.constant -= reg_parm_stack_space;
4244 if (args_size.constant > crtl->outgoing_args_size)
4245 crtl->outgoing_args_size = args_size.constant;
4247 if (flag_stack_usage_info && !ACCUMULATE_OUTGOING_ARGS)
4249 int pushed = args_size.constant + pending_stack_adjust;
4250 if (pushed > current_function_pushed_stack_size)
4251 current_function_pushed_stack_size = pushed;
4254 if (ACCUMULATE_OUTGOING_ARGS)
4256 /* Since the stack pointer will never be pushed, it is possible for
4257 the evaluation of a parm to clobber something we have already
4258 written to the stack. Since most function calls on RISC machines
4259 do not use the stack, this is uncommon, but must work correctly.
4261 Therefore, we save any area of the stack that was already written
4262 and that we are using. Here we set up to do this by making a new
4263 stack usage map from the old one.
4265 Another approach might be to try to reorder the argument
4266 evaluations to avoid this conflicting stack usage. */
4268 needed = args_size.constant;
4270 /* Since we will be writing into the entire argument area, the
4271 map must be allocated for its entire size, not just the part that
4272 is the responsibility of the caller. */
4273 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
4274 needed += reg_parm_stack_space;
4276 if (ARGS_GROW_DOWNWARD)
4277 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
4278 needed + 1);
4279 else
4280 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use, needed);
4282 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
4283 stack_usage_map = stack_usage_map_buf;
4285 if (initial_highest_arg_in_use)
4286 memcpy (stack_usage_map, initial_stack_usage_map,
4287 initial_highest_arg_in_use);
4289 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
4290 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
4291 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
4292 needed = 0;
4294 /* We must be careful to use virtual regs before they're instantiated,
4295 and real regs afterwards. Loop optimization, for example, can create
4296 new libcalls after we've instantiated the virtual regs, and if we
4297 use virtuals anyway, they won't match the rtl patterns. */
4299 if (virtuals_instantiated)
4300 argblock = plus_constant (Pmode, stack_pointer_rtx,
4301 STACK_POINTER_OFFSET);
4302 else
4303 argblock = virtual_outgoing_args_rtx;
4305 else
4307 if (!PUSH_ARGS)
4308 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
4311 /* We push args individually in reverse order, perform stack alignment
4312 before the first push (the last arg). */
4313 if (argblock == 0)
4314 anti_adjust_stack (GEN_INT (args_size.constant
4315 - original_args_size.constant));
4317 argnum = nargs - 1;
4319 #ifdef REG_PARM_STACK_SPACE
4320 if (ACCUMULATE_OUTGOING_ARGS)
4322 /* The argument list is the property of the called routine and it
4323 may clobber it. If the fixed area has been used for previous
4324 parameters, we must save and restore it. */
4325 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
4326 &low_to_save, &high_to_save);
4328 #endif
4330 /* When expanding a normal call, args are stored in push order,
4331 which is the reverse of what we have here. */
4332 bool any_regs = false;
4333 for (int i = nargs; i-- > 0; )
4334 if (argvec[i].reg != NULL_RTX)
4336 targetm.calls.call_args (argvec[i].reg, NULL_TREE);
4337 any_regs = true;
4339 if (!any_regs)
4340 targetm.calls.call_args (pc_rtx, NULL_TREE);
4342 /* Push the args that need to be pushed. */
4344 have_push_fusage = false;
4346 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4347 are to be pushed. */
4348 for (count = 0; count < nargs; count++, argnum--)
4350 machine_mode mode = argvec[argnum].mode;
4351 rtx val = argvec[argnum].value;
4352 rtx reg = argvec[argnum].reg;
4353 int partial = argvec[argnum].partial;
4354 unsigned int parm_align = argvec[argnum].locate.boundary;
4355 int lower_bound = 0, upper_bound = 0, i;
4357 if (! (reg != 0 && partial == 0))
4359 rtx use;
4361 if (ACCUMULATE_OUTGOING_ARGS)
4363 /* If this is being stored into a pre-allocated, fixed-size,
4364 stack area, save any previous data at that location. */
4366 if (ARGS_GROW_DOWNWARD)
4368 /* stack_slot is negative, but we want to index stack_usage_map
4369 with positive values. */
4370 upper_bound = -argvec[argnum].locate.slot_offset.constant + 1;
4371 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
4373 else
4375 lower_bound = argvec[argnum].locate.slot_offset.constant;
4376 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
4379 i = lower_bound;
4380 /* Don't worry about things in the fixed argument area;
4381 it has already been saved. */
4382 if (i < reg_parm_stack_space)
4383 i = reg_parm_stack_space;
4384 while (i < upper_bound && stack_usage_map[i] == 0)
4385 i++;
4387 if (i < upper_bound)
4389 /* We need to make a save area. */
4390 unsigned int size
4391 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
4392 machine_mode save_mode
4393 = mode_for_size (size, MODE_INT, 1);
4394 rtx adr
4395 = plus_constant (Pmode, argblock,
4396 argvec[argnum].locate.offset.constant);
4397 rtx stack_area
4398 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
4400 if (save_mode == BLKmode)
4402 argvec[argnum].save_area
4403 = assign_stack_temp (BLKmode,
4404 argvec[argnum].locate.size.constant
4407 emit_block_move (validize_mem
4408 (copy_rtx (argvec[argnum].save_area)),
4409 stack_area,
4410 GEN_INT (argvec[argnum].locate.size.constant),
4411 BLOCK_OP_CALL_PARM);
4413 else
4415 argvec[argnum].save_area = gen_reg_rtx (save_mode);
4417 emit_move_insn (argvec[argnum].save_area, stack_area);
4422 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, parm_align,
4423 partial, reg, 0, argblock,
4424 GEN_INT (argvec[argnum].locate.offset.constant),
4425 reg_parm_stack_space,
4426 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad), false);
4428 /* Now mark the segment we just used. */
4429 if (ACCUMULATE_OUTGOING_ARGS)
4430 for (i = lower_bound; i < upper_bound; i++)
4431 stack_usage_map[i] = 1;
4433 NO_DEFER_POP;
4435 /* Indicate argument access so that alias.c knows that these
4436 values are live. */
4437 if (argblock)
4438 use = plus_constant (Pmode, argblock,
4439 argvec[argnum].locate.offset.constant);
4440 else if (have_push_fusage)
4441 continue;
4442 else
4444 /* When arguments are pushed, trying to tell alias.c where
4445 exactly this argument is won't work, because the
4446 auto-increment causes confusion. So we merely indicate
4447 that we access something with a known mode somewhere on
4448 the stack. */
4449 use = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
4450 gen_rtx_SCRATCH (Pmode));
4451 have_push_fusage = true;
4453 use = gen_rtx_MEM (argvec[argnum].mode, use);
4454 use = gen_rtx_USE (VOIDmode, use);
4455 call_fusage = gen_rtx_EXPR_LIST (VOIDmode, use, call_fusage);
4459 argnum = nargs - 1;
4461 fun = prepare_call_address (NULL, fun, NULL, &call_fusage, 0, 0);
4463 /* Now load any reg parms into their regs. */
4465 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4466 are to be pushed. */
4467 for (count = 0; count < nargs; count++, argnum--)
4469 machine_mode mode = argvec[argnum].mode;
4470 rtx val = argvec[argnum].value;
4471 rtx reg = argvec[argnum].reg;
4472 int partial = argvec[argnum].partial;
4473 #ifdef BLOCK_REG_PADDING
4474 int size = 0;
4475 #endif
4477 /* Handle calls that pass values in multiple non-contiguous
4478 locations. The PA64 has examples of this for library calls. */
4479 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4480 emit_group_load (reg, val, NULL_TREE, GET_MODE_SIZE (mode));
4481 else if (reg != 0 && partial == 0)
4483 emit_move_insn (reg, val);
4484 #ifdef BLOCK_REG_PADDING
4485 size = GET_MODE_SIZE (argvec[argnum].mode);
4487 /* Copied from load_register_parameters. */
4489 /* Handle case where we have a value that needs shifting
4490 up to the msb. eg. a QImode value and we're padding
4491 upward on a BYTES_BIG_ENDIAN machine. */
4492 if (size < UNITS_PER_WORD
4493 && (argvec[argnum].locate.where_pad
4494 == (BYTES_BIG_ENDIAN ? upward : downward)))
4496 rtx x;
4497 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
4499 /* Assigning REG here rather than a temp makes CALL_FUSAGE
4500 report the whole reg as used. Strictly speaking, the
4501 call only uses SIZE bytes at the msb end, but it doesn't
4502 seem worth generating rtl to say that. */
4503 reg = gen_rtx_REG (word_mode, REGNO (reg));
4504 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
4505 if (x != reg)
4506 emit_move_insn (reg, x);
4508 #endif
4511 NO_DEFER_POP;
4514 /* Any regs containing parms remain in use through the call. */
4515 for (count = 0; count < nargs; count++)
4517 rtx reg = argvec[count].reg;
4518 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4519 use_group_regs (&call_fusage, reg);
4520 else if (reg != 0)
4522 int partial = argvec[count].partial;
4523 if (partial)
4525 int nregs;
4526 gcc_assert (partial % UNITS_PER_WORD == 0);
4527 nregs = partial / UNITS_PER_WORD;
4528 use_regs (&call_fusage, REGNO (reg), nregs);
4530 else
4531 use_reg (&call_fusage, reg);
4535 /* Pass the function the address in which to return a structure value. */
4536 if (mem_value != 0 && struct_value != 0 && ! pcc_struct_value)
4538 emit_move_insn (struct_value,
4539 force_reg (Pmode,
4540 force_operand (XEXP (mem_value, 0),
4541 NULL_RTX)));
4542 if (REG_P (struct_value))
4543 use_reg (&call_fusage, struct_value);
4546 /* Don't allow popping to be deferred, since then
4547 cse'ing of library calls could delete a call and leave the pop. */
4548 NO_DEFER_POP;
4549 valreg = (mem_value == 0 && outmode != VOIDmode
4550 ? hard_libcall_value (outmode, orgfun) : NULL_RTX);
4552 /* Stack must be properly aligned now. */
4553 gcc_assert (!(stack_pointer_delta
4554 & (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1)));
4556 before_call = get_last_insn ();
4558 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
4559 will set inhibit_defer_pop to that value. */
4560 /* The return type is needed to decide how many bytes the function pops.
4561 Signedness plays no role in that, so for simplicity, we pretend it's
4562 always signed. We also assume that the list of arguments passed has
4563 no impact, so we pretend it is unknown. */
4565 emit_call_1 (fun, NULL,
4566 get_identifier (XSTR (orgfun, 0)),
4567 build_function_type (tfom, NULL_TREE),
4568 original_args_size.constant, args_size.constant,
4569 struct_value_size,
4570 targetm.calls.function_arg (args_so_far,
4571 VOIDmode, void_type_node, true),
4572 valreg,
4573 old_inhibit_defer_pop + 1, call_fusage, flags, args_so_far);
4575 if (flag_ipa_ra)
4577 rtx datum = orgfun;
4578 gcc_assert (GET_CODE (datum) == SYMBOL_REF);
4579 rtx_call_insn *last = last_call_insn ();
4580 add_reg_note (last, REG_CALL_DECL, datum);
4583 /* Right-shift returned value if necessary. */
4584 if (!pcc_struct_value
4585 && TYPE_MODE (tfom) != BLKmode
4586 && targetm.calls.return_in_msb (tfom))
4588 shift_return_value (TYPE_MODE (tfom), false, valreg);
4589 valreg = gen_rtx_REG (TYPE_MODE (tfom), REGNO (valreg));
4592 targetm.calls.end_call_args ();
4594 /* For calls to `setjmp', etc., inform function.c:setjmp_warnings
4595 that it should complain if nonvolatile values are live. For
4596 functions that cannot return, inform flow that control does not
4597 fall through. */
4598 if (flags & ECF_NORETURN)
4600 /* The barrier note must be emitted
4601 immediately after the CALL_INSN. Some ports emit more than
4602 just a CALL_INSN above, so we must search for it here. */
4603 rtx_insn *last = get_last_insn ();
4604 while (!CALL_P (last))
4606 last = PREV_INSN (last);
4607 /* There was no CALL_INSN? */
4608 gcc_assert (last != before_call);
4611 emit_barrier_after (last);
4614 /* Consider that "regular" libcalls, i.e. all of them except for LCT_THROW
4615 and LCT_RETURNS_TWICE, cannot perform non-local gotos. */
4616 if (flags & ECF_NOTHROW)
4618 rtx_insn *last = get_last_insn ();
4619 while (!CALL_P (last))
4621 last = PREV_INSN (last);
4622 /* There was no CALL_INSN? */
4623 gcc_assert (last != before_call);
4626 make_reg_eh_region_note_nothrow_nononlocal (last);
4629 /* Now restore inhibit_defer_pop to its actual original value. */
4630 OK_DEFER_POP;
4632 pop_temp_slots ();
4634 /* Copy the value to the right place. */
4635 if (outmode != VOIDmode && retval)
4637 if (mem_value)
4639 if (value == 0)
4640 value = mem_value;
4641 if (value != mem_value)
4642 emit_move_insn (value, mem_value);
4644 else if (GET_CODE (valreg) == PARALLEL)
4646 if (value == 0)
4647 value = gen_reg_rtx (outmode);
4648 emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode));
4650 else
4652 /* Convert to the proper mode if a promotion has been active. */
4653 if (GET_MODE (valreg) != outmode)
4655 int unsignedp = TYPE_UNSIGNED (tfom);
4657 gcc_assert (promote_function_mode (tfom, outmode, &unsignedp,
4658 fndecl ? TREE_TYPE (fndecl) : fntype, 1)
4659 == GET_MODE (valreg));
4660 valreg = convert_modes (outmode, GET_MODE (valreg), valreg, 0);
4663 if (value != 0)
4664 emit_move_insn (value, valreg);
4665 else
4666 value = valreg;
4670 if (ACCUMULATE_OUTGOING_ARGS)
4672 #ifdef REG_PARM_STACK_SPACE
4673 if (save_area)
4674 restore_fixed_argument_area (save_area, argblock,
4675 high_to_save, low_to_save);
4676 #endif
4678 /* If we saved any argument areas, restore them. */
4679 for (count = 0; count < nargs; count++)
4680 if (argvec[count].save_area)
4682 machine_mode save_mode = GET_MODE (argvec[count].save_area);
4683 rtx adr = plus_constant (Pmode, argblock,
4684 argvec[count].locate.offset.constant);
4685 rtx stack_area = gen_rtx_MEM (save_mode,
4686 memory_address (save_mode, adr));
4688 if (save_mode == BLKmode)
4689 emit_block_move (stack_area,
4690 validize_mem
4691 (copy_rtx (argvec[count].save_area)),
4692 GEN_INT (argvec[count].locate.size.constant),
4693 BLOCK_OP_CALL_PARM);
4694 else
4695 emit_move_insn (stack_area, argvec[count].save_area);
4698 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4699 stack_usage_map = initial_stack_usage_map;
4702 free (stack_usage_map_buf);
4704 return value;
4708 /* Output a library call to function FUN (a SYMBOL_REF rtx)
4709 (emitting the queue unless NO_QUEUE is nonzero),
4710 for a value of mode OUTMODE,
4711 with NARGS different arguments, passed as alternating rtx values
4712 and machine_modes to convert them to.
4714 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for
4715 `const' calls, LCT_PURE for `pure' calls, or other LCT_ value for
4716 other types of library calls. */
4718 void
4719 emit_library_call (rtx orgfun, enum libcall_type fn_type,
4720 machine_mode outmode, int nargs, ...)
4722 va_list p;
4724 va_start (p, nargs);
4725 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
4726 va_end (p);
4729 /* Like emit_library_call except that an extra argument, VALUE,
4730 comes second and says where to store the result.
4731 (If VALUE is zero, this function chooses a convenient way
4732 to return the value.
4734 This function returns an rtx for where the value is to be found.
4735 If VALUE is nonzero, VALUE is returned. */
4738 emit_library_call_value (rtx orgfun, rtx value,
4739 enum libcall_type fn_type,
4740 machine_mode outmode, int nargs, ...)
4742 rtx result;
4743 va_list p;
4745 va_start (p, nargs);
4746 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode,
4747 nargs, p);
4748 va_end (p);
4750 return result;
4754 /* Store pointer bounds argument ARG into Bounds Table entry
4755 associated with PARM. */
4756 static void
4757 store_bounds (struct arg_data *arg, struct arg_data *parm)
4759 rtx slot = NULL, ptr = NULL, addr = NULL;
4761 /* We may pass bounds not associated with any pointer. */
4762 if (!parm)
4764 gcc_assert (arg->special_slot);
4765 slot = arg->special_slot;
4766 ptr = const0_rtx;
4768 /* Find pointer associated with bounds and where it is
4769 passed. */
4770 else
4772 if (!parm->reg)
4774 gcc_assert (!arg->special_slot);
4776 addr = adjust_address (parm->stack, Pmode, arg->pointer_offset);
4778 else if (REG_P (parm->reg))
4780 gcc_assert (arg->special_slot);
4781 slot = arg->special_slot;
4783 if (MEM_P (parm->value))
4784 addr = adjust_address (parm->value, Pmode, arg->pointer_offset);
4785 else if (REG_P (parm->value))
4786 ptr = gen_rtx_SUBREG (Pmode, parm->value, arg->pointer_offset);
4787 else
4789 gcc_assert (!arg->pointer_offset);
4790 ptr = parm->value;
4793 else
4795 gcc_assert (GET_CODE (parm->reg) == PARALLEL);
4797 gcc_assert (arg->special_slot);
4798 slot = arg->special_slot;
4800 if (parm->parallel_value)
4801 ptr = chkp_get_value_with_offs (parm->parallel_value,
4802 GEN_INT (arg->pointer_offset));
4803 else
4804 gcc_unreachable ();
4808 /* Expand bounds. */
4809 if (!arg->value)
4810 arg->value = expand_normal (arg->tree_value);
4812 targetm.calls.store_bounds_for_arg (ptr, addr, arg->value, slot);
4815 /* Store a single argument for a function call
4816 into the register or memory area where it must be passed.
4817 *ARG describes the argument value and where to pass it.
4819 ARGBLOCK is the address of the stack-block for all the arguments,
4820 or 0 on a machine where arguments are pushed individually.
4822 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
4823 so must be careful about how the stack is used.
4825 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
4826 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
4827 that we need not worry about saving and restoring the stack.
4829 FNDECL is the declaration of the function we are calling.
4831 Return nonzero if this arg should cause sibcall failure,
4832 zero otherwise. */
4834 static int
4835 store_one_arg (struct arg_data *arg, rtx argblock, int flags,
4836 int variable_size ATTRIBUTE_UNUSED, int reg_parm_stack_space)
4838 tree pval = arg->tree_value;
4839 rtx reg = 0;
4840 int partial = 0;
4841 int used = 0;
4842 int i, lower_bound = 0, upper_bound = 0;
4843 int sibcall_failure = 0;
4845 if (TREE_CODE (pval) == ERROR_MARK)
4846 return 1;
4848 /* Push a new temporary level for any temporaries we make for
4849 this argument. */
4850 push_temp_slots ();
4852 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
4854 /* If this is being stored into a pre-allocated, fixed-size, stack area,
4855 save any previous data at that location. */
4856 if (argblock && ! variable_size && arg->stack)
4858 if (ARGS_GROW_DOWNWARD)
4860 /* stack_slot is negative, but we want to index stack_usage_map
4861 with positive values. */
4862 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4863 upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
4864 else
4865 upper_bound = 0;
4867 lower_bound = upper_bound - arg->locate.size.constant;
4869 else
4871 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4872 lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
4873 else
4874 lower_bound = 0;
4876 upper_bound = lower_bound + arg->locate.size.constant;
4879 i = lower_bound;
4880 /* Don't worry about things in the fixed argument area;
4881 it has already been saved. */
4882 if (i < reg_parm_stack_space)
4883 i = reg_parm_stack_space;
4884 while (i < upper_bound && stack_usage_map[i] == 0)
4885 i++;
4887 if (i < upper_bound)
4889 /* We need to make a save area. */
4890 unsigned int size = arg->locate.size.constant * BITS_PER_UNIT;
4891 machine_mode save_mode = mode_for_size (size, MODE_INT, 1);
4892 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
4893 rtx stack_area = gen_rtx_MEM (save_mode, adr);
4895 if (save_mode == BLKmode)
4897 arg->save_area
4898 = assign_temp (TREE_TYPE (arg->tree_value), 1, 1);
4899 preserve_temp_slots (arg->save_area);
4900 emit_block_move (validize_mem (copy_rtx (arg->save_area)),
4901 stack_area,
4902 GEN_INT (arg->locate.size.constant),
4903 BLOCK_OP_CALL_PARM);
4905 else
4907 arg->save_area = gen_reg_rtx (save_mode);
4908 emit_move_insn (arg->save_area, stack_area);
4914 /* If this isn't going to be placed on both the stack and in registers,
4915 set up the register and number of words. */
4916 if (! arg->pass_on_stack)
4918 if (flags & ECF_SIBCALL)
4919 reg = arg->tail_call_reg;
4920 else
4921 reg = arg->reg;
4922 partial = arg->partial;
4925 /* Being passed entirely in a register. We shouldn't be called in
4926 this case. */
4927 gcc_assert (reg == 0 || partial != 0);
4929 /* If this arg needs special alignment, don't load the registers
4930 here. */
4931 if (arg->n_aligned_regs != 0)
4932 reg = 0;
4934 /* If this is being passed partially in a register, we can't evaluate
4935 it directly into its stack slot. Otherwise, we can. */
4936 if (arg->value == 0)
4938 /* stack_arg_under_construction is nonzero if a function argument is
4939 being evaluated directly into the outgoing argument list and
4940 expand_call must take special action to preserve the argument list
4941 if it is called recursively.
4943 For scalar function arguments stack_usage_map is sufficient to
4944 determine which stack slots must be saved and restored. Scalar
4945 arguments in general have pass_on_stack == 0.
4947 If this argument is initialized by a function which takes the
4948 address of the argument (a C++ constructor or a C function
4949 returning a BLKmode structure), then stack_usage_map is
4950 insufficient and expand_call must push the stack around the
4951 function call. Such arguments have pass_on_stack == 1.
4953 Note that it is always safe to set stack_arg_under_construction,
4954 but this generates suboptimal code if set when not needed. */
4956 if (arg->pass_on_stack)
4957 stack_arg_under_construction++;
4959 arg->value = expand_expr (pval,
4960 (partial
4961 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
4962 ? NULL_RTX : arg->stack,
4963 VOIDmode, EXPAND_STACK_PARM);
4965 /* If we are promoting object (or for any other reason) the mode
4966 doesn't agree, convert the mode. */
4968 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
4969 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
4970 arg->value, arg->unsignedp);
4972 if (arg->pass_on_stack)
4973 stack_arg_under_construction--;
4976 /* Check for overlap with already clobbered argument area. */
4977 if ((flags & ECF_SIBCALL)
4978 && MEM_P (arg->value)
4979 && mem_overlaps_already_clobbered_arg_p (XEXP (arg->value, 0),
4980 arg->locate.size.constant))
4981 sibcall_failure = 1;
4983 /* Don't allow anything left on stack from computation
4984 of argument to alloca. */
4985 if (flags & ECF_MAY_BE_ALLOCA)
4986 do_pending_stack_adjust ();
4988 if (arg->value == arg->stack)
4989 /* If the value is already in the stack slot, we are done. */
4991 else if (arg->mode != BLKmode)
4993 int size;
4994 unsigned int parm_align;
4996 /* Argument is a scalar, not entirely passed in registers.
4997 (If part is passed in registers, arg->partial says how much
4998 and emit_push_insn will take care of putting it there.)
5000 Push it, and if its size is less than the
5001 amount of space allocated to it,
5002 also bump stack pointer by the additional space.
5003 Note that in C the default argument promotions
5004 will prevent such mismatches. */
5006 size = GET_MODE_SIZE (arg->mode);
5007 /* Compute how much space the push instruction will push.
5008 On many machines, pushing a byte will advance the stack
5009 pointer by a halfword. */
5010 #ifdef PUSH_ROUNDING
5011 size = PUSH_ROUNDING (size);
5012 #endif
5013 used = size;
5015 /* Compute how much space the argument should get:
5016 round up to a multiple of the alignment for arguments. */
5017 if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
5018 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
5019 / (PARM_BOUNDARY / BITS_PER_UNIT))
5020 * (PARM_BOUNDARY / BITS_PER_UNIT));
5022 /* Compute the alignment of the pushed argument. */
5023 parm_align = arg->locate.boundary;
5024 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
5026 int pad = used - size;
5027 if (pad)
5029 unsigned int pad_align = least_bit_hwi (pad) * BITS_PER_UNIT;
5030 parm_align = MIN (parm_align, pad_align);
5034 /* This isn't already where we want it on the stack, so put it there.
5035 This can either be done with push or copy insns. */
5036 if (!emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX,
5037 parm_align, partial, reg, used - size, argblock,
5038 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
5039 ARGS_SIZE_RTX (arg->locate.alignment_pad), true))
5040 sibcall_failure = 1;
5042 /* Unless this is a partially-in-register argument, the argument is now
5043 in the stack. */
5044 if (partial == 0)
5045 arg->value = arg->stack;
5047 else
5049 /* BLKmode, at least partly to be pushed. */
5051 unsigned int parm_align;
5052 int excess;
5053 rtx size_rtx;
5055 /* Pushing a nonscalar.
5056 If part is passed in registers, PARTIAL says how much
5057 and emit_push_insn will take care of putting it there. */
5059 /* Round its size up to a multiple
5060 of the allocation unit for arguments. */
5062 if (arg->locate.size.var != 0)
5064 excess = 0;
5065 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
5067 else
5069 /* PUSH_ROUNDING has no effect on us, because emit_push_insn
5070 for BLKmode is careful to avoid it. */
5071 excess = (arg->locate.size.constant
5072 - int_size_in_bytes (TREE_TYPE (pval))
5073 + partial);
5074 size_rtx = expand_expr (size_in_bytes (TREE_TYPE (pval)),
5075 NULL_RTX, TYPE_MODE (sizetype),
5076 EXPAND_NORMAL);
5079 parm_align = arg->locate.boundary;
5081 /* When an argument is padded down, the block is aligned to
5082 PARM_BOUNDARY, but the actual argument isn't. */
5083 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
5085 if (arg->locate.size.var)
5086 parm_align = BITS_PER_UNIT;
5087 else if (excess)
5089 unsigned int excess_align = least_bit_hwi (excess) * BITS_PER_UNIT;
5090 parm_align = MIN (parm_align, excess_align);
5094 if ((flags & ECF_SIBCALL) && MEM_P (arg->value))
5096 /* emit_push_insn might not work properly if arg->value and
5097 argblock + arg->locate.offset areas overlap. */
5098 rtx x = arg->value;
5099 int i = 0;
5101 if (XEXP (x, 0) == crtl->args.internal_arg_pointer
5102 || (GET_CODE (XEXP (x, 0)) == PLUS
5103 && XEXP (XEXP (x, 0), 0) ==
5104 crtl->args.internal_arg_pointer
5105 && CONST_INT_P (XEXP (XEXP (x, 0), 1))))
5107 if (XEXP (x, 0) != crtl->args.internal_arg_pointer)
5108 i = INTVAL (XEXP (XEXP (x, 0), 1));
5110 /* arg.locate doesn't contain the pretend_args_size offset,
5111 it's part of argblock. Ensure we don't count it in I. */
5112 if (STACK_GROWS_DOWNWARD)
5113 i -= crtl->args.pretend_args_size;
5114 else
5115 i += crtl->args.pretend_args_size;
5117 /* expand_call should ensure this. */
5118 gcc_assert (!arg->locate.offset.var
5119 && arg->locate.size.var == 0
5120 && CONST_INT_P (size_rtx));
5122 if (arg->locate.offset.constant > i)
5124 if (arg->locate.offset.constant < i + INTVAL (size_rtx))
5125 sibcall_failure = 1;
5127 else if (arg->locate.offset.constant < i)
5129 /* Use arg->locate.size.constant instead of size_rtx
5130 because we only care about the part of the argument
5131 on the stack. */
5132 if (i < (arg->locate.offset.constant
5133 + arg->locate.size.constant))
5134 sibcall_failure = 1;
5136 else
5138 /* Even though they appear to be at the same location,
5139 if part of the outgoing argument is in registers,
5140 they aren't really at the same location. Check for
5141 this by making sure that the incoming size is the
5142 same as the outgoing size. */
5143 if (arg->locate.size.constant != INTVAL (size_rtx))
5144 sibcall_failure = 1;
5149 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
5150 parm_align, partial, reg, excess, argblock,
5151 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
5152 ARGS_SIZE_RTX (arg->locate.alignment_pad), false);
5154 /* Unless this is a partially-in-register argument, the argument is now
5155 in the stack.
5157 ??? Unlike the case above, in which we want the actual
5158 address of the data, so that we can load it directly into a
5159 register, here we want the address of the stack slot, so that
5160 it's properly aligned for word-by-word copying or something
5161 like that. It's not clear that this is always correct. */
5162 if (partial == 0)
5163 arg->value = arg->stack_slot;
5166 if (arg->reg && GET_CODE (arg->reg) == PARALLEL)
5168 tree type = TREE_TYPE (arg->tree_value);
5169 arg->parallel_value
5170 = emit_group_load_into_temps (arg->reg, arg->value, type,
5171 int_size_in_bytes (type));
5174 /* Mark all slots this store used. */
5175 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
5176 && argblock && ! variable_size && arg->stack)
5177 for (i = lower_bound; i < upper_bound; i++)
5178 stack_usage_map[i] = 1;
5180 /* Once we have pushed something, pops can't safely
5181 be deferred during the rest of the arguments. */
5182 NO_DEFER_POP;
5184 /* Free any temporary slots made in processing this argument. */
5185 pop_temp_slots ();
5187 return sibcall_failure;
5190 /* Nonzero if we do not know how to pass TYPE solely in registers. */
5192 bool
5193 must_pass_in_stack_var_size (machine_mode mode ATTRIBUTE_UNUSED,
5194 const_tree type)
5196 if (!type)
5197 return false;
5199 /* If the type has variable size... */
5200 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5201 return true;
5203 /* If the type is marked as addressable (it is required
5204 to be constructed into the stack)... */
5205 if (TREE_ADDRESSABLE (type))
5206 return true;
5208 return false;
5211 /* Another version of the TARGET_MUST_PASS_IN_STACK hook. This one
5212 takes trailing padding of a structure into account. */
5213 /* ??? Should be able to merge these two by examining BLOCK_REG_PADDING. */
5215 bool
5216 must_pass_in_stack_var_size_or_pad (machine_mode mode, const_tree type)
5218 if (!type)
5219 return false;
5221 /* If the type has variable size... */
5222 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5223 return true;
5225 /* If the type is marked as addressable (it is required
5226 to be constructed into the stack)... */
5227 if (TREE_ADDRESSABLE (type))
5228 return true;
5230 /* If the padding and mode of the type is such that a copy into
5231 a register would put it into the wrong part of the register. */
5232 if (mode == BLKmode
5233 && int_size_in_bytes (type) % (PARM_BOUNDARY / BITS_PER_UNIT)
5234 && (FUNCTION_ARG_PADDING (mode, type)
5235 == (BYTES_BIG_ENDIAN ? upward : downward)))
5236 return true;
5238 return false;