re PR fortran/88048 (ICE in check_data_variable, at fortran/resolve.c:15491)
[official-gcc.git] / gcc / calls.c
blob98c6377d78f6f21359785db971316dbb3fe51f2a
1 /* Convert function calls to rtl insns, for GNU C compiler.
2 Copyright (C) 1989-2018 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 "memmodel.h"
30 #include "tm_p.h"
31 #include "stringpool.h"
32 #include "expmed.h"
33 #include "optabs.h"
34 #include "emit-rtl.h"
35 #include "cgraph.h"
36 #include "diagnostic-core.h"
37 #include "fold-const.h"
38 #include "stor-layout.h"
39 #include "varasm.h"
40 #include "internal-fn.h"
41 #include "dojump.h"
42 #include "explow.h"
43 #include "calls.h"
44 #include "expr.h"
45 #include "output.h"
46 #include "langhooks.h"
47 #include "except.h"
48 #include "dbgcnt.h"
49 #include "rtl-iter.h"
50 #include "tree-vrp.h"
51 #include "tree-ssanames.h"
52 #include "tree-ssa-strlen.h"
53 #include "intl.h"
54 #include "stringpool.h"
55 #include "attribs.h"
56 #include "builtins.h"
57 #include "gimple-fold.h"
59 /* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
60 #define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
62 /* Data structure and subroutines used within expand_call. */
64 struct arg_data
66 /* Tree node for this argument. */
67 tree tree_value;
68 /* Mode for value; TYPE_MODE unless promoted. */
69 machine_mode mode;
70 /* Current RTL value for argument, or 0 if it isn't precomputed. */
71 rtx value;
72 /* Initially-compute RTL value for argument; only for const functions. */
73 rtx initial_value;
74 /* Register to pass this argument in, 0 if passed on stack, or an
75 PARALLEL if the arg is to be copied into multiple non-contiguous
76 registers. */
77 rtx reg;
78 /* Register to pass this argument in when generating tail call sequence.
79 This is not the same register as for normal calls on machines with
80 register windows. */
81 rtx tail_call_reg;
82 /* If REG is a PARALLEL, this is a copy of VALUE pulled into the correct
83 form for emit_group_move. */
84 rtx parallel_value;
85 /* If value is passed in neither reg nor stack, this field holds a number
86 of a special slot to be used. */
87 rtx special_slot;
88 /* For pointer bounds hold an index of parm bounds are bound to. -1 if
89 there is no such pointer. */
90 int pointer_arg;
91 /* If pointer_arg refers a structure, then pointer_offset holds an offset
92 of a pointer in this structure. */
93 int pointer_offset;
94 /* If REG was promoted from the actual mode of the argument expression,
95 indicates whether the promotion is sign- or zero-extended. */
96 int unsignedp;
97 /* Number of bytes to put in registers. 0 means put the whole arg
98 in registers. Also 0 if not passed in registers. */
99 int partial;
100 /* Nonzero if argument must be passed on stack.
101 Note that some arguments may be passed on the stack
102 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
103 pass_on_stack identifies arguments that *cannot* go in registers. */
104 int pass_on_stack;
105 /* Some fields packaged up for locate_and_pad_parm. */
106 struct locate_and_pad_arg_data locate;
107 /* Location on the stack at which parameter should be stored. The store
108 has already been done if STACK == VALUE. */
109 rtx stack;
110 /* Location on the stack of the start of this argument slot. This can
111 differ from STACK if this arg pads downward. This location is known
112 to be aligned to TARGET_FUNCTION_ARG_BOUNDARY. */
113 rtx stack_slot;
114 /* Place that this stack area has been saved, if needed. */
115 rtx save_area;
116 /* If an argument's alignment does not permit direct copying into registers,
117 copy in smaller-sized pieces into pseudos. These are stored in a
118 block pointed to by this field. The next field says how many
119 word-sized pseudos we made. */
120 rtx *aligned_regs;
121 int n_aligned_regs;
124 /* A vector of one char per byte of stack space. A byte if nonzero if
125 the corresponding stack location has been used.
126 This vector is used to prevent a function call within an argument from
127 clobbering any stack already set up. */
128 static char *stack_usage_map;
130 /* Size of STACK_USAGE_MAP. */
131 static unsigned int highest_outgoing_arg_in_use;
133 /* Assume that any stack location at this byte index is used,
134 without checking the contents of stack_usage_map. */
135 static unsigned HOST_WIDE_INT stack_usage_watermark = HOST_WIDE_INT_M1U;
137 /* A bitmap of virtual-incoming stack space. Bit is set if the corresponding
138 stack location's tail call argument has been already stored into the stack.
139 This bitmap is used to prevent sibling call optimization if function tries
140 to use parent's incoming argument slots when they have been already
141 overwritten with tail call arguments. */
142 static sbitmap stored_args_map;
144 /* Assume that any virtual-incoming location at this byte index has been
145 stored, without checking the contents of stored_args_map. */
146 static unsigned HOST_WIDE_INT stored_args_watermark;
148 /* stack_arg_under_construction is nonzero when an argument may be
149 initialized with a constructor call (including a C function that
150 returns a BLKmode struct) and expand_call must take special action
151 to make sure the object being constructed does not overlap the
152 argument list for the constructor call. */
153 static int stack_arg_under_construction;
155 static void precompute_register_parameters (int, struct arg_data *, int *);
156 static int store_one_arg (struct arg_data *, rtx, int, int, int);
157 static void store_unaligned_arguments_into_pseudos (struct arg_data *, int);
158 static int finalize_must_preallocate (int, int, struct arg_data *,
159 struct args_size *);
160 static void precompute_arguments (int, struct arg_data *);
161 static void compute_argument_addresses (struct arg_data *, rtx, int);
162 static rtx rtx_for_function_call (tree, tree);
163 static void load_register_parameters (struct arg_data *, int, rtx *, int,
164 int, int *);
165 static int special_function_p (const_tree, int);
166 static int check_sibcall_argument_overlap_1 (rtx);
167 static int check_sibcall_argument_overlap (rtx_insn *, struct arg_data *, int);
169 static tree split_complex_types (tree);
171 #ifdef REG_PARM_STACK_SPACE
172 static rtx save_fixed_argument_area (int, rtx, int *, int *);
173 static void restore_fixed_argument_area (rtx, rtx, int, int);
174 #endif
176 /* Return true if bytes [LOWER_BOUND, UPPER_BOUND) of the outgoing
177 stack region might already be in use. */
179 static bool
180 stack_region_maybe_used_p (poly_uint64 lower_bound, poly_uint64 upper_bound,
181 unsigned int reg_parm_stack_space)
183 unsigned HOST_WIDE_INT const_lower, const_upper;
184 const_lower = constant_lower_bound (lower_bound);
185 if (!upper_bound.is_constant (&const_upper))
186 const_upper = HOST_WIDE_INT_M1U;
188 if (const_upper > stack_usage_watermark)
189 return true;
191 /* Don't worry about things in the fixed argument area;
192 it has already been saved. */
193 const_lower = MAX (const_lower, reg_parm_stack_space);
194 const_upper = MIN (const_upper, highest_outgoing_arg_in_use);
195 for (unsigned HOST_WIDE_INT i = const_lower; i < const_upper; ++i)
196 if (stack_usage_map[i])
197 return true;
198 return false;
201 /* Record that bytes [LOWER_BOUND, UPPER_BOUND) of the outgoing
202 stack region are now in use. */
204 static void
205 mark_stack_region_used (poly_uint64 lower_bound, poly_uint64 upper_bound)
207 unsigned HOST_WIDE_INT const_lower, const_upper;
208 const_lower = constant_lower_bound (lower_bound);
209 if (upper_bound.is_constant (&const_upper))
210 for (unsigned HOST_WIDE_INT i = const_lower; i < const_upper; ++i)
211 stack_usage_map[i] = 1;
212 else
213 stack_usage_watermark = MIN (stack_usage_watermark, const_lower);
216 /* Force FUNEXP into a form suitable for the address of a CALL,
217 and return that as an rtx. Also load the static chain register
218 if FNDECL is a nested function.
220 CALL_FUSAGE points to a variable holding the prospective
221 CALL_INSN_FUNCTION_USAGE information. */
224 prepare_call_address (tree fndecl_or_type, rtx funexp, rtx static_chain_value,
225 rtx *call_fusage, int reg_parm_seen, int flags)
227 /* Make a valid memory address and copy constants through pseudo-regs,
228 but not for a constant address if -fno-function-cse. */
229 if (GET_CODE (funexp) != SYMBOL_REF)
231 /* If it's an indirect call by descriptor, generate code to perform
232 runtime identification of the pointer and load the descriptor. */
233 if ((flags & ECF_BY_DESCRIPTOR) && !flag_trampolines)
235 const int bit_val = targetm.calls.custom_function_descriptors;
236 rtx call_lab = gen_label_rtx ();
238 gcc_assert (fndecl_or_type && TYPE_P (fndecl_or_type));
239 fndecl_or_type
240 = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, NULL_TREE,
241 fndecl_or_type);
242 DECL_STATIC_CHAIN (fndecl_or_type) = 1;
243 rtx chain = targetm.calls.static_chain (fndecl_or_type, false);
245 if (GET_MODE (funexp) != Pmode)
246 funexp = convert_memory_address (Pmode, funexp);
248 /* Avoid long live ranges around function calls. */
249 funexp = copy_to_mode_reg (Pmode, funexp);
251 if (REG_P (chain))
252 emit_insn (gen_rtx_CLOBBER (VOIDmode, chain));
254 /* Emit the runtime identification pattern. */
255 rtx mask = gen_rtx_AND (Pmode, funexp, GEN_INT (bit_val));
256 emit_cmp_and_jump_insns (mask, const0_rtx, EQ, NULL_RTX, Pmode, 1,
257 call_lab);
259 /* Statically predict the branch to very likely taken. */
260 rtx_insn *insn = get_last_insn ();
261 if (JUMP_P (insn))
262 predict_insn_def (insn, PRED_BUILTIN_EXPECT, TAKEN);
264 /* Load the descriptor. */
265 rtx mem = gen_rtx_MEM (ptr_mode,
266 plus_constant (Pmode, funexp, - bit_val));
267 MEM_NOTRAP_P (mem) = 1;
268 mem = convert_memory_address (Pmode, mem);
269 emit_move_insn (chain, mem);
271 mem = gen_rtx_MEM (ptr_mode,
272 plus_constant (Pmode, funexp,
273 POINTER_SIZE / BITS_PER_UNIT
274 - bit_val));
275 MEM_NOTRAP_P (mem) = 1;
276 mem = convert_memory_address (Pmode, mem);
277 emit_move_insn (funexp, mem);
279 emit_label (call_lab);
281 if (REG_P (chain))
283 use_reg (call_fusage, chain);
284 STATIC_CHAIN_REG_P (chain) = 1;
287 /* Make sure we're not going to be overwritten below. */
288 gcc_assert (!static_chain_value);
291 /* If we are using registers for parameters, force the
292 function address into a register now. */
293 funexp = ((reg_parm_seen
294 && targetm.small_register_classes_for_mode_p (FUNCTION_MODE))
295 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
296 : memory_address (FUNCTION_MODE, funexp));
298 else
300 /* funexp could be a SYMBOL_REF represents a function pointer which is
301 of ptr_mode. In this case, it should be converted into address mode
302 to be a valid address for memory rtx pattern. See PR 64971. */
303 if (GET_MODE (funexp) != Pmode)
304 funexp = convert_memory_address (Pmode, funexp);
306 if (!(flags & ECF_SIBCALL))
308 if (!NO_FUNCTION_CSE && optimize && ! flag_no_function_cse)
309 funexp = force_reg (Pmode, funexp);
313 if (static_chain_value != 0
314 && (TREE_CODE (fndecl_or_type) != FUNCTION_DECL
315 || DECL_STATIC_CHAIN (fndecl_or_type)))
317 rtx chain;
319 chain = targetm.calls.static_chain (fndecl_or_type, false);
320 static_chain_value = convert_memory_address (Pmode, static_chain_value);
322 emit_move_insn (chain, static_chain_value);
323 if (REG_P (chain))
325 use_reg (call_fusage, chain);
326 STATIC_CHAIN_REG_P (chain) = 1;
330 return funexp;
333 /* Generate instructions to call function FUNEXP,
334 and optionally pop the results.
335 The CALL_INSN is the first insn generated.
337 FNDECL is the declaration node of the function. This is given to the
338 hook TARGET_RETURN_POPS_ARGS to determine whether this function pops
339 its own args.
341 FUNTYPE is the data type of the function. This is given to the hook
342 TARGET_RETURN_POPS_ARGS to determine whether this function pops its
343 own args. We used to allow an identifier for library functions, but
344 that doesn't work when the return type is an aggregate type and the
345 calling convention says that the pointer to this aggregate is to be
346 popped by the callee.
348 STACK_SIZE is the number of bytes of arguments on the stack,
349 ROUNDED_STACK_SIZE is that number rounded up to
350 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
351 both to put into the call insn and to generate explicit popping
352 code if necessary.
354 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
355 It is zero if this call doesn't want a structure value.
357 NEXT_ARG_REG is the rtx that results from executing
358 targetm.calls.function_arg (&args_so_far, VOIDmode, void_type_node, true)
359 just after all the args have had their registers assigned.
360 This could be whatever you like, but normally it is the first
361 arg-register beyond those used for args in this call,
362 or 0 if all the arg-registers are used in this call.
363 It is passed on to `gen_call' so you can put this info in the call insn.
365 VALREG is a hard register in which a value is returned,
366 or 0 if the call does not return a value.
368 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
369 the args to this call were processed.
370 We restore `inhibit_defer_pop' to that value.
372 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
373 denote registers used by the called function. */
375 static void
376 emit_call_1 (rtx funexp, tree fntree ATTRIBUTE_UNUSED, tree fndecl ATTRIBUTE_UNUSED,
377 tree funtype ATTRIBUTE_UNUSED,
378 poly_int64 stack_size ATTRIBUTE_UNUSED,
379 poly_int64 rounded_stack_size,
380 poly_int64 struct_value_size ATTRIBUTE_UNUSED,
381 rtx next_arg_reg ATTRIBUTE_UNUSED, rtx valreg,
382 int old_inhibit_defer_pop, rtx call_fusage, int ecf_flags,
383 cumulative_args_t args_so_far ATTRIBUTE_UNUSED)
385 rtx rounded_stack_size_rtx = gen_int_mode (rounded_stack_size, Pmode);
386 rtx call, funmem, pat;
387 int already_popped = 0;
388 poly_int64 n_popped = 0;
390 /* Sibling call patterns never pop arguments (no sibcall(_value)_pop
391 patterns exist). Any popping that the callee does on return will
392 be from our caller's frame rather than ours. */
393 if (!(ecf_flags & ECF_SIBCALL))
395 n_popped += targetm.calls.return_pops_args (fndecl, funtype, stack_size);
397 #ifdef CALL_POPS_ARGS
398 n_popped += CALL_POPS_ARGS (*get_cumulative_args (args_so_far));
399 #endif
402 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
403 and we don't want to load it into a register as an optimization,
404 because prepare_call_address already did it if it should be done. */
405 if (GET_CODE (funexp) != SYMBOL_REF)
406 funexp = memory_address (FUNCTION_MODE, funexp);
408 funmem = gen_rtx_MEM (FUNCTION_MODE, funexp);
409 if (fndecl && TREE_CODE (fndecl) == FUNCTION_DECL)
411 tree t = fndecl;
413 /* Although a built-in FUNCTION_DECL and its non-__builtin
414 counterpart compare equal and get a shared mem_attrs, they
415 produce different dump output in compare-debug compilations,
416 if an entry gets garbage collected in one compilation, then
417 adds a different (but equivalent) entry, while the other
418 doesn't run the garbage collector at the same spot and then
419 shares the mem_attr with the equivalent entry. */
420 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
422 tree t2 = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
423 if (t2)
424 t = t2;
427 set_mem_expr (funmem, t);
429 else if (fntree)
430 set_mem_expr (funmem, build_simple_mem_ref (CALL_EXPR_FN (fntree)));
432 if (ecf_flags & ECF_SIBCALL)
434 if (valreg)
435 pat = targetm.gen_sibcall_value (valreg, funmem,
436 rounded_stack_size_rtx,
437 next_arg_reg, NULL_RTX);
438 else
439 pat = targetm.gen_sibcall (funmem, rounded_stack_size_rtx,
440 next_arg_reg,
441 gen_int_mode (struct_value_size, Pmode));
443 /* If the target has "call" or "call_value" insns, then prefer them
444 if no arguments are actually popped. If the target does not have
445 "call" or "call_value" insns, then we must use the popping versions
446 even if the call has no arguments to pop. */
447 else if (maybe_ne (n_popped, 0)
448 || !(valreg
449 ? targetm.have_call_value ()
450 : targetm.have_call ()))
452 rtx n_pop = gen_int_mode (n_popped, Pmode);
454 /* If this subroutine pops its own args, record that in the call insn
455 if possible, for the sake of frame pointer elimination. */
457 if (valreg)
458 pat = targetm.gen_call_value_pop (valreg, funmem,
459 rounded_stack_size_rtx,
460 next_arg_reg, n_pop);
461 else
462 pat = targetm.gen_call_pop (funmem, rounded_stack_size_rtx,
463 next_arg_reg, n_pop);
465 already_popped = 1;
467 else
469 if (valreg)
470 pat = targetm.gen_call_value (valreg, funmem, rounded_stack_size_rtx,
471 next_arg_reg, NULL_RTX);
472 else
473 pat = targetm.gen_call (funmem, rounded_stack_size_rtx, next_arg_reg,
474 gen_int_mode (struct_value_size, Pmode));
476 emit_insn (pat);
478 /* Find the call we just emitted. */
479 rtx_call_insn *call_insn = last_call_insn ();
481 /* Some target create a fresh MEM instead of reusing the one provided
482 above. Set its MEM_EXPR. */
483 call = get_call_rtx_from (call_insn);
484 if (call
485 && MEM_EXPR (XEXP (call, 0)) == NULL_TREE
486 && MEM_EXPR (funmem) != NULL_TREE)
487 set_mem_expr (XEXP (call, 0), MEM_EXPR (funmem));
489 /* Put the register usage information there. */
490 add_function_usage_to (call_insn, call_fusage);
492 /* If this is a const call, then set the insn's unchanging bit. */
493 if (ecf_flags & ECF_CONST)
494 RTL_CONST_CALL_P (call_insn) = 1;
496 /* If this is a pure call, then set the insn's unchanging bit. */
497 if (ecf_flags & ECF_PURE)
498 RTL_PURE_CALL_P (call_insn) = 1;
500 /* If this is a const call, then set the insn's unchanging bit. */
501 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
502 RTL_LOOPING_CONST_OR_PURE_CALL_P (call_insn) = 1;
504 /* Create a nothrow REG_EH_REGION note, if needed. */
505 make_reg_eh_region_note (call_insn, ecf_flags, 0);
507 if (ecf_flags & ECF_NORETURN)
508 add_reg_note (call_insn, REG_NORETURN, const0_rtx);
510 if (ecf_flags & ECF_RETURNS_TWICE)
512 add_reg_note (call_insn, REG_SETJMP, const0_rtx);
513 cfun->calls_setjmp = 1;
516 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
518 /* Restore this now, so that we do defer pops for this call's args
519 if the context of the call as a whole permits. */
520 inhibit_defer_pop = old_inhibit_defer_pop;
522 if (maybe_ne (n_popped, 0))
524 if (!already_popped)
525 CALL_INSN_FUNCTION_USAGE (call_insn)
526 = gen_rtx_EXPR_LIST (VOIDmode,
527 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
528 CALL_INSN_FUNCTION_USAGE (call_insn));
529 rounded_stack_size -= n_popped;
530 rounded_stack_size_rtx = gen_int_mode (rounded_stack_size, Pmode);
531 stack_pointer_delta -= n_popped;
533 add_args_size_note (call_insn, stack_pointer_delta);
535 /* If popup is needed, stack realign must use DRAP */
536 if (SUPPORTS_STACK_ALIGNMENT)
537 crtl->need_drap = true;
539 /* For noreturn calls when not accumulating outgoing args force
540 REG_ARGS_SIZE note to prevent crossjumping of calls with different
541 args sizes. */
542 else if (!ACCUMULATE_OUTGOING_ARGS && (ecf_flags & ECF_NORETURN) != 0)
543 add_args_size_note (call_insn, stack_pointer_delta);
545 if (!ACCUMULATE_OUTGOING_ARGS)
547 /* If returning from the subroutine does not automatically pop the args,
548 we need an instruction to pop them sooner or later.
549 Perhaps do it now; perhaps just record how much space to pop later.
551 If returning from the subroutine does pop the args, indicate that the
552 stack pointer will be changed. */
554 if (maybe_ne (rounded_stack_size, 0))
556 if (ecf_flags & ECF_NORETURN)
557 /* Just pretend we did the pop. */
558 stack_pointer_delta -= rounded_stack_size;
559 else if (flag_defer_pop && inhibit_defer_pop == 0
560 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
561 pending_stack_adjust += rounded_stack_size;
562 else
563 adjust_stack (rounded_stack_size_rtx);
566 /* When we accumulate outgoing args, we must avoid any stack manipulations.
567 Restore the stack pointer to its original value now. Usually
568 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
569 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
570 popping variants of functions exist as well.
572 ??? We may optimize similar to defer_pop above, but it is
573 probably not worthwhile.
575 ??? It will be worthwhile to enable combine_stack_adjustments even for
576 such machines. */
577 else if (maybe_ne (n_popped, 0))
578 anti_adjust_stack (gen_int_mode (n_popped, Pmode));
581 /* Determine if the function identified by FNDECL is one with
582 special properties we wish to know about. Modify FLAGS accordingly.
584 For example, if the function might return more than one time (setjmp), then
585 set ECF_RETURNS_TWICE.
587 Set ECF_MAY_BE_ALLOCA for any memory allocation function that might allocate
588 space from the stack such as alloca. */
590 static int
591 special_function_p (const_tree fndecl, int flags)
593 tree name_decl = DECL_NAME (fndecl);
595 if (fndecl && name_decl
596 && IDENTIFIER_LENGTH (name_decl) <= 11
597 /* Exclude functions not at the file scope, or not `extern',
598 since they are not the magic functions we would otherwise
599 think they are.
600 FIXME: this should be handled with attributes, not with this
601 hacky imitation of DECL_ASSEMBLER_NAME. It's (also) wrong
602 because you can declare fork() inside a function if you
603 wish. */
604 && (DECL_CONTEXT (fndecl) == NULL_TREE
605 || TREE_CODE (DECL_CONTEXT (fndecl)) == TRANSLATION_UNIT_DECL)
606 && TREE_PUBLIC (fndecl))
608 const char *name = IDENTIFIER_POINTER (name_decl);
609 const char *tname = name;
611 /* We assume that alloca will always be called by name. It
612 makes no sense to pass it as a pointer-to-function to
613 anything that does not understand its behavior. */
614 if (IDENTIFIER_LENGTH (name_decl) == 6
615 && name[0] == 'a'
616 && ! strcmp (name, "alloca"))
617 flags |= ECF_MAY_BE_ALLOCA;
619 /* Disregard prefix _ or __. */
620 if (name[0] == '_')
622 if (name[1] == '_')
623 tname += 2;
624 else
625 tname += 1;
628 /* ECF_RETURNS_TWICE is safe even for -ffreestanding. */
629 if (! strcmp (tname, "setjmp")
630 || ! strcmp (tname, "sigsetjmp")
631 || ! strcmp (name, "savectx")
632 || ! strcmp (name, "vfork")
633 || ! strcmp (name, "getcontext"))
634 flags |= ECF_RETURNS_TWICE;
637 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
638 && ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (fndecl)))
639 flags |= ECF_MAY_BE_ALLOCA;
641 return flags;
644 /* Similar to special_function_p; return a set of ERF_ flags for the
645 function FNDECL. */
646 static int
647 decl_return_flags (tree fndecl)
649 tree attr;
650 tree type = TREE_TYPE (fndecl);
651 if (!type)
652 return 0;
654 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
655 if (!attr)
656 return 0;
658 attr = TREE_VALUE (TREE_VALUE (attr));
659 if (!attr || TREE_STRING_LENGTH (attr) < 1)
660 return 0;
662 switch (TREE_STRING_POINTER (attr)[0])
664 case '1':
665 case '2':
666 case '3':
667 case '4':
668 return ERF_RETURNS_ARG | (TREE_STRING_POINTER (attr)[0] - '1');
670 case 'm':
671 return ERF_NOALIAS;
673 case '.':
674 default:
675 return 0;
679 /* Return nonzero when FNDECL represents a call to setjmp. */
682 setjmp_call_p (const_tree fndecl)
684 if (DECL_IS_RETURNS_TWICE (fndecl))
685 return ECF_RETURNS_TWICE;
686 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
690 /* Return true if STMT may be an alloca call. */
692 bool
693 gimple_maybe_alloca_call_p (const gimple *stmt)
695 tree fndecl;
697 if (!is_gimple_call (stmt))
698 return false;
700 fndecl = gimple_call_fndecl (stmt);
701 if (fndecl && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
702 return true;
704 return false;
707 /* Return true if STMT is a builtin alloca call. */
709 bool
710 gimple_alloca_call_p (const gimple *stmt)
712 tree fndecl;
714 if (!is_gimple_call (stmt))
715 return false;
717 fndecl = gimple_call_fndecl (stmt);
718 if (fndecl && fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
719 switch (DECL_FUNCTION_CODE (fndecl))
721 CASE_BUILT_IN_ALLOCA:
722 return gimple_call_num_args (stmt) > 0;
723 default:
724 break;
727 return false;
730 /* Return true when exp contains a builtin alloca call. */
732 bool
733 alloca_call_p (const_tree exp)
735 tree fndecl;
736 if (TREE_CODE (exp) == CALL_EXPR
737 && (fndecl = get_callee_fndecl (exp))
738 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
739 switch (DECL_FUNCTION_CODE (fndecl))
741 CASE_BUILT_IN_ALLOCA:
742 return true;
743 default:
744 break;
747 return false;
750 /* Return TRUE if FNDECL is either a TM builtin or a TM cloned
751 function. Return FALSE otherwise. */
753 static bool
754 is_tm_builtin (const_tree fndecl)
756 if (fndecl == NULL)
757 return false;
759 if (decl_is_tm_clone (fndecl))
760 return true;
762 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
764 switch (DECL_FUNCTION_CODE (fndecl))
766 case BUILT_IN_TM_COMMIT:
767 case BUILT_IN_TM_COMMIT_EH:
768 case BUILT_IN_TM_ABORT:
769 case BUILT_IN_TM_IRREVOCABLE:
770 case BUILT_IN_TM_GETTMCLONE_IRR:
771 case BUILT_IN_TM_MEMCPY:
772 case BUILT_IN_TM_MEMMOVE:
773 case BUILT_IN_TM_MEMSET:
774 CASE_BUILT_IN_TM_STORE (1):
775 CASE_BUILT_IN_TM_STORE (2):
776 CASE_BUILT_IN_TM_STORE (4):
777 CASE_BUILT_IN_TM_STORE (8):
778 CASE_BUILT_IN_TM_STORE (FLOAT):
779 CASE_BUILT_IN_TM_STORE (DOUBLE):
780 CASE_BUILT_IN_TM_STORE (LDOUBLE):
781 CASE_BUILT_IN_TM_STORE (M64):
782 CASE_BUILT_IN_TM_STORE (M128):
783 CASE_BUILT_IN_TM_STORE (M256):
784 CASE_BUILT_IN_TM_LOAD (1):
785 CASE_BUILT_IN_TM_LOAD (2):
786 CASE_BUILT_IN_TM_LOAD (4):
787 CASE_BUILT_IN_TM_LOAD (8):
788 CASE_BUILT_IN_TM_LOAD (FLOAT):
789 CASE_BUILT_IN_TM_LOAD (DOUBLE):
790 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
791 CASE_BUILT_IN_TM_LOAD (M64):
792 CASE_BUILT_IN_TM_LOAD (M128):
793 CASE_BUILT_IN_TM_LOAD (M256):
794 case BUILT_IN_TM_LOG:
795 case BUILT_IN_TM_LOG_1:
796 case BUILT_IN_TM_LOG_2:
797 case BUILT_IN_TM_LOG_4:
798 case BUILT_IN_TM_LOG_8:
799 case BUILT_IN_TM_LOG_FLOAT:
800 case BUILT_IN_TM_LOG_DOUBLE:
801 case BUILT_IN_TM_LOG_LDOUBLE:
802 case BUILT_IN_TM_LOG_M64:
803 case BUILT_IN_TM_LOG_M128:
804 case BUILT_IN_TM_LOG_M256:
805 return true;
806 default:
807 break;
810 return false;
813 /* Detect flags (function attributes) from the function decl or type node. */
816 flags_from_decl_or_type (const_tree exp)
818 int flags = 0;
820 if (DECL_P (exp))
822 /* The function exp may have the `malloc' attribute. */
823 if (DECL_IS_MALLOC (exp))
824 flags |= ECF_MALLOC;
826 /* The function exp may have the `returns_twice' attribute. */
827 if (DECL_IS_RETURNS_TWICE (exp))
828 flags |= ECF_RETURNS_TWICE;
830 /* Process the pure and const attributes. */
831 if (TREE_READONLY (exp))
832 flags |= ECF_CONST;
833 if (DECL_PURE_P (exp))
834 flags |= ECF_PURE;
835 if (DECL_LOOPING_CONST_OR_PURE_P (exp))
836 flags |= ECF_LOOPING_CONST_OR_PURE;
838 if (DECL_IS_NOVOPS (exp))
839 flags |= ECF_NOVOPS;
840 if (lookup_attribute ("leaf", DECL_ATTRIBUTES (exp)))
841 flags |= ECF_LEAF;
842 if (lookup_attribute ("cold", DECL_ATTRIBUTES (exp)))
843 flags |= ECF_COLD;
845 if (TREE_NOTHROW (exp))
846 flags |= ECF_NOTHROW;
848 if (flag_tm)
850 if (is_tm_builtin (exp))
851 flags |= ECF_TM_BUILTIN;
852 else if ((flags & (ECF_CONST|ECF_NOVOPS)) != 0
853 || lookup_attribute ("transaction_pure",
854 TYPE_ATTRIBUTES (TREE_TYPE (exp))))
855 flags |= ECF_TM_PURE;
858 flags = special_function_p (exp, flags);
860 else if (TYPE_P (exp))
862 if (TYPE_READONLY (exp))
863 flags |= ECF_CONST;
865 if (flag_tm
866 && ((flags & ECF_CONST) != 0
867 || lookup_attribute ("transaction_pure", TYPE_ATTRIBUTES (exp))))
868 flags |= ECF_TM_PURE;
870 else
871 gcc_unreachable ();
873 if (TREE_THIS_VOLATILE (exp))
875 flags |= ECF_NORETURN;
876 if (flags & (ECF_CONST|ECF_PURE))
877 flags |= ECF_LOOPING_CONST_OR_PURE;
880 return flags;
883 /* Detect flags from a CALL_EXPR. */
886 call_expr_flags (const_tree t)
888 int flags;
889 tree decl = get_callee_fndecl (t);
891 if (decl)
892 flags = flags_from_decl_or_type (decl);
893 else if (CALL_EXPR_FN (t) == NULL_TREE)
894 flags = internal_fn_flags (CALL_EXPR_IFN (t));
895 else
897 tree type = TREE_TYPE (CALL_EXPR_FN (t));
898 if (type && TREE_CODE (type) == POINTER_TYPE)
899 flags = flags_from_decl_or_type (TREE_TYPE (type));
900 else
901 flags = 0;
902 if (CALL_EXPR_BY_DESCRIPTOR (t))
903 flags |= ECF_BY_DESCRIPTOR;
906 return flags;
909 /* Return true if TYPE should be passed by invisible reference. */
911 bool
912 pass_by_reference (CUMULATIVE_ARGS *ca, machine_mode mode,
913 tree type, bool named_arg)
915 if (type)
917 /* If this type contains non-trivial constructors, then it is
918 forbidden for the middle-end to create any new copies. */
919 if (TREE_ADDRESSABLE (type))
920 return true;
922 /* GCC post 3.4 passes *all* variable sized types by reference. */
923 if (!TYPE_SIZE (type) || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
924 return true;
926 /* If a record type should be passed the same as its first (and only)
927 member, use the type and mode of that member. */
928 if (TREE_CODE (type) == RECORD_TYPE && TYPE_TRANSPARENT_AGGR (type))
930 type = TREE_TYPE (first_field (type));
931 mode = TYPE_MODE (type);
935 return targetm.calls.pass_by_reference (pack_cumulative_args (ca), mode,
936 type, named_arg);
939 /* Return true if TYPE, which is passed by reference, should be callee
940 copied instead of caller copied. */
942 bool
943 reference_callee_copied (CUMULATIVE_ARGS *ca, machine_mode mode,
944 tree type, bool named_arg)
946 if (type && TREE_ADDRESSABLE (type))
947 return false;
948 return targetm.calls.callee_copies (pack_cumulative_args (ca), mode, type,
949 named_arg);
953 /* Precompute all register parameters as described by ARGS, storing values
954 into fields within the ARGS array.
956 NUM_ACTUALS indicates the total number elements in the ARGS array.
958 Set REG_PARM_SEEN if we encounter a register parameter. */
960 static void
961 precompute_register_parameters (int num_actuals, struct arg_data *args,
962 int *reg_parm_seen)
964 int i;
966 *reg_parm_seen = 0;
968 for (i = 0; i < num_actuals; i++)
969 if (args[i].reg != 0 && ! args[i].pass_on_stack)
971 *reg_parm_seen = 1;
973 if (args[i].value == 0)
975 push_temp_slots ();
976 args[i].value = expand_normal (args[i].tree_value);
977 preserve_temp_slots (args[i].value);
978 pop_temp_slots ();
981 /* If we are to promote the function arg to a wider mode,
982 do it now. */
984 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
985 args[i].value
986 = convert_modes (args[i].mode,
987 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
988 args[i].value, args[i].unsignedp);
990 /* If the value is a non-legitimate constant, force it into a
991 pseudo now. TLS symbols sometimes need a call to resolve. */
992 if (CONSTANT_P (args[i].value)
993 && !targetm.legitimate_constant_p (args[i].mode, args[i].value))
994 args[i].value = force_reg (args[i].mode, args[i].value);
996 /* If we're going to have to load the value by parts, pull the
997 parts into pseudos. The part extraction process can involve
998 non-trivial computation. */
999 if (GET_CODE (args[i].reg) == PARALLEL)
1001 tree type = TREE_TYPE (args[i].tree_value);
1002 args[i].parallel_value
1003 = emit_group_load_into_temps (args[i].reg, args[i].value,
1004 type, int_size_in_bytes (type));
1007 /* If the value is expensive, and we are inside an appropriately
1008 short loop, put the value into a pseudo and then put the pseudo
1009 into the hard reg.
1011 For small register classes, also do this if this call uses
1012 register parameters. This is to avoid reload conflicts while
1013 loading the parameters registers. */
1015 else if ((! (REG_P (args[i].value)
1016 || (GET_CODE (args[i].value) == SUBREG
1017 && REG_P (SUBREG_REG (args[i].value)))))
1018 && args[i].mode != BLKmode
1019 && (set_src_cost (args[i].value, args[i].mode,
1020 optimize_insn_for_speed_p ())
1021 > COSTS_N_INSNS (1))
1022 && ((*reg_parm_seen
1023 && targetm.small_register_classes_for_mode_p (args[i].mode))
1024 || optimize))
1025 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
1029 #ifdef REG_PARM_STACK_SPACE
1031 /* The argument list is the property of the called routine and it
1032 may clobber it. If the fixed area has been used for previous
1033 parameters, we must save and restore it. */
1035 static rtx
1036 save_fixed_argument_area (int reg_parm_stack_space, rtx argblock, int *low_to_save, int *high_to_save)
1038 unsigned int low;
1039 unsigned int high;
1041 /* Compute the boundary of the area that needs to be saved, if any. */
1042 high = reg_parm_stack_space;
1043 if (ARGS_GROW_DOWNWARD)
1044 high += 1;
1046 if (high > highest_outgoing_arg_in_use)
1047 high = highest_outgoing_arg_in_use;
1049 for (low = 0; low < high; low++)
1050 if (stack_usage_map[low] != 0 || low >= stack_usage_watermark)
1052 int num_to_save;
1053 machine_mode save_mode;
1054 int delta;
1055 rtx addr;
1056 rtx stack_area;
1057 rtx save_area;
1059 while (stack_usage_map[--high] == 0)
1062 *low_to_save = low;
1063 *high_to_save = high;
1065 num_to_save = high - low + 1;
1067 /* If we don't have the required alignment, must do this
1068 in BLKmode. */
1069 scalar_int_mode imode;
1070 if (int_mode_for_size (num_to_save * BITS_PER_UNIT, 1).exists (&imode)
1071 && (low & (MIN (GET_MODE_SIZE (imode),
1072 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)) == 0)
1073 save_mode = imode;
1074 else
1075 save_mode = BLKmode;
1077 if (ARGS_GROW_DOWNWARD)
1078 delta = -high;
1079 else
1080 delta = low;
1082 addr = plus_constant (Pmode, argblock, delta);
1083 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
1085 set_mem_align (stack_area, PARM_BOUNDARY);
1086 if (save_mode == BLKmode)
1088 save_area = assign_stack_temp (BLKmode, num_to_save);
1089 emit_block_move (validize_mem (save_area), stack_area,
1090 GEN_INT (num_to_save), BLOCK_OP_CALL_PARM);
1092 else
1094 save_area = gen_reg_rtx (save_mode);
1095 emit_move_insn (save_area, stack_area);
1098 return save_area;
1101 return NULL_RTX;
1104 static void
1105 restore_fixed_argument_area (rtx save_area, rtx argblock, int high_to_save, int low_to_save)
1107 machine_mode save_mode = GET_MODE (save_area);
1108 int delta;
1109 rtx addr, stack_area;
1111 if (ARGS_GROW_DOWNWARD)
1112 delta = -high_to_save;
1113 else
1114 delta = low_to_save;
1116 addr = plus_constant (Pmode, argblock, delta);
1117 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
1118 set_mem_align (stack_area, PARM_BOUNDARY);
1120 if (save_mode != BLKmode)
1121 emit_move_insn (stack_area, save_area);
1122 else
1123 emit_block_move (stack_area, validize_mem (save_area),
1124 GEN_INT (high_to_save - low_to_save + 1),
1125 BLOCK_OP_CALL_PARM);
1127 #endif /* REG_PARM_STACK_SPACE */
1129 /* If any elements in ARGS refer to parameters that are to be passed in
1130 registers, but not in memory, and whose alignment does not permit a
1131 direct copy into registers. Copy the values into a group of pseudos
1132 which we will later copy into the appropriate hard registers.
1134 Pseudos for each unaligned argument will be stored into the array
1135 args[argnum].aligned_regs. The caller is responsible for deallocating
1136 the aligned_regs array if it is nonzero. */
1138 static void
1139 store_unaligned_arguments_into_pseudos (struct arg_data *args, int num_actuals)
1141 int i, j;
1143 for (i = 0; i < num_actuals; i++)
1144 if (args[i].reg != 0 && ! args[i].pass_on_stack
1145 && GET_CODE (args[i].reg) != PARALLEL
1146 && args[i].mode == BLKmode
1147 && MEM_P (args[i].value)
1148 && (MEM_ALIGN (args[i].value)
1149 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
1151 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1152 int endian_correction = 0;
1154 if (args[i].partial)
1156 gcc_assert (args[i].partial % UNITS_PER_WORD == 0);
1157 args[i].n_aligned_regs = args[i].partial / UNITS_PER_WORD;
1159 else
1161 args[i].n_aligned_regs
1162 = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1165 args[i].aligned_regs = XNEWVEC (rtx, args[i].n_aligned_regs);
1167 /* Structures smaller than a word are normally aligned to the
1168 least significant byte. On a BYTES_BIG_ENDIAN machine,
1169 this means we must skip the empty high order bytes when
1170 calculating the bit offset. */
1171 if (bytes < UNITS_PER_WORD
1172 #ifdef BLOCK_REG_PADDING
1173 && (BLOCK_REG_PADDING (args[i].mode,
1174 TREE_TYPE (args[i].tree_value), 1)
1175 == PAD_DOWNWARD)
1176 #else
1177 && BYTES_BIG_ENDIAN
1178 #endif
1180 endian_correction = BITS_PER_WORD - bytes * BITS_PER_UNIT;
1182 for (j = 0; j < args[i].n_aligned_regs; j++)
1184 rtx reg = gen_reg_rtx (word_mode);
1185 rtx word = operand_subword_force (args[i].value, j, BLKmode);
1186 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
1188 args[i].aligned_regs[j] = reg;
1189 word = extract_bit_field (word, bitsize, 0, 1, NULL_RTX,
1190 word_mode, word_mode, false, NULL);
1192 /* There is no need to restrict this code to loading items
1193 in TYPE_ALIGN sized hunks. The bitfield instructions can
1194 load up entire word sized registers efficiently.
1196 ??? This may not be needed anymore.
1197 We use to emit a clobber here but that doesn't let later
1198 passes optimize the instructions we emit. By storing 0 into
1199 the register later passes know the first AND to zero out the
1200 bitfield being set in the register is unnecessary. The store
1201 of 0 will be deleted as will at least the first AND. */
1203 emit_move_insn (reg, const0_rtx);
1205 bytes -= bitsize / BITS_PER_UNIT;
1206 store_bit_field (reg, bitsize, endian_correction, 0, 0,
1207 word_mode, word, false);
1212 /* The limit set by -Walloc-larger-than=. */
1213 static GTY(()) tree alloc_object_size_limit;
1215 /* Initialize ALLOC_OBJECT_SIZE_LIMIT based on the -Walloc-size-larger-than=
1216 setting if the option is specified, or to the maximum object size if it
1217 is not. Return the initialized value. */
1219 static tree
1220 alloc_max_size (void)
1222 if (alloc_object_size_limit)
1223 return alloc_object_size_limit;
1225 HOST_WIDE_INT limit = warn_alloc_size_limit;
1226 if (limit == HOST_WIDE_INT_MAX)
1227 limit = tree_to_shwi (TYPE_MAX_VALUE (ptrdiff_type_node));
1229 alloc_object_size_limit = build_int_cst (size_type_node, limit);
1231 return alloc_object_size_limit;
1234 /* Return true when EXP's range can be determined and set RANGE[] to it
1235 after adjusting it if necessary to make EXP a represents a valid size
1236 of object, or a valid size argument to an allocation function declared
1237 with attribute alloc_size (whose argument may be signed), or to a string
1238 manipulation function like memset. When ALLOW_ZERO is true, allow
1239 returning a range of [0, 0] for a size in an anti-range [1, N] where
1240 N > PTRDIFF_MAX. A zero range is a (nearly) invalid argument to
1241 allocation functions like malloc but it is a valid argument to
1242 functions like memset. */
1244 bool
1245 get_size_range (tree exp, tree range[2], bool allow_zero /* = false */)
1247 if (tree_fits_uhwi_p (exp))
1249 /* EXP is a constant. */
1250 range[0] = range[1] = exp;
1251 return true;
1254 tree exptype = TREE_TYPE (exp);
1255 bool integral = INTEGRAL_TYPE_P (exptype);
1257 wide_int min, max;
1258 enum value_range_kind range_type;
1260 if (integral)
1261 range_type = determine_value_range (exp, &min, &max);
1262 else
1263 range_type = VR_VARYING;
1265 if (range_type == VR_VARYING)
1267 if (integral)
1269 /* Use the full range of the type of the expression when
1270 no value range information is available. */
1271 range[0] = TYPE_MIN_VALUE (exptype);
1272 range[1] = TYPE_MAX_VALUE (exptype);
1273 return true;
1276 range[0] = NULL_TREE;
1277 range[1] = NULL_TREE;
1278 return false;
1281 unsigned expprec = TYPE_PRECISION (exptype);
1283 bool signed_p = !TYPE_UNSIGNED (exptype);
1285 if (range_type == VR_ANTI_RANGE)
1287 if (signed_p)
1289 if (wi::les_p (max, 0))
1291 /* EXP is not in a strictly negative range. That means
1292 it must be in some (not necessarily strictly) positive
1293 range which includes zero. Since in signed to unsigned
1294 conversions negative values end up converted to large
1295 positive values, and otherwise they are not valid sizes,
1296 the resulting range is in both cases [0, TYPE_MAX]. */
1297 min = wi::zero (expprec);
1298 max = wi::to_wide (TYPE_MAX_VALUE (exptype));
1300 else if (wi::les_p (min - 1, 0))
1302 /* EXP is not in a negative-positive range. That means EXP
1303 is either negative, or greater than max. Since negative
1304 sizes are invalid make the range [MAX + 1, TYPE_MAX]. */
1305 min = max + 1;
1306 max = wi::to_wide (TYPE_MAX_VALUE (exptype));
1308 else
1310 max = min - 1;
1311 min = wi::zero (expprec);
1314 else if (wi::eq_p (0, min - 1))
1316 /* EXP is unsigned and not in the range [1, MAX]. That means
1317 it's either zero or greater than MAX. Even though 0 would
1318 normally be detected by -Walloc-zero, unless ALLOW_ZERO
1319 is true, set the range to [MAX, TYPE_MAX] so that when MAX
1320 is greater than the limit the whole range is diagnosed. */
1321 if (allow_zero)
1322 min = max = wi::zero (expprec);
1323 else
1325 min = max + 1;
1326 max = wi::to_wide (TYPE_MAX_VALUE (exptype));
1329 else
1331 max = min - 1;
1332 min = wi::zero (expprec);
1336 range[0] = wide_int_to_tree (exptype, min);
1337 range[1] = wide_int_to_tree (exptype, max);
1339 return true;
1342 /* Diagnose a call EXP to function FN decorated with attribute alloc_size
1343 whose argument numbers given by IDX with values given by ARGS exceed
1344 the maximum object size or cause an unsigned oveflow (wrapping) when
1345 multiplied. When ARGS[0] is null the function does nothing. ARGS[1]
1346 may be null for functions like malloc, and non-null for those like
1347 calloc that are decorated with a two-argument attribute alloc_size. */
1349 void
1350 maybe_warn_alloc_args_overflow (tree fn, tree exp, tree args[2], int idx[2])
1352 /* The range each of the (up to) two arguments is known to be in. */
1353 tree argrange[2][2] = { { NULL_TREE, NULL_TREE }, { NULL_TREE, NULL_TREE } };
1355 /* Maximum object size set by -Walloc-size-larger-than= or SIZE_MAX / 2. */
1356 tree maxobjsize = alloc_max_size ();
1358 location_t loc = EXPR_LOCATION (exp);
1360 bool warned = false;
1362 /* Validate each argument individually. */
1363 for (unsigned i = 0; i != 2 && args[i]; ++i)
1365 if (TREE_CODE (args[i]) == INTEGER_CST)
1367 argrange[i][0] = args[i];
1368 argrange[i][1] = args[i];
1370 if (tree_int_cst_lt (args[i], integer_zero_node))
1372 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
1373 "%Kargument %i value %qE is negative",
1374 exp, idx[i] + 1, args[i]);
1376 else if (integer_zerop (args[i]))
1378 /* Avoid issuing -Walloc-zero for allocation functions other
1379 than __builtin_alloca that are declared with attribute
1380 returns_nonnull because there's no portability risk. This
1381 avoids warning for such calls to libiberty's xmalloc and
1382 friends.
1383 Also avoid issuing the warning for calls to function named
1384 "alloca". */
1385 if ((DECL_FUNCTION_CODE (fn) == BUILT_IN_ALLOCA
1386 && IDENTIFIER_LENGTH (DECL_NAME (fn)) != 6)
1387 || (DECL_FUNCTION_CODE (fn) != BUILT_IN_ALLOCA
1388 && !lookup_attribute ("returns_nonnull",
1389 TYPE_ATTRIBUTES (TREE_TYPE (fn)))))
1390 warned = warning_at (loc, OPT_Walloc_zero,
1391 "%Kargument %i value is zero",
1392 exp, idx[i] + 1);
1394 else if (tree_int_cst_lt (maxobjsize, args[i]))
1396 /* G++ emits calls to ::operator new[](SIZE_MAX) in C++98
1397 mode and with -fno-exceptions as a way to indicate array
1398 size overflow. There's no good way to detect C++98 here
1399 so avoid diagnosing these calls for all C++ modes. */
1400 if (i == 0
1401 && !args[1]
1402 && lang_GNU_CXX ()
1403 && DECL_IS_OPERATOR_NEW (fn)
1404 && integer_all_onesp (args[i]))
1405 continue;
1407 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
1408 "%Kargument %i value %qE exceeds "
1409 "maximum object size %E",
1410 exp, idx[i] + 1, args[i], maxobjsize);
1413 else if (TREE_CODE (args[i]) == SSA_NAME
1414 && get_size_range (args[i], argrange[i]))
1416 /* Verify that the argument's range is not negative (including
1417 upper bound of zero). */
1418 if (tree_int_cst_lt (argrange[i][0], integer_zero_node)
1419 && tree_int_cst_le (argrange[i][1], integer_zero_node))
1421 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
1422 "%Kargument %i range [%E, %E] is negative",
1423 exp, idx[i] + 1,
1424 argrange[i][0], argrange[i][1]);
1426 else if (tree_int_cst_lt (maxobjsize, argrange[i][0]))
1428 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
1429 "%Kargument %i range [%E, %E] exceeds "
1430 "maximum object size %E",
1431 exp, idx[i] + 1,
1432 argrange[i][0], argrange[i][1],
1433 maxobjsize);
1438 if (!argrange[0])
1439 return;
1441 /* For a two-argument alloc_size, validate the product of the two
1442 arguments if both of their values or ranges are known. */
1443 if (!warned && tree_fits_uhwi_p (argrange[0][0])
1444 && argrange[1][0] && tree_fits_uhwi_p (argrange[1][0])
1445 && !integer_onep (argrange[0][0])
1446 && !integer_onep (argrange[1][0]))
1448 /* Check for overflow in the product of a function decorated with
1449 attribute alloc_size (X, Y). */
1450 unsigned szprec = TYPE_PRECISION (size_type_node);
1451 wide_int x = wi::to_wide (argrange[0][0], szprec);
1452 wide_int y = wi::to_wide (argrange[1][0], szprec);
1454 wi::overflow_type vflow;
1455 wide_int prod = wi::umul (x, y, &vflow);
1457 if (vflow)
1458 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
1459 "%Kproduct %<%E * %E%> of arguments %i and %i "
1460 "exceeds %<SIZE_MAX%>",
1461 exp, argrange[0][0], argrange[1][0],
1462 idx[0] + 1, idx[1] + 1);
1463 else if (wi::ltu_p (wi::to_wide (maxobjsize, szprec), prod))
1464 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
1465 "%Kproduct %<%E * %E%> of arguments %i and %i "
1466 "exceeds maximum object size %E",
1467 exp, argrange[0][0], argrange[1][0],
1468 idx[0] + 1, idx[1] + 1,
1469 maxobjsize);
1471 if (warned)
1473 /* Print the full range of each of the two arguments to make
1474 it clear when it is, in fact, in a range and not constant. */
1475 if (argrange[0][0] != argrange [0][1])
1476 inform (loc, "argument %i in the range [%E, %E]",
1477 idx[0] + 1, argrange[0][0], argrange[0][1]);
1478 if (argrange[1][0] != argrange [1][1])
1479 inform (loc, "argument %i in the range [%E, %E]",
1480 idx[1] + 1, argrange[1][0], argrange[1][1]);
1484 if (warned)
1486 location_t fnloc = DECL_SOURCE_LOCATION (fn);
1488 if (DECL_IS_BUILTIN (fn))
1489 inform (loc,
1490 "in a call to built-in allocation function %qD", fn);
1491 else
1492 inform (fnloc,
1493 "in a call to allocation function %qD declared here", fn);
1497 /* If EXPR refers to a character array or pointer declared attribute
1498 nonstring return a decl for that array or pointer and set *REF to
1499 the referenced enclosing object or pointer. Otherwise returns
1500 null. */
1502 tree
1503 get_attr_nonstring_decl (tree expr, tree *ref)
1505 tree decl = expr;
1506 tree var = NULL_TREE;
1507 if (TREE_CODE (decl) == SSA_NAME)
1509 gimple *def = SSA_NAME_DEF_STMT (decl);
1511 if (is_gimple_assign (def))
1513 tree_code code = gimple_assign_rhs_code (def);
1514 if (code == ADDR_EXPR
1515 || code == COMPONENT_REF
1516 || code == VAR_DECL)
1517 decl = gimple_assign_rhs1 (def);
1519 else
1520 var = SSA_NAME_VAR (decl);
1523 if (TREE_CODE (decl) == ADDR_EXPR)
1524 decl = TREE_OPERAND (decl, 0);
1526 /* To simplify calling code, store the referenced DECL regardless of
1527 the attribute determined below, but avoid storing the SSA_NAME_VAR
1528 obtained above (it's not useful for dataflow purposes). */
1529 if (ref)
1530 *ref = decl;
1532 /* Use the SSA_NAME_VAR that was determined above to see if it's
1533 declared nonstring. Otherwise drill down into the referenced
1534 DECL. */
1535 if (var)
1536 decl = var;
1537 else if (TREE_CODE (decl) == ARRAY_REF)
1538 decl = TREE_OPERAND (decl, 0);
1539 else if (TREE_CODE (decl) == COMPONENT_REF)
1540 decl = TREE_OPERAND (decl, 1);
1541 else if (TREE_CODE (decl) == MEM_REF)
1542 return get_attr_nonstring_decl (TREE_OPERAND (decl, 0), ref);
1544 if (DECL_P (decl)
1545 && lookup_attribute ("nonstring", DECL_ATTRIBUTES (decl)))
1546 return decl;
1548 return NULL_TREE;
1551 /* Warn about passing a non-string array/pointer to a function that
1552 expects a nul-terminated string argument. */
1554 void
1555 maybe_warn_nonstring_arg (tree fndecl, tree exp)
1557 if (!fndecl || !fndecl_built_in_p (fndecl, BUILT_IN_NORMAL))
1558 return;
1560 if (TREE_NO_WARNING (exp) || !warn_stringop_overflow)
1561 return;
1563 unsigned nargs = call_expr_nargs (exp);
1565 /* The bound argument to a bounded string function like strncpy. */
1566 tree bound = NULL_TREE;
1568 /* The range of lengths of a string argument to one of the comparison
1569 functions. If the length is less than the bound it is used instead. */
1570 tree lenrng[2] = { NULL_TREE, NULL_TREE };
1572 /* It's safe to call "bounded" string functions with a non-string
1573 argument since the functions provide an explicit bound for this
1574 purpose. The exception is strncat where the bound may refer to
1575 either the destination or the source. */
1576 int fncode = DECL_FUNCTION_CODE (fndecl);
1577 switch (fncode)
1579 case BUILT_IN_STRCMP:
1580 case BUILT_IN_STRNCMP:
1581 case BUILT_IN_STRNCASECMP:
1583 /* For these, if one argument refers to one or more of a set
1584 of string constants or arrays of known size, determine
1585 the range of their known or possible lengths and use it
1586 conservatively as the bound for the unbounded function,
1587 and to adjust the range of the bound of the bounded ones. */
1588 for (unsigned argno = 0;
1589 argno < MIN (nargs, 2)
1590 && !(lenrng[1] && TREE_CODE (lenrng[1]) == INTEGER_CST); argno++)
1592 tree arg = CALL_EXPR_ARG (exp, argno);
1593 if (!get_attr_nonstring_decl (arg))
1594 get_range_strlen (arg, lenrng);
1597 /* Fall through. */
1599 case BUILT_IN_STRNCAT:
1600 case BUILT_IN_STPNCPY:
1601 case BUILT_IN_STRNCPY:
1602 if (nargs > 2)
1603 bound = CALL_EXPR_ARG (exp, 2);
1604 break;
1606 case BUILT_IN_STRNDUP:
1607 if (nargs > 1)
1608 bound = CALL_EXPR_ARG (exp, 1);
1609 break;
1611 case BUILT_IN_STRNLEN:
1613 tree arg = CALL_EXPR_ARG (exp, 0);
1614 if (!get_attr_nonstring_decl (arg))
1615 get_range_strlen (arg, lenrng);
1617 if (nargs > 1)
1618 bound = CALL_EXPR_ARG (exp, 1);
1619 break;
1622 default:
1623 break;
1626 /* Determine the range of the bound argument (if specified). */
1627 tree bndrng[2] = { NULL_TREE, NULL_TREE };
1628 if (bound)
1630 STRIP_NOPS (bound);
1631 get_size_range (bound, bndrng);
1634 location_t loc = EXPR_LOCATION (exp);
1636 if (bndrng[0])
1638 /* Diagnose excessive bound prior the adjustment below and
1639 regardless of attribute nonstring. */
1640 tree maxobjsize = max_object_size ();
1641 if (tree_int_cst_lt (maxobjsize, bndrng[0]))
1643 if (tree_int_cst_equal (bndrng[0], bndrng[1]))
1644 warning_at (loc, OPT_Wstringop_overflow_,
1645 "%K%qD specified bound %E "
1646 "exceeds maximum object size %E",
1647 exp, fndecl, bndrng[0], maxobjsize);
1648 else
1649 warning_at (loc, OPT_Wstringop_overflow_,
1650 "%K%qD specified bound [%E, %E] "
1651 "exceeds maximum object size %E",
1652 exp, fndecl, bndrng[0], bndrng[1], maxobjsize);
1653 return;
1657 if (lenrng[1] && TREE_CODE (lenrng[1]) == INTEGER_CST)
1659 /* Add one for the nul. */
1660 lenrng[1] = const_binop (PLUS_EXPR, TREE_TYPE (lenrng[1]),
1661 lenrng[1], size_one_node);
1663 if (!bndrng[0])
1665 /* Conservatively use the upper bound of the lengths for
1666 both the lower and the upper bound of the operation. */
1667 bndrng[0] = lenrng[1];
1668 bndrng[1] = lenrng[1];
1669 bound = void_type_node;
1671 else
1673 /* Replace the bound on the operation with the upper bound
1674 of the length of the string if the latter is smaller. */
1675 if (tree_int_cst_lt (lenrng[1], bndrng[0]))
1676 bndrng[0] = lenrng[1];
1677 else if (tree_int_cst_lt (lenrng[1], bndrng[1]))
1678 bndrng[1] = lenrng[1];
1682 /* Iterate over the built-in function's formal arguments and check
1683 each const char* against the actual argument. If the actual
1684 argument is declared attribute non-string issue a warning unless
1685 the argument's maximum length is bounded. */
1686 function_args_iterator it;
1687 function_args_iter_init (&it, TREE_TYPE (fndecl));
1689 for (unsigned argno = 0; ; ++argno, function_args_iter_next (&it))
1691 /* Avoid iterating past the declared argument in a call
1692 to function declared without a prototype. */
1693 if (argno >= nargs)
1694 break;
1696 tree argtype = function_args_iter_cond (&it);
1697 if (!argtype)
1698 break;
1700 if (TREE_CODE (argtype) != POINTER_TYPE)
1701 continue;
1703 argtype = TREE_TYPE (argtype);
1705 if (TREE_CODE (argtype) != INTEGER_TYPE
1706 || !TYPE_READONLY (argtype))
1707 continue;
1709 argtype = TYPE_MAIN_VARIANT (argtype);
1710 if (argtype != char_type_node)
1711 continue;
1713 tree callarg = CALL_EXPR_ARG (exp, argno);
1714 if (TREE_CODE (callarg) == ADDR_EXPR)
1715 callarg = TREE_OPERAND (callarg, 0);
1717 /* See if the destination is declared with attribute "nonstring". */
1718 tree decl = get_attr_nonstring_decl (callarg);
1719 if (!decl)
1720 continue;
1722 /* The maximum number of array elements accessed. */
1723 offset_int wibnd = 0;
1725 if (argno && fncode == BUILT_IN_STRNCAT)
1727 /* See if the bound in strncat is derived from the length
1728 of the strlen of the destination (as it's expected to be).
1729 If so, reset BOUND and FNCODE to trigger a warning. */
1730 tree dstarg = CALL_EXPR_ARG (exp, 0);
1731 if (is_strlen_related_p (dstarg, bound))
1733 /* The bound applies to the destination, not to the source,
1734 so reset these to trigger a warning without mentioning
1735 the bound. */
1736 bound = NULL;
1737 fncode = 0;
1739 else if (bndrng[1])
1740 /* Use the upper bound of the range for strncat. */
1741 wibnd = wi::to_offset (bndrng[1]);
1743 else if (bndrng[0])
1744 /* Use the lower bound of the range for functions other than
1745 strncat. */
1746 wibnd = wi::to_offset (bndrng[0]);
1748 /* Determine the size of the argument array if it is one. */
1749 offset_int asize = wibnd;
1750 bool known_size = false;
1751 tree type = TREE_TYPE (decl);
1753 /* Determine the array size. For arrays of unknown bound and
1754 pointers reset BOUND to trigger the appropriate warning. */
1755 if (TREE_CODE (type) == ARRAY_TYPE)
1757 if (tree arrbnd = TYPE_DOMAIN (type))
1759 if ((arrbnd = TYPE_MAX_VALUE (arrbnd)))
1761 asize = wi::to_offset (arrbnd) + 1;
1762 known_size = true;
1765 else if (bound == void_type_node)
1766 bound = NULL_TREE;
1768 else if (bound == void_type_node)
1769 bound = NULL_TREE;
1771 /* In a call to strncat with a bound in a range whose lower but
1772 not upper bound is less than the array size, reset ASIZE to
1773 be the same as the bound and the other variable to trigger
1774 the apprpriate warning below. */
1775 if (fncode == BUILT_IN_STRNCAT
1776 && bndrng[0] != bndrng[1]
1777 && wi::ltu_p (wi::to_offset (bndrng[0]), asize)
1778 && (!known_size
1779 || wi::ltu_p (asize, wibnd)))
1781 asize = wibnd;
1782 bound = NULL_TREE;
1783 fncode = 0;
1786 bool warned = false;
1788 auto_diagnostic_group d;
1789 if (wi::ltu_p (asize, wibnd))
1791 if (bndrng[0] == bndrng[1])
1792 warned = warning_at (loc, OPT_Wstringop_overflow_,
1793 "%qD argument %i declared attribute "
1794 "%<nonstring%> is smaller than the specified "
1795 "bound %wu",
1796 fndecl, argno + 1, wibnd.to_uhwi ());
1797 else if (wi::ltu_p (asize, wi::to_offset (bndrng[0])))
1798 warned = warning_at (loc, OPT_Wstringop_overflow_,
1799 "%qD argument %i declared attribute "
1800 "%<nonstring%> is smaller than "
1801 "the specified bound [%E, %E]",
1802 fndecl, argno + 1, bndrng[0], bndrng[1]);
1803 else
1804 warned = warning_at (loc, OPT_Wstringop_overflow_,
1805 "%qD argument %i declared attribute "
1806 "%<nonstring%> may be smaller than "
1807 "the specified bound [%E, %E]",
1808 fndecl, argno + 1, bndrng[0], bndrng[1]);
1810 else if (fncode == BUILT_IN_STRNCAT)
1811 ; /* Avoid warning for calls to strncat() when the bound
1812 is equal to the size of the non-string argument. */
1813 else if (!bound)
1814 warned = warning_at (loc, OPT_Wstringop_overflow_,
1815 "%qD argument %i declared attribute %<nonstring%>",
1816 fndecl, argno + 1);
1818 if (warned)
1819 inform (DECL_SOURCE_LOCATION (decl),
1820 "argument %qD declared here", decl);
1824 /* Issue an error if CALL_EXPR was flagged as requiring
1825 tall-call optimization. */
1827 static void
1828 maybe_complain_about_tail_call (tree call_expr, const char *reason)
1830 gcc_assert (TREE_CODE (call_expr) == CALL_EXPR);
1831 if (!CALL_EXPR_MUST_TAIL_CALL (call_expr))
1832 return;
1834 error_at (EXPR_LOCATION (call_expr), "cannot tail-call: %s", reason);
1837 /* Fill in ARGS_SIZE and ARGS array based on the parameters found in
1838 CALL_EXPR EXP.
1840 NUM_ACTUALS is the total number of parameters.
1842 N_NAMED_ARGS is the total number of named arguments.
1844 STRUCT_VALUE_ADDR_VALUE is the implicit argument for a struct return
1845 value, or null.
1847 FNDECL is the tree code for the target of this call (if known)
1849 ARGS_SO_FAR holds state needed by the target to know where to place
1850 the next argument.
1852 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
1853 for arguments which are passed in registers.
1855 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
1856 and may be modified by this routine.
1858 OLD_PENDING_ADJ, MUST_PREALLOCATE and FLAGS are pointers to integer
1859 flags which may be modified by this routine.
1861 MAY_TAILCALL is cleared if we encounter an invisible pass-by-reference
1862 that requires allocation of stack space.
1864 CALL_FROM_THUNK_P is true if this call is the jump from a thunk to
1865 the thunked-to function. */
1867 static void
1868 initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED,
1869 struct arg_data *args,
1870 struct args_size *args_size,
1871 int n_named_args ATTRIBUTE_UNUSED,
1872 tree exp, tree struct_value_addr_value,
1873 tree fndecl, tree fntype,
1874 cumulative_args_t args_so_far,
1875 int reg_parm_stack_space,
1876 rtx *old_stack_level,
1877 poly_int64_pod *old_pending_adj,
1878 int *must_preallocate, int *ecf_flags,
1879 bool *may_tailcall, bool call_from_thunk_p)
1881 CUMULATIVE_ARGS *args_so_far_pnt = get_cumulative_args (args_so_far);
1882 location_t loc = EXPR_LOCATION (exp);
1884 /* Count arg position in order args appear. */
1885 int argpos;
1887 int i;
1889 args_size->constant = 0;
1890 args_size->var = 0;
1892 bitmap_obstack_initialize (NULL);
1894 /* In this loop, we consider args in the order they are written.
1895 We fill up ARGS from the back. */
1897 i = num_actuals - 1;
1899 int j = i;
1900 call_expr_arg_iterator iter;
1901 tree arg;
1902 bitmap slots = NULL;
1904 if (struct_value_addr_value)
1906 args[j].tree_value = struct_value_addr_value;
1907 j--;
1909 argpos = 0;
1910 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
1912 tree argtype = TREE_TYPE (arg);
1914 if (targetm.calls.split_complex_arg
1915 && argtype
1916 && TREE_CODE (argtype) == COMPLEX_TYPE
1917 && targetm.calls.split_complex_arg (argtype))
1919 tree subtype = TREE_TYPE (argtype);
1920 args[j].tree_value = build1 (REALPART_EXPR, subtype, arg);
1921 j--;
1922 args[j].tree_value = build1 (IMAGPART_EXPR, subtype, arg);
1924 else
1925 args[j].tree_value = arg;
1926 j--;
1927 argpos++;
1930 if (slots)
1931 BITMAP_FREE (slots);
1934 bitmap_obstack_release (NULL);
1936 /* Extract attribute alloc_size and if set, store the indices of
1937 the corresponding arguments in ALLOC_IDX, and then the actual
1938 argument(s) at those indices in ALLOC_ARGS. */
1939 int alloc_idx[2] = { -1, -1 };
1940 if (tree alloc_size
1941 = (fndecl ? lookup_attribute ("alloc_size",
1942 TYPE_ATTRIBUTES (TREE_TYPE (fndecl)))
1943 : NULL_TREE))
1945 tree args = TREE_VALUE (alloc_size);
1946 alloc_idx[0] = TREE_INT_CST_LOW (TREE_VALUE (args)) - 1;
1947 if (TREE_CHAIN (args))
1948 alloc_idx[1] = TREE_INT_CST_LOW (TREE_VALUE (TREE_CHAIN (args))) - 1;
1951 /* Array for up to the two attribute alloc_size arguments. */
1952 tree alloc_args[] = { NULL_TREE, NULL_TREE };
1954 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
1955 for (argpos = 0; argpos < num_actuals; i--, argpos++)
1957 tree type = TREE_TYPE (args[i].tree_value);
1958 int unsignedp;
1959 machine_mode mode;
1961 /* Replace erroneous argument with constant zero. */
1962 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
1963 args[i].tree_value = integer_zero_node, type = integer_type_node;
1965 /* If TYPE is a transparent union or record, pass things the way
1966 we would pass the first field of the union or record. We have
1967 already verified that the modes are the same. */
1968 if ((TREE_CODE (type) == UNION_TYPE || TREE_CODE (type) == RECORD_TYPE)
1969 && TYPE_TRANSPARENT_AGGR (type))
1970 type = TREE_TYPE (first_field (type));
1972 /* Decide where to pass this arg.
1974 args[i].reg is nonzero if all or part is passed in registers.
1976 args[i].partial is nonzero if part but not all is passed in registers,
1977 and the exact value says how many bytes are passed in registers.
1979 args[i].pass_on_stack is nonzero if the argument must at least be
1980 computed on the stack. It may then be loaded back into registers
1981 if args[i].reg is nonzero.
1983 These decisions are driven by the FUNCTION_... macros and must agree
1984 with those made by function.c. */
1986 /* See if this argument should be passed by invisible reference. */
1987 if (pass_by_reference (args_so_far_pnt, TYPE_MODE (type),
1988 type, argpos < n_named_args))
1990 bool callee_copies;
1991 tree base = NULL_TREE;
1993 callee_copies
1994 = reference_callee_copied (args_so_far_pnt, TYPE_MODE (type),
1995 type, argpos < n_named_args);
1997 /* If we're compiling a thunk, pass through invisible references
1998 instead of making a copy. */
1999 if (call_from_thunk_p
2000 || (callee_copies
2001 && !TREE_ADDRESSABLE (type)
2002 && (base = get_base_address (args[i].tree_value))
2003 && TREE_CODE (base) != SSA_NAME
2004 && (!DECL_P (base) || MEM_P (DECL_RTL (base)))))
2006 /* We may have turned the parameter value into an SSA name.
2007 Go back to the original parameter so we can take the
2008 address. */
2009 if (TREE_CODE (args[i].tree_value) == SSA_NAME)
2011 gcc_assert (SSA_NAME_IS_DEFAULT_DEF (args[i].tree_value));
2012 args[i].tree_value = SSA_NAME_VAR (args[i].tree_value);
2013 gcc_assert (TREE_CODE (args[i].tree_value) == PARM_DECL);
2015 /* Argument setup code may have copied the value to register. We
2016 revert that optimization now because the tail call code must
2017 use the original location. */
2018 if (TREE_CODE (args[i].tree_value) == PARM_DECL
2019 && !MEM_P (DECL_RTL (args[i].tree_value))
2020 && DECL_INCOMING_RTL (args[i].tree_value)
2021 && MEM_P (DECL_INCOMING_RTL (args[i].tree_value)))
2022 set_decl_rtl (args[i].tree_value,
2023 DECL_INCOMING_RTL (args[i].tree_value));
2025 mark_addressable (args[i].tree_value);
2027 /* We can't use sibcalls if a callee-copied argument is
2028 stored in the current function's frame. */
2029 if (!call_from_thunk_p && DECL_P (base) && !TREE_STATIC (base))
2031 *may_tailcall = false;
2032 maybe_complain_about_tail_call (exp,
2033 "a callee-copied argument is"
2034 " stored in the current"
2035 " function's frame");
2038 args[i].tree_value = build_fold_addr_expr_loc (loc,
2039 args[i].tree_value);
2040 type = TREE_TYPE (args[i].tree_value);
2042 if (*ecf_flags & ECF_CONST)
2043 *ecf_flags &= ~(ECF_CONST | ECF_LOOPING_CONST_OR_PURE);
2045 else
2047 /* We make a copy of the object and pass the address to the
2048 function being called. */
2049 rtx copy;
2051 if (!COMPLETE_TYPE_P (type)
2052 || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST
2053 || (flag_stack_check == GENERIC_STACK_CHECK
2054 && compare_tree_int (TYPE_SIZE_UNIT (type),
2055 STACK_CHECK_MAX_VAR_SIZE) > 0))
2057 /* This is a variable-sized object. Make space on the stack
2058 for it. */
2059 rtx size_rtx = expr_size (args[i].tree_value);
2061 if (*old_stack_level == 0)
2063 emit_stack_save (SAVE_BLOCK, old_stack_level);
2064 *old_pending_adj = pending_stack_adjust;
2065 pending_stack_adjust = 0;
2068 /* We can pass TRUE as the 4th argument because we just
2069 saved the stack pointer and will restore it right after
2070 the call. */
2071 copy = allocate_dynamic_stack_space (size_rtx,
2072 TYPE_ALIGN (type),
2073 TYPE_ALIGN (type),
2074 max_int_size_in_bytes
2075 (type),
2076 true);
2077 copy = gen_rtx_MEM (BLKmode, copy);
2078 set_mem_attributes (copy, type, 1);
2080 else
2081 copy = assign_temp (type, 1, 0);
2083 store_expr (args[i].tree_value, copy, 0, false, false);
2085 /* Just change the const function to pure and then let
2086 the next test clear the pure based on
2087 callee_copies. */
2088 if (*ecf_flags & ECF_CONST)
2090 *ecf_flags &= ~ECF_CONST;
2091 *ecf_flags |= ECF_PURE;
2094 if (!callee_copies && *ecf_flags & ECF_PURE)
2095 *ecf_flags &= ~(ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
2097 args[i].tree_value
2098 = build_fold_addr_expr_loc (loc, make_tree (type, copy));
2099 type = TREE_TYPE (args[i].tree_value);
2100 *may_tailcall = false;
2101 maybe_complain_about_tail_call (exp,
2102 "argument must be passed"
2103 " by copying");
2107 unsignedp = TYPE_UNSIGNED (type);
2108 mode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
2109 fndecl ? TREE_TYPE (fndecl) : fntype, 0);
2111 args[i].unsignedp = unsignedp;
2112 args[i].mode = mode;
2114 targetm.calls.warn_parameter_passing_abi (args_so_far, type);
2116 args[i].reg = targetm.calls.function_arg (args_so_far, mode, type,
2117 argpos < n_named_args);
2119 if (args[i].reg && CONST_INT_P (args[i].reg))
2121 args[i].special_slot = args[i].reg;
2122 args[i].reg = NULL;
2125 /* If this is a sibling call and the machine has register windows, the
2126 register window has to be unwinded before calling the routine, so
2127 arguments have to go into the incoming registers. */
2128 if (targetm.calls.function_incoming_arg != targetm.calls.function_arg)
2129 args[i].tail_call_reg
2130 = targetm.calls.function_incoming_arg (args_so_far, mode, type,
2131 argpos < n_named_args);
2132 else
2133 args[i].tail_call_reg = args[i].reg;
2135 if (args[i].reg)
2136 args[i].partial
2137 = targetm.calls.arg_partial_bytes (args_so_far, mode, type,
2138 argpos < n_named_args);
2140 args[i].pass_on_stack = targetm.calls.must_pass_in_stack (mode, type);
2142 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
2143 it means that we are to pass this arg in the register(s) designated
2144 by the PARALLEL, but also to pass it in the stack. */
2145 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
2146 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
2147 args[i].pass_on_stack = 1;
2149 /* If this is an addressable type, we must preallocate the stack
2150 since we must evaluate the object into its final location.
2152 If this is to be passed in both registers and the stack, it is simpler
2153 to preallocate. */
2154 if (TREE_ADDRESSABLE (type)
2155 || (args[i].pass_on_stack && args[i].reg != 0))
2156 *must_preallocate = 1;
2158 /* Compute the stack-size of this argument. */
2159 if (args[i].reg == 0 || args[i].partial != 0
2160 || reg_parm_stack_space > 0
2161 || args[i].pass_on_stack)
2162 locate_and_pad_parm (mode, type,
2163 #ifdef STACK_PARMS_IN_REG_PARM_AREA
2165 #else
2166 args[i].reg != 0,
2167 #endif
2168 reg_parm_stack_space,
2169 args[i].pass_on_stack ? 0 : args[i].partial,
2170 fndecl, args_size, &args[i].locate);
2171 #ifdef BLOCK_REG_PADDING
2172 else
2173 /* The argument is passed entirely in registers. See at which
2174 end it should be padded. */
2175 args[i].locate.where_pad =
2176 BLOCK_REG_PADDING (mode, type,
2177 int_size_in_bytes (type) <= UNITS_PER_WORD);
2178 #endif
2180 /* Update ARGS_SIZE, the total stack space for args so far. */
2182 args_size->constant += args[i].locate.size.constant;
2183 if (args[i].locate.size.var)
2184 ADD_PARM_SIZE (*args_size, args[i].locate.size.var);
2186 /* Increment ARGS_SO_FAR, which has info about which arg-registers
2187 have been used, etc. */
2189 targetm.calls.function_arg_advance (args_so_far, TYPE_MODE (type),
2190 type, argpos < n_named_args);
2192 /* Store argument values for functions decorated with attribute
2193 alloc_size. */
2194 if (argpos == alloc_idx[0])
2195 alloc_args[0] = args[i].tree_value;
2196 else if (argpos == alloc_idx[1])
2197 alloc_args[1] = args[i].tree_value;
2200 if (alloc_args[0])
2202 /* Check the arguments of functions decorated with attribute
2203 alloc_size. */
2204 maybe_warn_alloc_args_overflow (fndecl, exp, alloc_args, alloc_idx);
2207 /* Detect passing non-string arguments to functions expecting
2208 nul-terminated strings. */
2209 maybe_warn_nonstring_arg (fndecl, exp);
2212 /* Update ARGS_SIZE to contain the total size for the argument block.
2213 Return the original constant component of the argument block's size.
2215 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
2216 for arguments passed in registers. */
2218 static poly_int64
2219 compute_argument_block_size (int reg_parm_stack_space,
2220 struct args_size *args_size,
2221 tree fndecl ATTRIBUTE_UNUSED,
2222 tree fntype ATTRIBUTE_UNUSED,
2223 int preferred_stack_boundary ATTRIBUTE_UNUSED)
2225 poly_int64 unadjusted_args_size = args_size->constant;
2227 /* For accumulate outgoing args mode we don't need to align, since the frame
2228 will be already aligned. Align to STACK_BOUNDARY in order to prevent
2229 backends from generating misaligned frame sizes. */
2230 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
2231 preferred_stack_boundary = STACK_BOUNDARY;
2233 /* Compute the actual size of the argument block required. The variable
2234 and constant sizes must be combined, the size may have to be rounded,
2235 and there may be a minimum required size. */
2237 if (args_size->var)
2239 args_size->var = ARGS_SIZE_TREE (*args_size);
2240 args_size->constant = 0;
2242 preferred_stack_boundary /= BITS_PER_UNIT;
2243 if (preferred_stack_boundary > 1)
2245 /* We don't handle this case yet. To handle it correctly we have
2246 to add the delta, round and subtract the delta.
2247 Currently no machine description requires this support. */
2248 gcc_assert (multiple_p (stack_pointer_delta,
2249 preferred_stack_boundary));
2250 args_size->var = round_up (args_size->var, preferred_stack_boundary);
2253 if (reg_parm_stack_space > 0)
2255 args_size->var
2256 = size_binop (MAX_EXPR, args_size->var,
2257 ssize_int (reg_parm_stack_space));
2259 /* The area corresponding to register parameters is not to count in
2260 the size of the block we need. So make the adjustment. */
2261 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
2262 args_size->var
2263 = size_binop (MINUS_EXPR, args_size->var,
2264 ssize_int (reg_parm_stack_space));
2267 else
2269 preferred_stack_boundary /= BITS_PER_UNIT;
2270 if (preferred_stack_boundary < 1)
2271 preferred_stack_boundary = 1;
2272 args_size->constant = (aligned_upper_bound (args_size->constant
2273 + stack_pointer_delta,
2274 preferred_stack_boundary)
2275 - stack_pointer_delta);
2277 args_size->constant = upper_bound (args_size->constant,
2278 reg_parm_stack_space);
2280 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
2281 args_size->constant -= reg_parm_stack_space;
2283 return unadjusted_args_size;
2286 /* Precompute parameters as needed for a function call.
2288 FLAGS is mask of ECF_* constants.
2290 NUM_ACTUALS is the number of arguments.
2292 ARGS is an array containing information for each argument; this
2293 routine fills in the INITIAL_VALUE and VALUE fields for each
2294 precomputed argument. */
2296 static void
2297 precompute_arguments (int num_actuals, struct arg_data *args)
2299 int i;
2301 /* If this is a libcall, then precompute all arguments so that we do not
2302 get extraneous instructions emitted as part of the libcall sequence. */
2304 /* If we preallocated the stack space, and some arguments must be passed
2305 on the stack, then we must precompute any parameter which contains a
2306 function call which will store arguments on the stack.
2307 Otherwise, evaluating the parameter may clobber previous parameters
2308 which have already been stored into the stack. (we have code to avoid
2309 such case by saving the outgoing stack arguments, but it results in
2310 worse code) */
2311 if (!ACCUMULATE_OUTGOING_ARGS)
2312 return;
2314 for (i = 0; i < num_actuals; i++)
2316 tree type;
2317 machine_mode mode;
2319 if (TREE_CODE (args[i].tree_value) != CALL_EXPR)
2320 continue;
2322 /* If this is an addressable type, we cannot pre-evaluate it. */
2323 type = TREE_TYPE (args[i].tree_value);
2324 gcc_assert (!TREE_ADDRESSABLE (type));
2326 args[i].initial_value = args[i].value
2327 = expand_normal (args[i].tree_value);
2329 mode = TYPE_MODE (type);
2330 if (mode != args[i].mode)
2332 int unsignedp = args[i].unsignedp;
2333 args[i].value
2334 = convert_modes (args[i].mode, mode,
2335 args[i].value, args[i].unsignedp);
2337 /* CSE will replace this only if it contains args[i].value
2338 pseudo, so convert it down to the declared mode using
2339 a SUBREG. */
2340 if (REG_P (args[i].value)
2341 && GET_MODE_CLASS (args[i].mode) == MODE_INT
2342 && promote_mode (type, mode, &unsignedp) != args[i].mode)
2344 args[i].initial_value
2345 = gen_lowpart_SUBREG (mode, args[i].value);
2346 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
2347 SUBREG_PROMOTED_SET (args[i].initial_value, args[i].unsignedp);
2353 /* Given the current state of MUST_PREALLOCATE and information about
2354 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
2355 compute and return the final value for MUST_PREALLOCATE. */
2357 static int
2358 finalize_must_preallocate (int must_preallocate, int num_actuals,
2359 struct arg_data *args, struct args_size *args_size)
2361 /* See if we have or want to preallocate stack space.
2363 If we would have to push a partially-in-regs parm
2364 before other stack parms, preallocate stack space instead.
2366 If the size of some parm is not a multiple of the required stack
2367 alignment, we must preallocate.
2369 If the total size of arguments that would otherwise create a copy in
2370 a temporary (such as a CALL) is more than half the total argument list
2371 size, preallocation is faster.
2373 Another reason to preallocate is if we have a machine (like the m88k)
2374 where stack alignment is required to be maintained between every
2375 pair of insns, not just when the call is made. However, we assume here
2376 that such machines either do not have push insns (and hence preallocation
2377 would occur anyway) or the problem is taken care of with
2378 PUSH_ROUNDING. */
2380 if (! must_preallocate)
2382 int partial_seen = 0;
2383 poly_int64 copy_to_evaluate_size = 0;
2384 int i;
2386 for (i = 0; i < num_actuals && ! must_preallocate; i++)
2388 if (args[i].partial > 0 && ! args[i].pass_on_stack)
2389 partial_seen = 1;
2390 else if (partial_seen && args[i].reg == 0)
2391 must_preallocate = 1;
2393 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
2394 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
2395 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
2396 || TREE_CODE (args[i].tree_value) == COND_EXPR
2397 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
2398 copy_to_evaluate_size
2399 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
2402 if (maybe_ne (args_size->constant, 0)
2403 && maybe_ge (copy_to_evaluate_size * 2, args_size->constant))
2404 must_preallocate = 1;
2406 return must_preallocate;
2409 /* If we preallocated stack space, compute the address of each argument
2410 and store it into the ARGS array.
2412 We need not ensure it is a valid memory address here; it will be
2413 validized when it is used.
2415 ARGBLOCK is an rtx for the address of the outgoing arguments. */
2417 static void
2418 compute_argument_addresses (struct arg_data *args, rtx argblock, int num_actuals)
2420 if (argblock)
2422 rtx arg_reg = argblock;
2423 int i;
2424 poly_int64 arg_offset = 0;
2426 if (GET_CODE (argblock) == PLUS)
2428 arg_reg = XEXP (argblock, 0);
2429 arg_offset = rtx_to_poly_int64 (XEXP (argblock, 1));
2432 for (i = 0; i < num_actuals; i++)
2434 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
2435 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
2436 rtx addr;
2437 unsigned int align, boundary;
2438 poly_uint64 units_on_stack = 0;
2439 machine_mode partial_mode = VOIDmode;
2441 /* Skip this parm if it will not be passed on the stack. */
2442 if (! args[i].pass_on_stack
2443 && args[i].reg != 0
2444 && args[i].partial == 0)
2445 continue;
2447 if (TYPE_EMPTY_P (TREE_TYPE (args[i].tree_value)))
2448 continue;
2450 addr = simplify_gen_binary (PLUS, Pmode, arg_reg, offset);
2451 addr = plus_constant (Pmode, addr, arg_offset);
2453 if (args[i].partial != 0)
2455 /* Only part of the parameter is being passed on the stack.
2456 Generate a simple memory reference of the correct size. */
2457 units_on_stack = args[i].locate.size.constant;
2458 poly_uint64 bits_on_stack = units_on_stack * BITS_PER_UNIT;
2459 partial_mode = int_mode_for_size (bits_on_stack, 1).else_blk ();
2460 args[i].stack = gen_rtx_MEM (partial_mode, addr);
2461 set_mem_size (args[i].stack, units_on_stack);
2463 else
2465 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
2466 set_mem_attributes (args[i].stack,
2467 TREE_TYPE (args[i].tree_value), 1);
2469 align = BITS_PER_UNIT;
2470 boundary = args[i].locate.boundary;
2471 poly_int64 offset_val;
2472 if (args[i].locate.where_pad != PAD_DOWNWARD)
2473 align = boundary;
2474 else if (poly_int_rtx_p (offset, &offset_val))
2476 align = least_bit_hwi (boundary);
2477 unsigned int offset_align
2478 = known_alignment (offset_val) * BITS_PER_UNIT;
2479 if (offset_align != 0)
2480 align = MIN (align, offset_align);
2482 set_mem_align (args[i].stack, align);
2484 addr = simplify_gen_binary (PLUS, Pmode, arg_reg, slot_offset);
2485 addr = plus_constant (Pmode, addr, arg_offset);
2487 if (args[i].partial != 0)
2489 /* Only part of the parameter is being passed on the stack.
2490 Generate a simple memory reference of the correct size.
2492 args[i].stack_slot = gen_rtx_MEM (partial_mode, addr);
2493 set_mem_size (args[i].stack_slot, units_on_stack);
2495 else
2497 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
2498 set_mem_attributes (args[i].stack_slot,
2499 TREE_TYPE (args[i].tree_value), 1);
2501 set_mem_align (args[i].stack_slot, args[i].locate.boundary);
2503 /* Function incoming arguments may overlap with sibling call
2504 outgoing arguments and we cannot allow reordering of reads
2505 from function arguments with stores to outgoing arguments
2506 of sibling calls. */
2507 set_mem_alias_set (args[i].stack, 0);
2508 set_mem_alias_set (args[i].stack_slot, 0);
2513 /* Given a FNDECL and EXP, return an rtx suitable for use as a target address
2514 in a call instruction.
2516 FNDECL is the tree node for the target function. For an indirect call
2517 FNDECL will be NULL_TREE.
2519 ADDR is the operand 0 of CALL_EXPR for this call. */
2521 static rtx
2522 rtx_for_function_call (tree fndecl, tree addr)
2524 rtx funexp;
2526 /* Get the function to call, in the form of RTL. */
2527 if (fndecl)
2529 if (!TREE_USED (fndecl) && fndecl != current_function_decl)
2530 TREE_USED (fndecl) = 1;
2532 /* Get a SYMBOL_REF rtx for the function address. */
2533 funexp = XEXP (DECL_RTL (fndecl), 0);
2535 else
2536 /* Generate an rtx (probably a pseudo-register) for the address. */
2538 push_temp_slots ();
2539 funexp = expand_normal (addr);
2540 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
2542 return funexp;
2545 /* Return the static chain for this function, if any. */
2548 rtx_for_static_chain (const_tree fndecl_or_type, bool incoming_p)
2550 if (DECL_P (fndecl_or_type) && !DECL_STATIC_CHAIN (fndecl_or_type))
2551 return NULL;
2553 return targetm.calls.static_chain (fndecl_or_type, incoming_p);
2556 /* Internal state for internal_arg_pointer_based_exp and its helpers. */
2557 static struct
2559 /* Last insn that has been scanned by internal_arg_pointer_based_exp_scan,
2560 or NULL_RTX if none has been scanned yet. */
2561 rtx_insn *scan_start;
2562 /* Vector indexed by REGNO - FIRST_PSEUDO_REGISTER, recording if a pseudo is
2563 based on crtl->args.internal_arg_pointer. The element is NULL_RTX if the
2564 pseudo isn't based on it, a CONST_INT offset if the pseudo is based on it
2565 with fixed offset, or PC if this is with variable or unknown offset. */
2566 vec<rtx> cache;
2567 } internal_arg_pointer_exp_state;
2569 static rtx internal_arg_pointer_based_exp (const_rtx, bool);
2571 /* Helper function for internal_arg_pointer_based_exp. Scan insns in
2572 the tail call sequence, starting with first insn that hasn't been
2573 scanned yet, and note for each pseudo on the LHS whether it is based
2574 on crtl->args.internal_arg_pointer or not, and what offset from that
2575 that pointer it has. */
2577 static void
2578 internal_arg_pointer_based_exp_scan (void)
2580 rtx_insn *insn, *scan_start = internal_arg_pointer_exp_state.scan_start;
2582 if (scan_start == NULL_RTX)
2583 insn = get_insns ();
2584 else
2585 insn = NEXT_INSN (scan_start);
2587 while (insn)
2589 rtx set = single_set (insn);
2590 if (set && REG_P (SET_DEST (set)) && !HARD_REGISTER_P (SET_DEST (set)))
2592 rtx val = NULL_RTX;
2593 unsigned int idx = REGNO (SET_DEST (set)) - FIRST_PSEUDO_REGISTER;
2594 /* Punt on pseudos set multiple times. */
2595 if (idx < internal_arg_pointer_exp_state.cache.length ()
2596 && (internal_arg_pointer_exp_state.cache[idx]
2597 != NULL_RTX))
2598 val = pc_rtx;
2599 else
2600 val = internal_arg_pointer_based_exp (SET_SRC (set), false);
2601 if (val != NULL_RTX)
2603 if (idx >= internal_arg_pointer_exp_state.cache.length ())
2604 internal_arg_pointer_exp_state.cache
2605 .safe_grow_cleared (idx + 1);
2606 internal_arg_pointer_exp_state.cache[idx] = val;
2609 if (NEXT_INSN (insn) == NULL_RTX)
2610 scan_start = insn;
2611 insn = NEXT_INSN (insn);
2614 internal_arg_pointer_exp_state.scan_start = scan_start;
2617 /* Compute whether RTL is based on crtl->args.internal_arg_pointer. Return
2618 NULL_RTX if RTL isn't based on it, a CONST_INT offset if RTL is based on
2619 it with fixed offset, or PC if this is with variable or unknown offset.
2620 TOPLEVEL is true if the function is invoked at the topmost level. */
2622 static rtx
2623 internal_arg_pointer_based_exp (const_rtx rtl, bool toplevel)
2625 if (CONSTANT_P (rtl))
2626 return NULL_RTX;
2628 if (rtl == crtl->args.internal_arg_pointer)
2629 return const0_rtx;
2631 if (REG_P (rtl) && HARD_REGISTER_P (rtl))
2632 return NULL_RTX;
2634 poly_int64 offset;
2635 if (GET_CODE (rtl) == PLUS && poly_int_rtx_p (XEXP (rtl, 1), &offset))
2637 rtx val = internal_arg_pointer_based_exp (XEXP (rtl, 0), toplevel);
2638 if (val == NULL_RTX || val == pc_rtx)
2639 return val;
2640 return plus_constant (Pmode, val, offset);
2643 /* When called at the topmost level, scan pseudo assignments in between the
2644 last scanned instruction in the tail call sequence and the latest insn
2645 in that sequence. */
2646 if (toplevel)
2647 internal_arg_pointer_based_exp_scan ();
2649 if (REG_P (rtl))
2651 unsigned int idx = REGNO (rtl) - FIRST_PSEUDO_REGISTER;
2652 if (idx < internal_arg_pointer_exp_state.cache.length ())
2653 return internal_arg_pointer_exp_state.cache[idx];
2655 return NULL_RTX;
2658 subrtx_iterator::array_type array;
2659 FOR_EACH_SUBRTX (iter, array, rtl, NONCONST)
2661 const_rtx x = *iter;
2662 if (REG_P (x) && internal_arg_pointer_based_exp (x, false) != NULL_RTX)
2663 return pc_rtx;
2664 if (MEM_P (x))
2665 iter.skip_subrtxes ();
2668 return NULL_RTX;
2671 /* Return true if SIZE bytes starting from address ADDR might overlap an
2672 already-clobbered argument area. This function is used to determine
2673 if we should give up a sibcall. */
2675 static bool
2676 mem_might_overlap_already_clobbered_arg_p (rtx addr, poly_uint64 size)
2678 poly_int64 i;
2679 unsigned HOST_WIDE_INT start, end;
2680 rtx val;
2682 if (bitmap_empty_p (stored_args_map)
2683 && stored_args_watermark == HOST_WIDE_INT_M1U)
2684 return false;
2685 val = internal_arg_pointer_based_exp (addr, true);
2686 if (val == NULL_RTX)
2687 return false;
2688 else if (!poly_int_rtx_p (val, &i))
2689 return true;
2691 if (known_eq (size, 0U))
2692 return false;
2694 if (STACK_GROWS_DOWNWARD)
2695 i -= crtl->args.pretend_args_size;
2696 else
2697 i += crtl->args.pretend_args_size;
2699 if (ARGS_GROW_DOWNWARD)
2700 i = -i - size;
2702 /* We can ignore any references to the function's pretend args,
2703 which at this point would manifest as negative values of I. */
2704 if (known_le (i, 0) && known_le (size, poly_uint64 (-i)))
2705 return false;
2707 start = maybe_lt (i, 0) ? 0 : constant_lower_bound (i);
2708 if (!(i + size).is_constant (&end))
2709 end = HOST_WIDE_INT_M1U;
2711 if (end > stored_args_watermark)
2712 return true;
2714 end = MIN (end, SBITMAP_SIZE (stored_args_map));
2715 for (unsigned HOST_WIDE_INT k = start; k < end; ++k)
2716 if (bitmap_bit_p (stored_args_map, k))
2717 return true;
2719 return false;
2722 /* Do the register loads required for any wholly-register parms or any
2723 parms which are passed both on the stack and in a register. Their
2724 expressions were already evaluated.
2726 Mark all register-parms as living through the call, putting these USE
2727 insns in the CALL_INSN_FUNCTION_USAGE field.
2729 When IS_SIBCALL, perform the check_sibcall_argument_overlap
2730 checking, setting *SIBCALL_FAILURE if appropriate. */
2732 static void
2733 load_register_parameters (struct arg_data *args, int num_actuals,
2734 rtx *call_fusage, int flags, int is_sibcall,
2735 int *sibcall_failure)
2737 int i, j;
2739 for (i = 0; i < num_actuals; i++)
2741 rtx reg = ((flags & ECF_SIBCALL)
2742 ? args[i].tail_call_reg : args[i].reg);
2743 if (reg)
2745 int partial = args[i].partial;
2746 int nregs;
2747 poly_int64 size = 0;
2748 HOST_WIDE_INT const_size = 0;
2749 rtx_insn *before_arg = get_last_insn ();
2750 /* Set non-negative if we must move a word at a time, even if
2751 just one word (e.g, partial == 4 && mode == DFmode). Set
2752 to -1 if we just use a normal move insn. This value can be
2753 zero if the argument is a zero size structure. */
2754 nregs = -1;
2755 if (GET_CODE (reg) == PARALLEL)
2757 else if (partial)
2759 gcc_assert (partial % UNITS_PER_WORD == 0);
2760 nregs = partial / UNITS_PER_WORD;
2762 else if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode)
2764 /* Variable-sized parameters should be described by a
2765 PARALLEL instead. */
2766 const_size = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
2767 gcc_assert (const_size >= 0);
2768 nregs = (const_size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
2769 size = const_size;
2771 else
2772 size = GET_MODE_SIZE (args[i].mode);
2774 /* Handle calls that pass values in multiple non-contiguous
2775 locations. The Irix 6 ABI has examples of this. */
2777 if (GET_CODE (reg) == PARALLEL)
2778 emit_group_move (reg, args[i].parallel_value);
2780 /* If simple case, just do move. If normal partial, store_one_arg
2781 has already loaded the register for us. In all other cases,
2782 load the register(s) from memory. */
2784 else if (nregs == -1)
2786 emit_move_insn (reg, args[i].value);
2787 #ifdef BLOCK_REG_PADDING
2788 /* Handle case where we have a value that needs shifting
2789 up to the msb. eg. a QImode value and we're padding
2790 upward on a BYTES_BIG_ENDIAN machine. */
2791 if (args[i].locate.where_pad
2792 == (BYTES_BIG_ENDIAN ? PAD_UPWARD : PAD_DOWNWARD))
2794 gcc_checking_assert (ordered_p (size, UNITS_PER_WORD));
2795 if (maybe_lt (size, UNITS_PER_WORD))
2797 rtx x;
2798 poly_int64 shift
2799 = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2801 /* Assigning REG here rather than a temp makes
2802 CALL_FUSAGE report the whole reg as used.
2803 Strictly speaking, the call only uses SIZE
2804 bytes at the msb end, but it doesn't seem worth
2805 generating rtl to say that. */
2806 reg = gen_rtx_REG (word_mode, REGNO (reg));
2807 x = expand_shift (LSHIFT_EXPR, word_mode,
2808 reg, shift, reg, 1);
2809 if (x != reg)
2810 emit_move_insn (reg, x);
2813 #endif
2816 /* If we have pre-computed the values to put in the registers in
2817 the case of non-aligned structures, copy them in now. */
2819 else if (args[i].n_aligned_regs != 0)
2820 for (j = 0; j < args[i].n_aligned_regs; j++)
2821 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
2822 args[i].aligned_regs[j]);
2824 else if (partial == 0 || args[i].pass_on_stack)
2826 /* SIZE and CONST_SIZE are 0 for partial arguments and
2827 the size of a BLKmode type otherwise. */
2828 gcc_checking_assert (known_eq (size, const_size));
2829 rtx mem = validize_mem (copy_rtx (args[i].value));
2831 /* Check for overlap with already clobbered argument area,
2832 providing that this has non-zero size. */
2833 if (is_sibcall
2834 && const_size != 0
2835 && (mem_might_overlap_already_clobbered_arg_p
2836 (XEXP (args[i].value, 0), const_size)))
2837 *sibcall_failure = 1;
2839 if (const_size % UNITS_PER_WORD == 0
2840 || MEM_ALIGN (mem) % BITS_PER_WORD == 0)
2841 move_block_to_reg (REGNO (reg), mem, nregs, args[i].mode);
2842 else
2844 if (nregs > 1)
2845 move_block_to_reg (REGNO (reg), mem, nregs - 1,
2846 args[i].mode);
2847 rtx dest = gen_rtx_REG (word_mode, REGNO (reg) + nregs - 1);
2848 unsigned int bitoff = (nregs - 1) * BITS_PER_WORD;
2849 unsigned int bitsize = const_size * BITS_PER_UNIT - bitoff;
2850 rtx x = extract_bit_field (mem, bitsize, bitoff, 1, dest,
2851 word_mode, word_mode, false,
2852 NULL);
2853 if (BYTES_BIG_ENDIAN)
2854 x = expand_shift (LSHIFT_EXPR, word_mode, x,
2855 BITS_PER_WORD - bitsize, dest, 1);
2856 if (x != dest)
2857 emit_move_insn (dest, x);
2860 /* Handle a BLKmode that needs shifting. */
2861 if (nregs == 1 && const_size < UNITS_PER_WORD
2862 #ifdef BLOCK_REG_PADDING
2863 && args[i].locate.where_pad == PAD_DOWNWARD
2864 #else
2865 && BYTES_BIG_ENDIAN
2866 #endif
2869 rtx dest = gen_rtx_REG (word_mode, REGNO (reg));
2870 int shift = (UNITS_PER_WORD - const_size) * BITS_PER_UNIT;
2871 enum tree_code dir = (BYTES_BIG_ENDIAN
2872 ? RSHIFT_EXPR : LSHIFT_EXPR);
2873 rtx x;
2875 x = expand_shift (dir, word_mode, dest, shift, dest, 1);
2876 if (x != dest)
2877 emit_move_insn (dest, x);
2881 /* When a parameter is a block, and perhaps in other cases, it is
2882 possible that it did a load from an argument slot that was
2883 already clobbered. */
2884 if (is_sibcall
2885 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
2886 *sibcall_failure = 1;
2888 /* Handle calls that pass values in multiple non-contiguous
2889 locations. The Irix 6 ABI has examples of this. */
2890 if (GET_CODE (reg) == PARALLEL)
2891 use_group_regs (call_fusage, reg);
2892 else if (nregs == -1)
2893 use_reg_mode (call_fusage, reg,
2894 TYPE_MODE (TREE_TYPE (args[i].tree_value)));
2895 else if (nregs > 0)
2896 use_regs (call_fusage, REGNO (reg), nregs);
2901 /* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
2902 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
2903 bytes, then we would need to push some additional bytes to pad the
2904 arguments. So, we try to compute an adjust to the stack pointer for an
2905 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
2906 bytes. Then, when the arguments are pushed the stack will be perfectly
2907 aligned.
2909 Return true if this optimization is possible, storing the adjustment
2910 in ADJUSTMENT_OUT and setting ARGS_SIZE->CONSTANT to the number of
2911 bytes that should be popped after the call. */
2913 static bool
2914 combine_pending_stack_adjustment_and_call (poly_int64_pod *adjustment_out,
2915 poly_int64 unadjusted_args_size,
2916 struct args_size *args_size,
2917 unsigned int preferred_unit_stack_boundary)
2919 /* The number of bytes to pop so that the stack will be
2920 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
2921 poly_int64 adjustment;
2922 /* The alignment of the stack after the arguments are pushed, if we
2923 just pushed the arguments without adjust the stack here. */
2924 unsigned HOST_WIDE_INT unadjusted_alignment;
2926 if (!known_misalignment (stack_pointer_delta + unadjusted_args_size,
2927 preferred_unit_stack_boundary,
2928 &unadjusted_alignment))
2929 return false;
2931 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
2932 as possible -- leaving just enough left to cancel out the
2933 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
2934 PENDING_STACK_ADJUST is non-negative, and congruent to
2935 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
2937 /* Begin by trying to pop all the bytes. */
2938 unsigned HOST_WIDE_INT tmp_misalignment;
2939 if (!known_misalignment (pending_stack_adjust,
2940 preferred_unit_stack_boundary,
2941 &tmp_misalignment))
2942 return false;
2943 unadjusted_alignment -= tmp_misalignment;
2944 adjustment = pending_stack_adjust;
2945 /* Push enough additional bytes that the stack will be aligned
2946 after the arguments are pushed. */
2947 if (preferred_unit_stack_boundary > 1 && unadjusted_alignment)
2948 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
2950 /* We need to know whether the adjusted argument size
2951 (UNADJUSTED_ARGS_SIZE - ADJUSTMENT) constitutes an allocation
2952 or a deallocation. */
2953 if (!ordered_p (adjustment, unadjusted_args_size))
2954 return false;
2956 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
2957 bytes after the call. The right number is the entire
2958 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
2959 by the arguments in the first place. */
2960 args_size->constant
2961 = pending_stack_adjust - adjustment + unadjusted_args_size;
2963 *adjustment_out = adjustment;
2964 return true;
2967 /* Scan X expression if it does not dereference any argument slots
2968 we already clobbered by tail call arguments (as noted in stored_args_map
2969 bitmap).
2970 Return nonzero if X expression dereferences such argument slots,
2971 zero otherwise. */
2973 static int
2974 check_sibcall_argument_overlap_1 (rtx x)
2976 RTX_CODE code;
2977 int i, j;
2978 const char *fmt;
2980 if (x == NULL_RTX)
2981 return 0;
2983 code = GET_CODE (x);
2985 /* We need not check the operands of the CALL expression itself. */
2986 if (code == CALL)
2987 return 0;
2989 if (code == MEM)
2990 return (mem_might_overlap_already_clobbered_arg_p
2991 (XEXP (x, 0), GET_MODE_SIZE (GET_MODE (x))));
2993 /* Scan all subexpressions. */
2994 fmt = GET_RTX_FORMAT (code);
2995 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2997 if (*fmt == 'e')
2999 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
3000 return 1;
3002 else if (*fmt == 'E')
3004 for (j = 0; j < XVECLEN (x, i); j++)
3005 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
3006 return 1;
3009 return 0;
3012 /* Scan sequence after INSN if it does not dereference any argument slots
3013 we already clobbered by tail call arguments (as noted in stored_args_map
3014 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
3015 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
3016 should be 0). Return nonzero if sequence after INSN dereferences such argument
3017 slots, zero otherwise. */
3019 static int
3020 check_sibcall_argument_overlap (rtx_insn *insn, struct arg_data *arg,
3021 int mark_stored_args_map)
3023 poly_uint64 low, high;
3024 unsigned HOST_WIDE_INT const_low, const_high;
3026 if (insn == NULL_RTX)
3027 insn = get_insns ();
3028 else
3029 insn = NEXT_INSN (insn);
3031 for (; insn; insn = NEXT_INSN (insn))
3032 if (INSN_P (insn)
3033 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
3034 break;
3036 if (mark_stored_args_map)
3038 if (ARGS_GROW_DOWNWARD)
3039 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
3040 else
3041 low = arg->locate.slot_offset.constant;
3042 high = low + arg->locate.size.constant;
3044 const_low = constant_lower_bound (low);
3045 if (high.is_constant (&const_high))
3046 for (unsigned HOST_WIDE_INT i = const_low; i < const_high; ++i)
3047 bitmap_set_bit (stored_args_map, i);
3048 else
3049 stored_args_watermark = MIN (stored_args_watermark, const_low);
3051 return insn != NULL_RTX;
3054 /* Given that a function returns a value of mode MODE at the most
3055 significant end of hard register VALUE, shift VALUE left or right
3056 as specified by LEFT_P. Return true if some action was needed. */
3058 bool
3059 shift_return_value (machine_mode mode, bool left_p, rtx value)
3061 gcc_assert (REG_P (value) && HARD_REGISTER_P (value));
3062 machine_mode value_mode = GET_MODE (value);
3063 poly_int64 shift = GET_MODE_BITSIZE (value_mode) - GET_MODE_BITSIZE (mode);
3065 if (known_eq (shift, 0))
3066 return false;
3068 /* Use ashr rather than lshr for right shifts. This is for the benefit
3069 of the MIPS port, which requires SImode values to be sign-extended
3070 when stored in 64-bit registers. */
3071 if (!force_expand_binop (value_mode, left_p ? ashl_optab : ashr_optab,
3072 value, gen_int_shift_amount (value_mode, shift),
3073 value, 1, OPTAB_WIDEN))
3074 gcc_unreachable ();
3075 return true;
3078 /* If X is a likely-spilled register value, copy it to a pseudo
3079 register and return that register. Return X otherwise. */
3081 static rtx
3082 avoid_likely_spilled_reg (rtx x)
3084 rtx new_rtx;
3086 if (REG_P (x)
3087 && HARD_REGISTER_P (x)
3088 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (x))))
3090 /* Make sure that we generate a REG rather than a CONCAT.
3091 Moves into CONCATs can need nontrivial instructions,
3092 and the whole point of this function is to avoid
3093 using the hard register directly in such a situation. */
3094 generating_concat_p = 0;
3095 new_rtx = gen_reg_rtx (GET_MODE (x));
3096 generating_concat_p = 1;
3097 emit_move_insn (new_rtx, x);
3098 return new_rtx;
3100 return x;
3103 /* Helper function for expand_call.
3104 Return false is EXP is not implementable as a sibling call. */
3106 static bool
3107 can_implement_as_sibling_call_p (tree exp,
3108 rtx structure_value_addr,
3109 tree funtype,
3110 int reg_parm_stack_space ATTRIBUTE_UNUSED,
3111 tree fndecl,
3112 int flags,
3113 tree addr,
3114 const args_size &args_size)
3116 if (!targetm.have_sibcall_epilogue ())
3118 maybe_complain_about_tail_call
3119 (exp,
3120 "machine description does not have"
3121 " a sibcall_epilogue instruction pattern");
3122 return false;
3125 /* Doing sibling call optimization needs some work, since
3126 structure_value_addr can be allocated on the stack.
3127 It does not seem worth the effort since few optimizable
3128 sibling calls will return a structure. */
3129 if (structure_value_addr != NULL_RTX)
3131 maybe_complain_about_tail_call (exp, "callee returns a structure");
3132 return false;
3135 #ifdef REG_PARM_STACK_SPACE
3136 /* If outgoing reg parm stack space changes, we can not do sibcall. */
3137 if (OUTGOING_REG_PARM_STACK_SPACE (funtype)
3138 != OUTGOING_REG_PARM_STACK_SPACE (TREE_TYPE (current_function_decl))
3139 || (reg_parm_stack_space != REG_PARM_STACK_SPACE (current_function_decl)))
3141 maybe_complain_about_tail_call (exp,
3142 "inconsistent size of stack space"
3143 " allocated for arguments which are"
3144 " passed in registers");
3145 return false;
3147 #endif
3149 /* Check whether the target is able to optimize the call
3150 into a sibcall. */
3151 if (!targetm.function_ok_for_sibcall (fndecl, exp))
3153 maybe_complain_about_tail_call (exp,
3154 "target is not able to optimize the"
3155 " call into a sibling call");
3156 return false;
3159 /* Functions that do not return exactly once may not be sibcall
3160 optimized. */
3161 if (flags & ECF_RETURNS_TWICE)
3163 maybe_complain_about_tail_call (exp, "callee returns twice");
3164 return false;
3166 if (flags & ECF_NORETURN)
3168 maybe_complain_about_tail_call (exp, "callee does not return");
3169 return false;
3172 if (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr))))
3174 maybe_complain_about_tail_call (exp, "volatile function type");
3175 return false;
3178 /* If the called function is nested in the current one, it might access
3179 some of the caller's arguments, but could clobber them beforehand if
3180 the argument areas are shared. */
3181 if (fndecl && decl_function_context (fndecl) == current_function_decl)
3183 maybe_complain_about_tail_call (exp, "nested function");
3184 return false;
3187 /* If this function requires more stack slots than the current
3188 function, we cannot change it into a sibling call.
3189 crtl->args.pretend_args_size is not part of the
3190 stack allocated by our caller. */
3191 if (maybe_gt (args_size.constant,
3192 crtl->args.size - crtl->args.pretend_args_size))
3194 maybe_complain_about_tail_call (exp,
3195 "callee required more stack slots"
3196 " than the caller");
3197 return false;
3200 /* If the callee pops its own arguments, then it must pop exactly
3201 the same number of arguments as the current function. */
3202 if (maybe_ne (targetm.calls.return_pops_args (fndecl, funtype,
3203 args_size.constant),
3204 targetm.calls.return_pops_args (current_function_decl,
3205 TREE_TYPE
3206 (current_function_decl),
3207 crtl->args.size)))
3209 maybe_complain_about_tail_call (exp,
3210 "inconsistent number of"
3211 " popped arguments");
3212 return false;
3215 if (!lang_hooks.decls.ok_for_sibcall (fndecl))
3217 maybe_complain_about_tail_call (exp, "frontend does not support"
3218 " sibling call");
3219 return false;
3222 /* All checks passed. */
3223 return true;
3226 /* Generate all the code for a CALL_EXPR exp
3227 and return an rtx for its value.
3228 Store the value in TARGET (specified as an rtx) if convenient.
3229 If the value is stored in TARGET then TARGET is returned.
3230 If IGNORE is nonzero, then we ignore the value of the function call. */
3233 expand_call (tree exp, rtx target, int ignore)
3235 /* Nonzero if we are currently expanding a call. */
3236 static int currently_expanding_call = 0;
3238 /* RTX for the function to be called. */
3239 rtx funexp;
3240 /* Sequence of insns to perform a normal "call". */
3241 rtx_insn *normal_call_insns = NULL;
3242 /* Sequence of insns to perform a tail "call". */
3243 rtx_insn *tail_call_insns = NULL;
3244 /* Data type of the function. */
3245 tree funtype;
3246 tree type_arg_types;
3247 tree rettype;
3248 /* Declaration of the function being called,
3249 or 0 if the function is computed (not known by name). */
3250 tree fndecl = 0;
3251 /* The type of the function being called. */
3252 tree fntype;
3253 bool try_tail_call = CALL_EXPR_TAILCALL (exp);
3254 bool must_tail_call = CALL_EXPR_MUST_TAIL_CALL (exp);
3255 int pass;
3257 /* Register in which non-BLKmode value will be returned,
3258 or 0 if no value or if value is BLKmode. */
3259 rtx valreg;
3260 /* Address where we should return a BLKmode value;
3261 0 if value not BLKmode. */
3262 rtx structure_value_addr = 0;
3263 /* Nonzero if that address is being passed by treating it as
3264 an extra, implicit first parameter. Otherwise,
3265 it is passed by being copied directly into struct_value_rtx. */
3266 int structure_value_addr_parm = 0;
3267 /* Holds the value of implicit argument for the struct value. */
3268 tree structure_value_addr_value = NULL_TREE;
3269 /* Size of aggregate value wanted, or zero if none wanted
3270 or if we are using the non-reentrant PCC calling convention
3271 or expecting the value in registers. */
3272 poly_int64 struct_value_size = 0;
3273 /* Nonzero if called function returns an aggregate in memory PCC style,
3274 by returning the address of where to find it. */
3275 int pcc_struct_value = 0;
3276 rtx struct_value = 0;
3278 /* Number of actual parameters in this call, including struct value addr. */
3279 int num_actuals;
3280 /* Number of named args. Args after this are anonymous ones
3281 and they must all go on the stack. */
3282 int n_named_args;
3283 /* Number of complex actual arguments that need to be split. */
3284 int num_complex_actuals = 0;
3286 /* Vector of information about each argument.
3287 Arguments are numbered in the order they will be pushed,
3288 not the order they are written. */
3289 struct arg_data *args;
3291 /* Total size in bytes of all the stack-parms scanned so far. */
3292 struct args_size args_size;
3293 struct args_size adjusted_args_size;
3294 /* Size of arguments before any adjustments (such as rounding). */
3295 poly_int64 unadjusted_args_size;
3296 /* Data on reg parms scanned so far. */
3297 CUMULATIVE_ARGS args_so_far_v;
3298 cumulative_args_t args_so_far;
3299 /* Nonzero if a reg parm has been scanned. */
3300 int reg_parm_seen;
3301 /* Nonzero if this is an indirect function call. */
3303 /* Nonzero if we must avoid push-insns in the args for this call.
3304 If stack space is allocated for register parameters, but not by the
3305 caller, then it is preallocated in the fixed part of the stack frame.
3306 So the entire argument block must then be preallocated (i.e., we
3307 ignore PUSH_ROUNDING in that case). */
3309 int must_preallocate = !PUSH_ARGS;
3311 /* Size of the stack reserved for parameter registers. */
3312 int reg_parm_stack_space = 0;
3314 /* Address of space preallocated for stack parms
3315 (on machines that lack push insns), or 0 if space not preallocated. */
3316 rtx argblock = 0;
3318 /* Mask of ECF_ and ERF_ flags. */
3319 int flags = 0;
3320 int return_flags = 0;
3321 #ifdef REG_PARM_STACK_SPACE
3322 /* Define the boundary of the register parm stack space that needs to be
3323 saved, if any. */
3324 int low_to_save, high_to_save;
3325 rtx save_area = 0; /* Place that it is saved */
3326 #endif
3328 unsigned int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3329 char *initial_stack_usage_map = stack_usage_map;
3330 unsigned HOST_WIDE_INT initial_stack_usage_watermark = stack_usage_watermark;
3331 char *stack_usage_map_buf = NULL;
3333 poly_int64 old_stack_allocated;
3335 /* State variables to track stack modifications. */
3336 rtx old_stack_level = 0;
3337 int old_stack_arg_under_construction = 0;
3338 poly_int64 old_pending_adj = 0;
3339 int old_inhibit_defer_pop = inhibit_defer_pop;
3341 /* Some stack pointer alterations we make are performed via
3342 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
3343 which we then also need to save/restore along the way. */
3344 poly_int64 old_stack_pointer_delta = 0;
3346 rtx call_fusage;
3347 tree addr = CALL_EXPR_FN (exp);
3348 int i;
3349 /* The alignment of the stack, in bits. */
3350 unsigned HOST_WIDE_INT preferred_stack_boundary;
3351 /* The alignment of the stack, in bytes. */
3352 unsigned HOST_WIDE_INT preferred_unit_stack_boundary;
3353 /* The static chain value to use for this call. */
3354 rtx static_chain_value;
3355 /* See if this is "nothrow" function call. */
3356 if (TREE_NOTHROW (exp))
3357 flags |= ECF_NOTHROW;
3359 /* See if we can find a DECL-node for the actual function, and get the
3360 function attributes (flags) from the function decl or type node. */
3361 fndecl = get_callee_fndecl (exp);
3362 if (fndecl)
3364 fntype = TREE_TYPE (fndecl);
3365 flags |= flags_from_decl_or_type (fndecl);
3366 return_flags |= decl_return_flags (fndecl);
3368 else
3370 fntype = TREE_TYPE (TREE_TYPE (addr));
3371 flags |= flags_from_decl_or_type (fntype);
3372 if (CALL_EXPR_BY_DESCRIPTOR (exp))
3373 flags |= ECF_BY_DESCRIPTOR;
3375 rettype = TREE_TYPE (exp);
3377 struct_value = targetm.calls.struct_value_rtx (fntype, 0);
3379 /* Warn if this value is an aggregate type,
3380 regardless of which calling convention we are using for it. */
3381 if (AGGREGATE_TYPE_P (rettype))
3382 warning (OPT_Waggregate_return, "function call has aggregate value");
3384 /* If the result of a non looping pure or const function call is
3385 ignored (or void), and none of its arguments are volatile, we can
3386 avoid expanding the call and just evaluate the arguments for
3387 side-effects. */
3388 if ((flags & (ECF_CONST | ECF_PURE))
3389 && (!(flags & ECF_LOOPING_CONST_OR_PURE))
3390 && (ignore || target == const0_rtx
3391 || TYPE_MODE (rettype) == VOIDmode))
3393 bool volatilep = false;
3394 tree arg;
3395 call_expr_arg_iterator iter;
3397 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
3398 if (TREE_THIS_VOLATILE (arg))
3400 volatilep = true;
3401 break;
3404 if (! volatilep)
3406 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
3407 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
3408 return const0_rtx;
3412 #ifdef REG_PARM_STACK_SPACE
3413 reg_parm_stack_space = REG_PARM_STACK_SPACE (!fndecl ? fntype : fndecl);
3414 #endif
3416 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
3417 && reg_parm_stack_space > 0 && PUSH_ARGS)
3418 must_preallocate = 1;
3420 /* Set up a place to return a structure. */
3422 /* Cater to broken compilers. */
3423 if (aggregate_value_p (exp, fntype))
3425 /* This call returns a big structure. */
3426 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
3428 #ifdef PCC_STATIC_STRUCT_RETURN
3430 pcc_struct_value = 1;
3432 #else /* not PCC_STATIC_STRUCT_RETURN */
3434 if (!poly_int_tree_p (TYPE_SIZE_UNIT (rettype), &struct_value_size))
3435 struct_value_size = -1;
3437 /* Even if it is semantically safe to use the target as the return
3438 slot, it may be not sufficiently aligned for the return type. */
3439 if (CALL_EXPR_RETURN_SLOT_OPT (exp)
3440 && target
3441 && MEM_P (target)
3442 /* If rettype is addressable, we may not create a temporary.
3443 If target is properly aligned at runtime and the compiler
3444 just doesn't know about it, it will work fine, otherwise it
3445 will be UB. */
3446 && (TREE_ADDRESSABLE (rettype)
3447 || !(MEM_ALIGN (target) < TYPE_ALIGN (rettype)
3448 && targetm.slow_unaligned_access (TYPE_MODE (rettype),
3449 MEM_ALIGN (target)))))
3450 structure_value_addr = XEXP (target, 0);
3451 else
3453 /* For variable-sized objects, we must be called with a target
3454 specified. If we were to allocate space on the stack here,
3455 we would have no way of knowing when to free it. */
3456 rtx d = assign_temp (rettype, 1, 1);
3457 structure_value_addr = XEXP (d, 0);
3458 target = 0;
3461 #endif /* not PCC_STATIC_STRUCT_RETURN */
3464 /* Figure out the amount to which the stack should be aligned. */
3465 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
3466 if (fndecl)
3468 struct cgraph_rtl_info *i = cgraph_node::rtl_info (fndecl);
3469 /* Without automatic stack alignment, we can't increase preferred
3470 stack boundary. With automatic stack alignment, it is
3471 unnecessary since unless we can guarantee that all callers will
3472 align the outgoing stack properly, callee has to align its
3473 stack anyway. */
3474 if (i
3475 && i->preferred_incoming_stack_boundary
3476 && i->preferred_incoming_stack_boundary < preferred_stack_boundary)
3477 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
3480 /* Operand 0 is a pointer-to-function; get the type of the function. */
3481 funtype = TREE_TYPE (addr);
3482 gcc_assert (POINTER_TYPE_P (funtype));
3483 funtype = TREE_TYPE (funtype);
3485 /* Count whether there are actual complex arguments that need to be split
3486 into their real and imaginary parts. Munge the type_arg_types
3487 appropriately here as well. */
3488 if (targetm.calls.split_complex_arg)
3490 call_expr_arg_iterator iter;
3491 tree arg;
3492 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
3494 tree type = TREE_TYPE (arg);
3495 if (type && TREE_CODE (type) == COMPLEX_TYPE
3496 && targetm.calls.split_complex_arg (type))
3497 num_complex_actuals++;
3499 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
3501 else
3502 type_arg_types = TYPE_ARG_TYPES (funtype);
3504 if (flags & ECF_MAY_BE_ALLOCA)
3505 cfun->calls_alloca = 1;
3507 /* If struct_value_rtx is 0, it means pass the address
3508 as if it were an extra parameter. Put the argument expression
3509 in structure_value_addr_value. */
3510 if (structure_value_addr && struct_value == 0)
3512 /* If structure_value_addr is a REG other than
3513 virtual_outgoing_args_rtx, we can use always use it. If it
3514 is not a REG, we must always copy it into a register.
3515 If it is virtual_outgoing_args_rtx, we must copy it to another
3516 register in some cases. */
3517 rtx temp = (!REG_P (structure_value_addr)
3518 || (ACCUMULATE_OUTGOING_ARGS
3519 && stack_arg_under_construction
3520 && structure_value_addr == virtual_outgoing_args_rtx)
3521 ? copy_addr_to_reg (convert_memory_address
3522 (Pmode, structure_value_addr))
3523 : structure_value_addr);
3525 structure_value_addr_value =
3526 make_tree (build_pointer_type (TREE_TYPE (funtype)), temp);
3527 structure_value_addr_parm = 1;
3530 /* Count the arguments and set NUM_ACTUALS. */
3531 num_actuals =
3532 call_expr_nargs (exp) + num_complex_actuals + structure_value_addr_parm;
3534 /* Compute number of named args.
3535 First, do a raw count of the args for INIT_CUMULATIVE_ARGS. */
3537 if (type_arg_types != 0)
3538 n_named_args
3539 = (list_length (type_arg_types)
3540 /* Count the struct value address, if it is passed as a parm. */
3541 + structure_value_addr_parm);
3542 else
3543 /* If we know nothing, treat all args as named. */
3544 n_named_args = num_actuals;
3546 /* Start updating where the next arg would go.
3548 On some machines (such as the PA) indirect calls have a different
3549 calling convention than normal calls. The fourth argument in
3550 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
3551 or not. */
3552 INIT_CUMULATIVE_ARGS (args_so_far_v, funtype, NULL_RTX, fndecl, n_named_args);
3553 args_so_far = pack_cumulative_args (&args_so_far_v);
3555 /* Now possibly adjust the number of named args.
3556 Normally, don't include the last named arg if anonymous args follow.
3557 We do include the last named arg if
3558 targetm.calls.strict_argument_naming() returns nonzero.
3559 (If no anonymous args follow, the result of list_length is actually
3560 one too large. This is harmless.)
3562 If targetm.calls.pretend_outgoing_varargs_named() returns
3563 nonzero, and targetm.calls.strict_argument_naming() returns zero,
3564 this machine will be able to place unnamed args that were passed
3565 in registers into the stack. So treat all args as named. This
3566 allows the insns emitting for a specific argument list to be
3567 independent of the function declaration.
3569 If targetm.calls.pretend_outgoing_varargs_named() returns zero,
3570 we do not have any reliable way to pass unnamed args in
3571 registers, so we must force them into memory. */
3573 if (type_arg_types != 0
3574 && targetm.calls.strict_argument_naming (args_so_far))
3576 else if (type_arg_types != 0
3577 && ! targetm.calls.pretend_outgoing_varargs_named (args_so_far))
3578 /* Don't include the last named arg. */
3579 --n_named_args;
3580 else
3581 /* Treat all args as named. */
3582 n_named_args = num_actuals;
3584 /* Make a vector to hold all the information about each arg. */
3585 args = XCNEWVEC (struct arg_data, num_actuals);
3587 /* Build up entries in the ARGS array, compute the size of the
3588 arguments into ARGS_SIZE, etc. */
3589 initialize_argument_information (num_actuals, args, &args_size,
3590 n_named_args, exp,
3591 structure_value_addr_value, fndecl, fntype,
3592 args_so_far, reg_parm_stack_space,
3593 &old_stack_level, &old_pending_adj,
3594 &must_preallocate, &flags,
3595 &try_tail_call, CALL_FROM_THUNK_P (exp));
3597 if (args_size.var)
3598 must_preallocate = 1;
3600 /* Now make final decision about preallocating stack space. */
3601 must_preallocate = finalize_must_preallocate (must_preallocate,
3602 num_actuals, args,
3603 &args_size);
3605 /* If the structure value address will reference the stack pointer, we
3606 must stabilize it. We don't need to do this if we know that we are
3607 not going to adjust the stack pointer in processing this call. */
3609 if (structure_value_addr
3610 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
3611 || reg_mentioned_p (virtual_outgoing_args_rtx,
3612 structure_value_addr))
3613 && (args_size.var
3614 || (!ACCUMULATE_OUTGOING_ARGS
3615 && maybe_ne (args_size.constant, 0))))
3616 structure_value_addr = copy_to_reg (structure_value_addr);
3618 /* Tail calls can make things harder to debug, and we've traditionally
3619 pushed these optimizations into -O2. Don't try if we're already
3620 expanding a call, as that means we're an argument. Don't try if
3621 there's cleanups, as we know there's code to follow the call. */
3622 if (currently_expanding_call++ != 0
3623 || (!flag_optimize_sibling_calls && !CALL_FROM_THUNK_P (exp))
3624 || args_size.var
3625 || dbg_cnt (tail_call) == false)
3626 try_tail_call = 0;
3628 /* If the user has marked the function as requiring tail-call
3629 optimization, attempt it. */
3630 if (must_tail_call)
3631 try_tail_call = 1;
3633 /* Rest of purposes for tail call optimizations to fail. */
3634 if (try_tail_call)
3635 try_tail_call = can_implement_as_sibling_call_p (exp,
3636 structure_value_addr,
3637 funtype,
3638 reg_parm_stack_space,
3639 fndecl,
3640 flags, addr, args_size);
3642 /* Check if caller and callee disagree in promotion of function
3643 return value. */
3644 if (try_tail_call)
3646 machine_mode caller_mode, caller_promoted_mode;
3647 machine_mode callee_mode, callee_promoted_mode;
3648 int caller_unsignedp, callee_unsignedp;
3649 tree caller_res = DECL_RESULT (current_function_decl);
3651 caller_unsignedp = TYPE_UNSIGNED (TREE_TYPE (caller_res));
3652 caller_mode = DECL_MODE (caller_res);
3653 callee_unsignedp = TYPE_UNSIGNED (TREE_TYPE (funtype));
3654 callee_mode = TYPE_MODE (TREE_TYPE (funtype));
3655 caller_promoted_mode
3656 = promote_function_mode (TREE_TYPE (caller_res), caller_mode,
3657 &caller_unsignedp,
3658 TREE_TYPE (current_function_decl), 1);
3659 callee_promoted_mode
3660 = promote_function_mode (TREE_TYPE (funtype), callee_mode,
3661 &callee_unsignedp,
3662 funtype, 1);
3663 if (caller_mode != VOIDmode
3664 && (caller_promoted_mode != callee_promoted_mode
3665 || ((caller_mode != caller_promoted_mode
3666 || callee_mode != callee_promoted_mode)
3667 && (caller_unsignedp != callee_unsignedp
3668 || partial_subreg_p (caller_mode, callee_mode)))))
3670 try_tail_call = 0;
3671 maybe_complain_about_tail_call (exp,
3672 "caller and callee disagree in"
3673 " promotion of function"
3674 " return value");
3678 /* Ensure current function's preferred stack boundary is at least
3679 what we need. Stack alignment may also increase preferred stack
3680 boundary. */
3681 if (crtl->preferred_stack_boundary < preferred_stack_boundary)
3682 crtl->preferred_stack_boundary = preferred_stack_boundary;
3683 else
3684 preferred_stack_boundary = crtl->preferred_stack_boundary;
3686 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
3688 /* We want to make two insn chains; one for a sibling call, the other
3689 for a normal call. We will select one of the two chains after
3690 initial RTL generation is complete. */
3691 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
3693 int sibcall_failure = 0;
3694 /* We want to emit any pending stack adjustments before the tail
3695 recursion "call". That way we know any adjustment after the tail
3696 recursion call can be ignored if we indeed use the tail
3697 call expansion. */
3698 saved_pending_stack_adjust save;
3699 rtx_insn *insns, *before_call, *after_args;
3700 rtx next_arg_reg;
3702 if (pass == 0)
3704 /* State variables we need to save and restore between
3705 iterations. */
3706 save_pending_stack_adjust (&save);
3708 if (pass)
3709 flags &= ~ECF_SIBCALL;
3710 else
3711 flags |= ECF_SIBCALL;
3713 /* Other state variables that we must reinitialize each time
3714 through the loop (that are not initialized by the loop itself). */
3715 argblock = 0;
3716 call_fusage = 0;
3718 /* Start a new sequence for the normal call case.
3720 From this point on, if the sibling call fails, we want to set
3721 sibcall_failure instead of continuing the loop. */
3722 start_sequence ();
3724 /* Don't let pending stack adjusts add up to too much.
3725 Also, do all pending adjustments now if there is any chance
3726 this might be a call to alloca or if we are expanding a sibling
3727 call sequence.
3728 Also do the adjustments before a throwing call, otherwise
3729 exception handling can fail; PR 19225. */
3730 if (maybe_ge (pending_stack_adjust, 32)
3731 || (maybe_ne (pending_stack_adjust, 0)
3732 && (flags & ECF_MAY_BE_ALLOCA))
3733 || (maybe_ne (pending_stack_adjust, 0)
3734 && flag_exceptions && !(flags & ECF_NOTHROW))
3735 || pass == 0)
3736 do_pending_stack_adjust ();
3738 /* Precompute any arguments as needed. */
3739 if (pass)
3740 precompute_arguments (num_actuals, args);
3742 /* Now we are about to start emitting insns that can be deleted
3743 if a libcall is deleted. */
3744 if (pass && (flags & ECF_MALLOC))
3745 start_sequence ();
3747 if (pass == 0
3748 && crtl->stack_protect_guard
3749 && targetm.stack_protect_runtime_enabled_p ())
3750 stack_protect_epilogue ();
3752 adjusted_args_size = args_size;
3753 /* Compute the actual size of the argument block required. The variable
3754 and constant sizes must be combined, the size may have to be rounded,
3755 and there may be a minimum required size. When generating a sibcall
3756 pattern, do not round up, since we'll be re-using whatever space our
3757 caller provided. */
3758 unadjusted_args_size
3759 = compute_argument_block_size (reg_parm_stack_space,
3760 &adjusted_args_size,
3761 fndecl, fntype,
3762 (pass == 0 ? 0
3763 : preferred_stack_boundary));
3765 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
3767 /* The argument block when performing a sibling call is the
3768 incoming argument block. */
3769 if (pass == 0)
3771 argblock = crtl->args.internal_arg_pointer;
3772 if (STACK_GROWS_DOWNWARD)
3773 argblock
3774 = plus_constant (Pmode, argblock, crtl->args.pretend_args_size);
3775 else
3776 argblock
3777 = plus_constant (Pmode, argblock, -crtl->args.pretend_args_size);
3779 HOST_WIDE_INT map_size = constant_lower_bound (args_size.constant);
3780 stored_args_map = sbitmap_alloc (map_size);
3781 bitmap_clear (stored_args_map);
3782 stored_args_watermark = HOST_WIDE_INT_M1U;
3785 /* If we have no actual push instructions, or shouldn't use them,
3786 make space for all args right now. */
3787 else if (adjusted_args_size.var != 0)
3789 if (old_stack_level == 0)
3791 emit_stack_save (SAVE_BLOCK, &old_stack_level);
3792 old_stack_pointer_delta = stack_pointer_delta;
3793 old_pending_adj = pending_stack_adjust;
3794 pending_stack_adjust = 0;
3795 /* stack_arg_under_construction says whether a stack arg is
3796 being constructed at the old stack level. Pushing the stack
3797 gets a clean outgoing argument block. */
3798 old_stack_arg_under_construction = stack_arg_under_construction;
3799 stack_arg_under_construction = 0;
3801 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
3802 if (flag_stack_usage_info)
3803 current_function_has_unbounded_dynamic_stack_size = 1;
3805 else
3807 /* Note that we must go through the motions of allocating an argument
3808 block even if the size is zero because we may be storing args
3809 in the area reserved for register arguments, which may be part of
3810 the stack frame. */
3812 poly_int64 needed = adjusted_args_size.constant;
3814 /* Store the maximum argument space used. It will be pushed by
3815 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
3816 checking). */
3818 crtl->outgoing_args_size = upper_bound (crtl->outgoing_args_size,
3819 needed);
3821 if (must_preallocate)
3823 if (ACCUMULATE_OUTGOING_ARGS)
3825 /* Since the stack pointer will never be pushed, it is
3826 possible for the evaluation of a parm to clobber
3827 something we have already written to the stack.
3828 Since most function calls on RISC machines do not use
3829 the stack, this is uncommon, but must work correctly.
3831 Therefore, we save any area of the stack that was already
3832 written and that we are using. Here we set up to do this
3833 by making a new stack usage map from the old one. The
3834 actual save will be done by store_one_arg.
3836 Another approach might be to try to reorder the argument
3837 evaluations to avoid this conflicting stack usage. */
3839 /* Since we will be writing into the entire argument area,
3840 the map must be allocated for its entire size, not just
3841 the part that is the responsibility of the caller. */
3842 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
3843 needed += reg_parm_stack_space;
3845 poly_int64 limit = needed;
3846 if (ARGS_GROW_DOWNWARD)
3847 limit += 1;
3849 /* For polynomial sizes, this is the maximum possible
3850 size needed for arguments with a constant size
3851 and offset. */
3852 HOST_WIDE_INT const_limit = constant_lower_bound (limit);
3853 highest_outgoing_arg_in_use
3854 = MAX (initial_highest_arg_in_use, const_limit);
3856 free (stack_usage_map_buf);
3857 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
3858 stack_usage_map = stack_usage_map_buf;
3860 if (initial_highest_arg_in_use)
3861 memcpy (stack_usage_map, initial_stack_usage_map,
3862 initial_highest_arg_in_use);
3864 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3865 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
3866 (highest_outgoing_arg_in_use
3867 - initial_highest_arg_in_use));
3868 needed = 0;
3870 /* The address of the outgoing argument list must not be
3871 copied to a register here, because argblock would be left
3872 pointing to the wrong place after the call to
3873 allocate_dynamic_stack_space below. */
3875 argblock = virtual_outgoing_args_rtx;
3877 else
3879 /* Try to reuse some or all of the pending_stack_adjust
3880 to get this space. */
3881 if (inhibit_defer_pop == 0
3882 && (combine_pending_stack_adjustment_and_call
3883 (&needed,
3884 unadjusted_args_size,
3885 &adjusted_args_size,
3886 preferred_unit_stack_boundary)))
3888 /* combine_pending_stack_adjustment_and_call computes
3889 an adjustment before the arguments are allocated.
3890 Account for them and see whether or not the stack
3891 needs to go up or down. */
3892 needed = unadjusted_args_size - needed;
3894 /* Checked by
3895 combine_pending_stack_adjustment_and_call. */
3896 gcc_checking_assert (ordered_p (needed, 0));
3897 if (maybe_lt (needed, 0))
3899 /* We're releasing stack space. */
3900 /* ??? We can avoid any adjustment at all if we're
3901 already aligned. FIXME. */
3902 pending_stack_adjust = -needed;
3903 do_pending_stack_adjust ();
3904 needed = 0;
3906 else
3907 /* We need to allocate space. We'll do that in
3908 push_block below. */
3909 pending_stack_adjust = 0;
3912 /* Special case this because overhead of `push_block' in
3913 this case is non-trivial. */
3914 if (known_eq (needed, 0))
3915 argblock = virtual_outgoing_args_rtx;
3916 else
3918 rtx needed_rtx = gen_int_mode (needed, Pmode);
3919 argblock = push_block (needed_rtx, 0, 0);
3920 if (ARGS_GROW_DOWNWARD)
3921 argblock = plus_constant (Pmode, argblock, needed);
3924 /* We only really need to call `copy_to_reg' in the case
3925 where push insns are going to be used to pass ARGBLOCK
3926 to a function call in ARGS. In that case, the stack
3927 pointer changes value from the allocation point to the
3928 call point, and hence the value of
3929 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
3930 as well always do it. */
3931 argblock = copy_to_reg (argblock);
3936 if (ACCUMULATE_OUTGOING_ARGS)
3938 /* The save/restore code in store_one_arg handles all
3939 cases except one: a constructor call (including a C
3940 function returning a BLKmode struct) to initialize
3941 an argument. */
3942 if (stack_arg_under_construction)
3944 rtx push_size
3945 = (gen_int_mode
3946 (adjusted_args_size.constant
3947 + (OUTGOING_REG_PARM_STACK_SPACE (!fndecl ? fntype
3948 : TREE_TYPE (fndecl))
3949 ? 0 : reg_parm_stack_space), Pmode));
3950 if (old_stack_level == 0)
3952 emit_stack_save (SAVE_BLOCK, &old_stack_level);
3953 old_stack_pointer_delta = stack_pointer_delta;
3954 old_pending_adj = pending_stack_adjust;
3955 pending_stack_adjust = 0;
3956 /* stack_arg_under_construction says whether a stack
3957 arg is being constructed at the old stack level.
3958 Pushing the stack gets a clean outgoing argument
3959 block. */
3960 old_stack_arg_under_construction
3961 = stack_arg_under_construction;
3962 stack_arg_under_construction = 0;
3963 /* Make a new map for the new argument list. */
3964 free (stack_usage_map_buf);
3965 stack_usage_map_buf = XCNEWVEC (char, highest_outgoing_arg_in_use);
3966 stack_usage_map = stack_usage_map_buf;
3967 highest_outgoing_arg_in_use = 0;
3968 stack_usage_watermark = HOST_WIDE_INT_M1U;
3970 /* We can pass TRUE as the 4th argument because we just
3971 saved the stack pointer and will restore it right after
3972 the call. */
3973 allocate_dynamic_stack_space (push_size, 0, BIGGEST_ALIGNMENT,
3974 -1, true);
3977 /* If argument evaluation might modify the stack pointer,
3978 copy the address of the argument list to a register. */
3979 for (i = 0; i < num_actuals; i++)
3980 if (args[i].pass_on_stack)
3982 argblock = copy_addr_to_reg (argblock);
3983 break;
3987 compute_argument_addresses (args, argblock, num_actuals);
3989 /* Stack is properly aligned, pops can't safely be deferred during
3990 the evaluation of the arguments. */
3991 NO_DEFER_POP;
3993 /* Precompute all register parameters. It isn't safe to compute
3994 anything once we have started filling any specific hard regs.
3995 TLS symbols sometimes need a call to resolve. Precompute
3996 register parameters before any stack pointer manipulation
3997 to avoid unaligned stack in the called function. */
3998 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
4000 OK_DEFER_POP;
4002 /* Perform stack alignment before the first push (the last arg). */
4003 if (argblock == 0
4004 && maybe_gt (adjusted_args_size.constant, reg_parm_stack_space)
4005 && maybe_ne (adjusted_args_size.constant, unadjusted_args_size))
4007 /* When the stack adjustment is pending, we get better code
4008 by combining the adjustments. */
4009 if (maybe_ne (pending_stack_adjust, 0)
4010 && ! inhibit_defer_pop
4011 && (combine_pending_stack_adjustment_and_call
4012 (&pending_stack_adjust,
4013 unadjusted_args_size,
4014 &adjusted_args_size,
4015 preferred_unit_stack_boundary)))
4016 do_pending_stack_adjust ();
4017 else if (argblock == 0)
4018 anti_adjust_stack (gen_int_mode (adjusted_args_size.constant
4019 - unadjusted_args_size,
4020 Pmode));
4022 /* Now that the stack is properly aligned, pops can't safely
4023 be deferred during the evaluation of the arguments. */
4024 NO_DEFER_POP;
4026 /* Record the maximum pushed stack space size. We need to delay
4027 doing it this far to take into account the optimization done
4028 by combine_pending_stack_adjustment_and_call. */
4029 if (flag_stack_usage_info
4030 && !ACCUMULATE_OUTGOING_ARGS
4031 && pass
4032 && adjusted_args_size.var == 0)
4034 poly_int64 pushed = (adjusted_args_size.constant
4035 + pending_stack_adjust);
4036 current_function_pushed_stack_size
4037 = upper_bound (current_function_pushed_stack_size, pushed);
4040 funexp = rtx_for_function_call (fndecl, addr);
4042 if (CALL_EXPR_STATIC_CHAIN (exp))
4043 static_chain_value = expand_normal (CALL_EXPR_STATIC_CHAIN (exp));
4044 else
4045 static_chain_value = 0;
4047 #ifdef REG_PARM_STACK_SPACE
4048 /* Save the fixed argument area if it's part of the caller's frame and
4049 is clobbered by argument setup for this call. */
4050 if (ACCUMULATE_OUTGOING_ARGS && pass)
4051 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
4052 &low_to_save, &high_to_save);
4053 #endif
4055 /* Now store (and compute if necessary) all non-register parms.
4056 These come before register parms, since they can require block-moves,
4057 which could clobber the registers used for register parms.
4058 Parms which have partial registers are not stored here,
4059 but we do preallocate space here if they want that. */
4061 for (i = 0; i < num_actuals; i++)
4063 if (args[i].reg == 0 || args[i].pass_on_stack)
4065 rtx_insn *before_arg = get_last_insn ();
4067 /* We don't allow passing huge (> 2^30 B) arguments
4068 by value. It would cause an overflow later on. */
4069 if (constant_lower_bound (adjusted_args_size.constant)
4070 >= (1 << (HOST_BITS_PER_INT - 2)))
4072 sorry ("passing too large argument on stack");
4073 continue;
4076 if (store_one_arg (&args[i], argblock, flags,
4077 adjusted_args_size.var != 0,
4078 reg_parm_stack_space)
4079 || (pass == 0
4080 && check_sibcall_argument_overlap (before_arg,
4081 &args[i], 1)))
4082 sibcall_failure = 1;
4085 if (args[i].stack)
4086 call_fusage
4087 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
4088 gen_rtx_USE (VOIDmode, args[i].stack),
4089 call_fusage);
4092 /* If we have a parm that is passed in registers but not in memory
4093 and whose alignment does not permit a direct copy into registers,
4094 make a group of pseudos that correspond to each register that we
4095 will later fill. */
4096 if (STRICT_ALIGNMENT)
4097 store_unaligned_arguments_into_pseudos (args, num_actuals);
4099 /* Now store any partially-in-registers parm.
4100 This is the last place a block-move can happen. */
4101 if (reg_parm_seen)
4102 for (i = 0; i < num_actuals; i++)
4103 if (args[i].partial != 0 && ! args[i].pass_on_stack)
4105 rtx_insn *before_arg = get_last_insn ();
4107 /* On targets with weird calling conventions (e.g. PA) it's
4108 hard to ensure that all cases of argument overlap between
4109 stack and registers work. Play it safe and bail out. */
4110 if (ARGS_GROW_DOWNWARD && !STACK_GROWS_DOWNWARD)
4112 sibcall_failure = 1;
4113 break;
4116 if (store_one_arg (&args[i], argblock, flags,
4117 adjusted_args_size.var != 0,
4118 reg_parm_stack_space)
4119 || (pass == 0
4120 && check_sibcall_argument_overlap (before_arg,
4121 &args[i], 1)))
4122 sibcall_failure = 1;
4125 bool any_regs = false;
4126 for (i = 0; i < num_actuals; i++)
4127 if (args[i].reg != NULL_RTX)
4129 any_regs = true;
4130 targetm.calls.call_args (args[i].reg, funtype);
4132 if (!any_regs)
4133 targetm.calls.call_args (pc_rtx, funtype);
4135 /* Figure out the register where the value, if any, will come back. */
4136 valreg = 0;
4137 if (TYPE_MODE (rettype) != VOIDmode
4138 && ! structure_value_addr)
4140 if (pcc_struct_value)
4141 valreg = hard_function_value (build_pointer_type (rettype),
4142 fndecl, NULL, (pass == 0));
4143 else
4144 valreg = hard_function_value (rettype, fndecl, fntype,
4145 (pass == 0));
4147 /* If VALREG is a PARALLEL whose first member has a zero
4148 offset, use that. This is for targets such as m68k that
4149 return the same value in multiple places. */
4150 if (GET_CODE (valreg) == PARALLEL)
4152 rtx elem = XVECEXP (valreg, 0, 0);
4153 rtx where = XEXP (elem, 0);
4154 rtx offset = XEXP (elem, 1);
4155 if (offset == const0_rtx
4156 && GET_MODE (where) == GET_MODE (valreg))
4157 valreg = where;
4161 /* If register arguments require space on the stack and stack space
4162 was not preallocated, allocate stack space here for arguments
4163 passed in registers. */
4164 if (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
4165 && !ACCUMULATE_OUTGOING_ARGS
4166 && must_preallocate == 0 && reg_parm_stack_space > 0)
4167 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
4169 /* Pass the function the address in which to return a
4170 structure value. */
4171 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
4173 structure_value_addr
4174 = convert_memory_address (Pmode, structure_value_addr);
4175 emit_move_insn (struct_value,
4176 force_reg (Pmode,
4177 force_operand (structure_value_addr,
4178 NULL_RTX)));
4180 if (REG_P (struct_value))
4181 use_reg (&call_fusage, struct_value);
4184 after_args = get_last_insn ();
4185 funexp = prepare_call_address (fndecl ? fndecl : fntype, funexp,
4186 static_chain_value, &call_fusage,
4187 reg_parm_seen, flags);
4189 load_register_parameters (args, num_actuals, &call_fusage, flags,
4190 pass == 0, &sibcall_failure);
4192 /* Save a pointer to the last insn before the call, so that we can
4193 later safely search backwards to find the CALL_INSN. */
4194 before_call = get_last_insn ();
4196 /* Set up next argument register. For sibling calls on machines
4197 with register windows this should be the incoming register. */
4198 if (pass == 0)
4199 next_arg_reg = targetm.calls.function_incoming_arg (args_so_far,
4200 VOIDmode,
4201 void_type_node,
4202 true);
4203 else
4204 next_arg_reg = targetm.calls.function_arg (args_so_far,
4205 VOIDmode, void_type_node,
4206 true);
4208 if (pass == 1 && (return_flags & ERF_RETURNS_ARG))
4210 int arg_nr = return_flags & ERF_RETURN_ARG_MASK;
4211 arg_nr = num_actuals - arg_nr - 1;
4212 if (arg_nr >= 0
4213 && arg_nr < num_actuals
4214 && args[arg_nr].reg
4215 && valreg
4216 && REG_P (valreg)
4217 && GET_MODE (args[arg_nr].reg) == GET_MODE (valreg))
4218 call_fusage
4219 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[arg_nr].tree_value)),
4220 gen_rtx_SET (valreg, args[arg_nr].reg),
4221 call_fusage);
4223 /* All arguments and registers used for the call must be set up by
4224 now! */
4226 /* Stack must be properly aligned now. */
4227 gcc_assert (!pass
4228 || multiple_p (stack_pointer_delta,
4229 preferred_unit_stack_boundary));
4231 /* Generate the actual call instruction. */
4232 emit_call_1 (funexp, exp, fndecl, funtype, unadjusted_args_size,
4233 adjusted_args_size.constant, struct_value_size,
4234 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
4235 flags, args_so_far);
4237 if (flag_ipa_ra)
4239 rtx_call_insn *last;
4240 rtx datum = NULL_RTX;
4241 if (fndecl != NULL_TREE)
4243 datum = XEXP (DECL_RTL (fndecl), 0);
4244 gcc_assert (datum != NULL_RTX
4245 && GET_CODE (datum) == SYMBOL_REF);
4247 last = last_call_insn ();
4248 add_reg_note (last, REG_CALL_DECL, datum);
4251 /* If the call setup or the call itself overlaps with anything
4252 of the argument setup we probably clobbered our call address.
4253 In that case we can't do sibcalls. */
4254 if (pass == 0
4255 && check_sibcall_argument_overlap (after_args, 0, 0))
4256 sibcall_failure = 1;
4258 /* If a non-BLKmode value is returned at the most significant end
4259 of a register, shift the register right by the appropriate amount
4260 and update VALREG accordingly. BLKmode values are handled by the
4261 group load/store machinery below. */
4262 if (!structure_value_addr
4263 && !pcc_struct_value
4264 && TYPE_MODE (rettype) != VOIDmode
4265 && TYPE_MODE (rettype) != BLKmode
4266 && REG_P (valreg)
4267 && targetm.calls.return_in_msb (rettype))
4269 if (shift_return_value (TYPE_MODE (rettype), false, valreg))
4270 sibcall_failure = 1;
4271 valreg = gen_rtx_REG (TYPE_MODE (rettype), REGNO (valreg));
4274 if (pass && (flags & ECF_MALLOC))
4276 rtx temp = gen_reg_rtx (GET_MODE (valreg));
4277 rtx_insn *last, *insns;
4279 /* The return value from a malloc-like function is a pointer. */
4280 if (TREE_CODE (rettype) == POINTER_TYPE)
4281 mark_reg_pointer (temp, MALLOC_ABI_ALIGNMENT);
4283 emit_move_insn (temp, valreg);
4285 /* The return value from a malloc-like function can not alias
4286 anything else. */
4287 last = get_last_insn ();
4288 add_reg_note (last, REG_NOALIAS, temp);
4290 /* Write out the sequence. */
4291 insns = get_insns ();
4292 end_sequence ();
4293 emit_insn (insns);
4294 valreg = temp;
4297 /* For calls to `setjmp', etc., inform
4298 function.c:setjmp_warnings that it should complain if
4299 nonvolatile values are live. For functions that cannot
4300 return, inform flow that control does not fall through. */
4302 if ((flags & ECF_NORETURN) || pass == 0)
4304 /* The barrier must be emitted
4305 immediately after the CALL_INSN. Some ports emit more
4306 than just a CALL_INSN above, so we must search for it here. */
4308 rtx_insn *last = get_last_insn ();
4309 while (!CALL_P (last))
4311 last = PREV_INSN (last);
4312 /* There was no CALL_INSN? */
4313 gcc_assert (last != before_call);
4316 emit_barrier_after (last);
4318 /* Stack adjustments after a noreturn call are dead code.
4319 However when NO_DEFER_POP is in effect, we must preserve
4320 stack_pointer_delta. */
4321 if (inhibit_defer_pop == 0)
4323 stack_pointer_delta = old_stack_allocated;
4324 pending_stack_adjust = 0;
4328 /* If value type not void, return an rtx for the value. */
4330 if (TYPE_MODE (rettype) == VOIDmode
4331 || ignore)
4332 target = const0_rtx;
4333 else if (structure_value_addr)
4335 if (target == 0 || !MEM_P (target))
4337 target
4338 = gen_rtx_MEM (TYPE_MODE (rettype),
4339 memory_address (TYPE_MODE (rettype),
4340 structure_value_addr));
4341 set_mem_attributes (target, rettype, 1);
4344 else if (pcc_struct_value)
4346 /* This is the special C++ case where we need to
4347 know what the true target was. We take care to
4348 never use this value more than once in one expression. */
4349 target = gen_rtx_MEM (TYPE_MODE (rettype),
4350 copy_to_reg (valreg));
4351 set_mem_attributes (target, rettype, 1);
4353 /* Handle calls that return values in multiple non-contiguous locations.
4354 The Irix 6 ABI has examples of this. */
4355 else if (GET_CODE (valreg) == PARALLEL)
4357 if (target == 0)
4358 target = emit_group_move_into_temps (valreg);
4359 else if (rtx_equal_p (target, valreg))
4361 else if (GET_CODE (target) == PARALLEL)
4362 /* Handle the result of a emit_group_move_into_temps
4363 call in the previous pass. */
4364 emit_group_move (target, valreg);
4365 else
4366 emit_group_store (target, valreg, rettype,
4367 int_size_in_bytes (rettype));
4369 else if (target
4370 && GET_MODE (target) == TYPE_MODE (rettype)
4371 && GET_MODE (target) == GET_MODE (valreg))
4373 bool may_overlap = false;
4375 /* We have to copy a return value in a CLASS_LIKELY_SPILLED hard
4376 reg to a plain register. */
4377 if (!REG_P (target) || HARD_REGISTER_P (target))
4378 valreg = avoid_likely_spilled_reg (valreg);
4380 /* If TARGET is a MEM in the argument area, and we have
4381 saved part of the argument area, then we can't store
4382 directly into TARGET as it may get overwritten when we
4383 restore the argument save area below. Don't work too
4384 hard though and simply force TARGET to a register if it
4385 is a MEM; the optimizer is quite likely to sort it out. */
4386 if (ACCUMULATE_OUTGOING_ARGS && pass && MEM_P (target))
4387 for (i = 0; i < num_actuals; i++)
4388 if (args[i].save_area)
4390 may_overlap = true;
4391 break;
4394 if (may_overlap)
4395 target = copy_to_reg (valreg);
4396 else
4398 /* TARGET and VALREG cannot be equal at this point
4399 because the latter would not have
4400 REG_FUNCTION_VALUE_P true, while the former would if
4401 it were referring to the same register.
4403 If they refer to the same register, this move will be
4404 a no-op, except when function inlining is being
4405 done. */
4406 emit_move_insn (target, valreg);
4408 /* If we are setting a MEM, this code must be executed.
4409 Since it is emitted after the call insn, sibcall
4410 optimization cannot be performed in that case. */
4411 if (MEM_P (target))
4412 sibcall_failure = 1;
4415 else
4416 target = copy_to_reg (avoid_likely_spilled_reg (valreg));
4418 /* If we promoted this return value, make the proper SUBREG.
4419 TARGET might be const0_rtx here, so be careful. */
4420 if (REG_P (target)
4421 && TYPE_MODE (rettype) != BLKmode
4422 && GET_MODE (target) != TYPE_MODE (rettype))
4424 tree type = rettype;
4425 int unsignedp = TYPE_UNSIGNED (type);
4426 machine_mode pmode;
4428 /* Ensure we promote as expected, and get the new unsignedness. */
4429 pmode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
4430 funtype, 1);
4431 gcc_assert (GET_MODE (target) == pmode);
4433 poly_uint64 offset = subreg_lowpart_offset (TYPE_MODE (type),
4434 GET_MODE (target));
4435 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
4436 SUBREG_PROMOTED_VAR_P (target) = 1;
4437 SUBREG_PROMOTED_SET (target, unsignedp);
4440 /* If size of args is variable or this was a constructor call for a stack
4441 argument, restore saved stack-pointer value. */
4443 if (old_stack_level)
4445 rtx_insn *prev = get_last_insn ();
4447 emit_stack_restore (SAVE_BLOCK, old_stack_level);
4448 stack_pointer_delta = old_stack_pointer_delta;
4450 fixup_args_size_notes (prev, get_last_insn (), stack_pointer_delta);
4452 pending_stack_adjust = old_pending_adj;
4453 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
4454 stack_arg_under_construction = old_stack_arg_under_construction;
4455 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4456 stack_usage_map = initial_stack_usage_map;
4457 stack_usage_watermark = initial_stack_usage_watermark;
4458 sibcall_failure = 1;
4460 else if (ACCUMULATE_OUTGOING_ARGS && pass)
4462 #ifdef REG_PARM_STACK_SPACE
4463 if (save_area)
4464 restore_fixed_argument_area (save_area, argblock,
4465 high_to_save, low_to_save);
4466 #endif
4468 /* If we saved any argument areas, restore them. */
4469 for (i = 0; i < num_actuals; i++)
4470 if (args[i].save_area)
4472 machine_mode save_mode = GET_MODE (args[i].save_area);
4473 rtx stack_area
4474 = gen_rtx_MEM (save_mode,
4475 memory_address (save_mode,
4476 XEXP (args[i].stack_slot, 0)));
4478 if (save_mode != BLKmode)
4479 emit_move_insn (stack_area, args[i].save_area);
4480 else
4481 emit_block_move (stack_area, args[i].save_area,
4482 (gen_int_mode
4483 (args[i].locate.size.constant, Pmode)),
4484 BLOCK_OP_CALL_PARM);
4487 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4488 stack_usage_map = initial_stack_usage_map;
4489 stack_usage_watermark = initial_stack_usage_watermark;
4492 /* If this was alloca, record the new stack level. */
4493 if (flags & ECF_MAY_BE_ALLOCA)
4494 record_new_stack_level ();
4496 /* Free up storage we no longer need. */
4497 for (i = 0; i < num_actuals; ++i)
4498 free (args[i].aligned_regs);
4500 targetm.calls.end_call_args ();
4502 insns = get_insns ();
4503 end_sequence ();
4505 if (pass == 0)
4507 tail_call_insns = insns;
4509 /* Restore the pending stack adjustment now that we have
4510 finished generating the sibling call sequence. */
4512 restore_pending_stack_adjust (&save);
4514 /* Prepare arg structure for next iteration. */
4515 for (i = 0; i < num_actuals; i++)
4517 args[i].value = 0;
4518 args[i].aligned_regs = 0;
4519 args[i].stack = 0;
4522 sbitmap_free (stored_args_map);
4523 internal_arg_pointer_exp_state.scan_start = NULL;
4524 internal_arg_pointer_exp_state.cache.release ();
4526 else
4528 normal_call_insns = insns;
4530 /* Verify that we've deallocated all the stack we used. */
4531 gcc_assert ((flags & ECF_NORETURN)
4532 || known_eq (old_stack_allocated,
4533 stack_pointer_delta
4534 - pending_stack_adjust));
4537 /* If something prevents making this a sibling call,
4538 zero out the sequence. */
4539 if (sibcall_failure)
4540 tail_call_insns = NULL;
4541 else
4542 break;
4545 /* If tail call production succeeded, we need to remove REG_EQUIV notes on
4546 arguments too, as argument area is now clobbered by the call. */
4547 if (tail_call_insns)
4549 emit_insn (tail_call_insns);
4550 crtl->tail_call_emit = true;
4552 else
4554 emit_insn (normal_call_insns);
4555 if (try_tail_call)
4556 /* Ideally we'd emit a message for all of the ways that it could
4557 have failed. */
4558 maybe_complain_about_tail_call (exp, "tail call production failed");
4561 currently_expanding_call--;
4563 free (stack_usage_map_buf);
4564 free (args);
4565 return target;
4568 /* A sibling call sequence invalidates any REG_EQUIV notes made for
4569 this function's incoming arguments.
4571 At the start of RTL generation we know the only REG_EQUIV notes
4572 in the rtl chain are those for incoming arguments, so we can look
4573 for REG_EQUIV notes between the start of the function and the
4574 NOTE_INSN_FUNCTION_BEG.
4576 This is (slight) overkill. We could keep track of the highest
4577 argument we clobber and be more selective in removing notes, but it
4578 does not seem to be worth the effort. */
4580 void
4581 fixup_tail_calls (void)
4583 rtx_insn *insn;
4585 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4587 rtx note;
4589 /* There are never REG_EQUIV notes for the incoming arguments
4590 after the NOTE_INSN_FUNCTION_BEG note, so stop if we see it. */
4591 if (NOTE_P (insn)
4592 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
4593 break;
4595 note = find_reg_note (insn, REG_EQUIV, 0);
4596 if (note)
4597 remove_note (insn, note);
4598 note = find_reg_note (insn, REG_EQUIV, 0);
4599 gcc_assert (!note);
4603 /* Traverse a list of TYPES and expand all complex types into their
4604 components. */
4605 static tree
4606 split_complex_types (tree types)
4608 tree p;
4610 /* Before allocating memory, check for the common case of no complex. */
4611 for (p = types; p; p = TREE_CHAIN (p))
4613 tree type = TREE_VALUE (p);
4614 if (TREE_CODE (type) == COMPLEX_TYPE
4615 && targetm.calls.split_complex_arg (type))
4616 goto found;
4618 return types;
4620 found:
4621 types = copy_list (types);
4623 for (p = types; p; p = TREE_CHAIN (p))
4625 tree complex_type = TREE_VALUE (p);
4627 if (TREE_CODE (complex_type) == COMPLEX_TYPE
4628 && targetm.calls.split_complex_arg (complex_type))
4630 tree next, imag;
4632 /* Rewrite complex type with component type. */
4633 TREE_VALUE (p) = TREE_TYPE (complex_type);
4634 next = TREE_CHAIN (p);
4636 /* Add another component type for the imaginary part. */
4637 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
4638 TREE_CHAIN (p) = imag;
4639 TREE_CHAIN (imag) = next;
4641 /* Skip the newly created node. */
4642 p = TREE_CHAIN (p);
4646 return types;
4649 /* Output a library call to function ORGFUN (a SYMBOL_REF rtx)
4650 for a value of mode OUTMODE,
4651 with NARGS different arguments, passed as ARGS.
4652 Store the return value if RETVAL is nonzero: store it in VALUE if
4653 VALUE is nonnull, otherwise pick a convenient location. In either
4654 case return the location of the stored value.
4656 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for
4657 `const' calls, LCT_PURE for `pure' calls, or another LCT_ value for
4658 other types of library calls. */
4661 emit_library_call_value_1 (int retval, rtx orgfun, rtx value,
4662 enum libcall_type fn_type,
4663 machine_mode outmode, int nargs, rtx_mode_t *args)
4665 /* Total size in bytes of all the stack-parms scanned so far. */
4666 struct args_size args_size;
4667 /* Size of arguments before any adjustments (such as rounding). */
4668 struct args_size original_args_size;
4669 int argnum;
4670 rtx fun;
4671 /* Todo, choose the correct decl type of orgfun. Sadly this information
4672 isn't present here, so we default to native calling abi here. */
4673 tree fndecl ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
4674 tree fntype ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
4675 int count;
4676 rtx argblock = 0;
4677 CUMULATIVE_ARGS args_so_far_v;
4678 cumulative_args_t args_so_far;
4679 struct arg
4681 rtx value;
4682 machine_mode mode;
4683 rtx reg;
4684 int partial;
4685 struct locate_and_pad_arg_data locate;
4686 rtx save_area;
4688 struct arg *argvec;
4689 int old_inhibit_defer_pop = inhibit_defer_pop;
4690 rtx call_fusage = 0;
4691 rtx mem_value = 0;
4692 rtx valreg;
4693 int pcc_struct_value = 0;
4694 poly_int64 struct_value_size = 0;
4695 int flags;
4696 int reg_parm_stack_space = 0;
4697 poly_int64 needed;
4698 rtx_insn *before_call;
4699 bool have_push_fusage;
4700 tree tfom; /* type_for_mode (outmode, 0) */
4702 #ifdef REG_PARM_STACK_SPACE
4703 /* Define the boundary of the register parm stack space that needs to be
4704 save, if any. */
4705 int low_to_save = 0, high_to_save = 0;
4706 rtx save_area = 0; /* Place that it is saved. */
4707 #endif
4709 /* Size of the stack reserved for parameter registers. */
4710 unsigned int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
4711 char *initial_stack_usage_map = stack_usage_map;
4712 unsigned HOST_WIDE_INT initial_stack_usage_watermark = stack_usage_watermark;
4713 char *stack_usage_map_buf = NULL;
4715 rtx struct_value = targetm.calls.struct_value_rtx (0, 0);
4717 #ifdef REG_PARM_STACK_SPACE
4718 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
4719 #endif
4721 /* By default, library functions cannot throw. */
4722 flags = ECF_NOTHROW;
4724 switch (fn_type)
4726 case LCT_NORMAL:
4727 break;
4728 case LCT_CONST:
4729 flags |= ECF_CONST;
4730 break;
4731 case LCT_PURE:
4732 flags |= ECF_PURE;
4733 break;
4734 case LCT_NORETURN:
4735 flags |= ECF_NORETURN;
4736 break;
4737 case LCT_THROW:
4738 flags &= ~ECF_NOTHROW;
4739 break;
4740 case LCT_RETURNS_TWICE:
4741 flags = ECF_RETURNS_TWICE;
4742 break;
4744 fun = orgfun;
4746 /* Ensure current function's preferred stack boundary is at least
4747 what we need. */
4748 if (crtl->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
4749 crtl->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
4751 /* If this kind of value comes back in memory,
4752 decide where in memory it should come back. */
4753 if (outmode != VOIDmode)
4755 tfom = lang_hooks.types.type_for_mode (outmode, 0);
4756 if (aggregate_value_p (tfom, 0))
4758 #ifdef PCC_STATIC_STRUCT_RETURN
4759 rtx pointer_reg
4760 = hard_function_value (build_pointer_type (tfom), 0, 0, 0);
4761 mem_value = gen_rtx_MEM (outmode, pointer_reg);
4762 pcc_struct_value = 1;
4763 if (value == 0)
4764 value = gen_reg_rtx (outmode);
4765 #else /* not PCC_STATIC_STRUCT_RETURN */
4766 struct_value_size = GET_MODE_SIZE (outmode);
4767 if (value != 0 && MEM_P (value))
4768 mem_value = value;
4769 else
4770 mem_value = assign_temp (tfom, 1, 1);
4771 #endif
4772 /* This call returns a big structure. */
4773 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
4776 else
4777 tfom = void_type_node;
4779 /* ??? Unfinished: must pass the memory address as an argument. */
4781 /* Copy all the libcall-arguments out of the varargs data
4782 and into a vector ARGVEC.
4784 Compute how to pass each argument. We only support a very small subset
4785 of the full argument passing conventions to limit complexity here since
4786 library functions shouldn't have many args. */
4788 argvec = XALLOCAVEC (struct arg, nargs + 1);
4789 memset (argvec, 0, (nargs + 1) * sizeof (struct arg));
4791 #ifdef INIT_CUMULATIVE_LIBCALL_ARGS
4792 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far_v, outmode, fun);
4793 #else
4794 INIT_CUMULATIVE_ARGS (args_so_far_v, NULL_TREE, fun, 0, nargs);
4795 #endif
4796 args_so_far = pack_cumulative_args (&args_so_far_v);
4798 args_size.constant = 0;
4799 args_size.var = 0;
4801 count = 0;
4803 push_temp_slots ();
4805 /* If there's a structure value address to be passed,
4806 either pass it in the special place, or pass it as an extra argument. */
4807 if (mem_value && struct_value == 0 && ! pcc_struct_value)
4809 rtx addr = XEXP (mem_value, 0);
4811 nargs++;
4813 /* Make sure it is a reasonable operand for a move or push insn. */
4814 if (!REG_P (addr) && !MEM_P (addr)
4815 && !(CONSTANT_P (addr)
4816 && targetm.legitimate_constant_p (Pmode, addr)))
4817 addr = force_operand (addr, NULL_RTX);
4819 argvec[count].value = addr;
4820 argvec[count].mode = Pmode;
4821 argvec[count].partial = 0;
4823 argvec[count].reg = targetm.calls.function_arg (args_so_far,
4824 Pmode, NULL_TREE, true);
4825 gcc_assert (targetm.calls.arg_partial_bytes (args_so_far, Pmode,
4826 NULL_TREE, 1) == 0);
4828 locate_and_pad_parm (Pmode, NULL_TREE,
4829 #ifdef STACK_PARMS_IN_REG_PARM_AREA
4831 #else
4832 argvec[count].reg != 0,
4833 #endif
4834 reg_parm_stack_space, 0,
4835 NULL_TREE, &args_size, &argvec[count].locate);
4837 if (argvec[count].reg == 0 || argvec[count].partial != 0
4838 || reg_parm_stack_space > 0)
4839 args_size.constant += argvec[count].locate.size.constant;
4841 targetm.calls.function_arg_advance (args_so_far, Pmode, (tree) 0, true);
4843 count++;
4846 for (unsigned int i = 0; count < nargs; i++, count++)
4848 rtx val = args[i].first;
4849 machine_mode mode = args[i].second;
4850 int unsigned_p = 0;
4852 /* We cannot convert the arg value to the mode the library wants here;
4853 must do it earlier where we know the signedness of the arg. */
4854 gcc_assert (mode != BLKmode
4855 && (GET_MODE (val) == mode || GET_MODE (val) == VOIDmode));
4857 /* Make sure it is a reasonable operand for a move or push insn. */
4858 if (!REG_P (val) && !MEM_P (val)
4859 && !(CONSTANT_P (val) && targetm.legitimate_constant_p (mode, val)))
4860 val = force_operand (val, NULL_RTX);
4862 if (pass_by_reference (&args_so_far_v, mode, NULL_TREE, 1))
4864 rtx slot;
4865 int must_copy
4866 = !reference_callee_copied (&args_so_far_v, mode, NULL_TREE, 1);
4868 /* If this was a CONST function, it is now PURE since it now
4869 reads memory. */
4870 if (flags & ECF_CONST)
4872 flags &= ~ECF_CONST;
4873 flags |= ECF_PURE;
4876 if (MEM_P (val) && !must_copy)
4878 tree val_expr = MEM_EXPR (val);
4879 if (val_expr)
4880 mark_addressable (val_expr);
4881 slot = val;
4883 else
4885 slot = assign_temp (lang_hooks.types.type_for_mode (mode, 0),
4886 1, 1);
4887 emit_move_insn (slot, val);
4890 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
4891 gen_rtx_USE (VOIDmode, slot),
4892 call_fusage);
4893 if (must_copy)
4894 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
4895 gen_rtx_CLOBBER (VOIDmode,
4896 slot),
4897 call_fusage);
4899 mode = Pmode;
4900 val = force_operand (XEXP (slot, 0), NULL_RTX);
4903 mode = promote_function_mode (NULL_TREE, mode, &unsigned_p, NULL_TREE, 0);
4904 argvec[count].mode = mode;
4905 argvec[count].value = convert_modes (mode, GET_MODE (val), val, unsigned_p);
4906 argvec[count].reg = targetm.calls.function_arg (args_so_far, mode,
4907 NULL_TREE, true);
4909 argvec[count].partial
4910 = targetm.calls.arg_partial_bytes (args_so_far, mode, NULL_TREE, 1);
4912 if (argvec[count].reg == 0
4913 || argvec[count].partial != 0
4914 || reg_parm_stack_space > 0)
4916 locate_and_pad_parm (mode, NULL_TREE,
4917 #ifdef STACK_PARMS_IN_REG_PARM_AREA
4919 #else
4920 argvec[count].reg != 0,
4921 #endif
4922 reg_parm_stack_space, argvec[count].partial,
4923 NULL_TREE, &args_size, &argvec[count].locate);
4924 args_size.constant += argvec[count].locate.size.constant;
4925 gcc_assert (!argvec[count].locate.size.var);
4927 #ifdef BLOCK_REG_PADDING
4928 else
4929 /* The argument is passed entirely in registers. See at which
4930 end it should be padded. */
4931 argvec[count].locate.where_pad =
4932 BLOCK_REG_PADDING (mode, NULL_TREE,
4933 known_le (GET_MODE_SIZE (mode), UNITS_PER_WORD));
4934 #endif
4936 targetm.calls.function_arg_advance (args_so_far, mode, (tree) 0, true);
4939 /* If this machine requires an external definition for library
4940 functions, write one out. */
4941 assemble_external_libcall (fun);
4943 original_args_size = args_size;
4944 args_size.constant = (aligned_upper_bound (args_size.constant
4945 + stack_pointer_delta,
4946 STACK_BYTES)
4947 - stack_pointer_delta);
4949 args_size.constant = upper_bound (args_size.constant,
4950 reg_parm_stack_space);
4952 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
4953 args_size.constant -= reg_parm_stack_space;
4955 crtl->outgoing_args_size = upper_bound (crtl->outgoing_args_size,
4956 args_size.constant);
4958 if (flag_stack_usage_info && !ACCUMULATE_OUTGOING_ARGS)
4960 poly_int64 pushed = args_size.constant + pending_stack_adjust;
4961 current_function_pushed_stack_size
4962 = upper_bound (current_function_pushed_stack_size, pushed);
4965 if (ACCUMULATE_OUTGOING_ARGS)
4967 /* Since the stack pointer will never be pushed, it is possible for
4968 the evaluation of a parm to clobber something we have already
4969 written to the stack. Since most function calls on RISC machines
4970 do not use the stack, this is uncommon, but must work correctly.
4972 Therefore, we save any area of the stack that was already written
4973 and that we are using. Here we set up to do this by making a new
4974 stack usage map from the old one.
4976 Another approach might be to try to reorder the argument
4977 evaluations to avoid this conflicting stack usage. */
4979 needed = args_size.constant;
4981 /* Since we will be writing into the entire argument area, the
4982 map must be allocated for its entire size, not just the part that
4983 is the responsibility of the caller. */
4984 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
4985 needed += reg_parm_stack_space;
4987 poly_int64 limit = needed;
4988 if (ARGS_GROW_DOWNWARD)
4989 limit += 1;
4991 /* For polynomial sizes, this is the maximum possible size needed
4992 for arguments with a constant size and offset. */
4993 HOST_WIDE_INT const_limit = constant_lower_bound (limit);
4994 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
4995 const_limit);
4997 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
4998 stack_usage_map = stack_usage_map_buf;
5000 if (initial_highest_arg_in_use)
5001 memcpy (stack_usage_map, initial_stack_usage_map,
5002 initial_highest_arg_in_use);
5004 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
5005 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
5006 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
5007 needed = 0;
5009 /* We must be careful to use virtual regs before they're instantiated,
5010 and real regs afterwards. Loop optimization, for example, can create
5011 new libcalls after we've instantiated the virtual regs, and if we
5012 use virtuals anyway, they won't match the rtl patterns. */
5014 if (virtuals_instantiated)
5015 argblock = plus_constant (Pmode, stack_pointer_rtx,
5016 STACK_POINTER_OFFSET);
5017 else
5018 argblock = virtual_outgoing_args_rtx;
5020 else
5022 if (!PUSH_ARGS)
5023 argblock = push_block (gen_int_mode (args_size.constant, Pmode), 0, 0);
5026 /* We push args individually in reverse order, perform stack alignment
5027 before the first push (the last arg). */
5028 if (argblock == 0)
5029 anti_adjust_stack (gen_int_mode (args_size.constant
5030 - original_args_size.constant,
5031 Pmode));
5033 argnum = nargs - 1;
5035 #ifdef REG_PARM_STACK_SPACE
5036 if (ACCUMULATE_OUTGOING_ARGS)
5038 /* The argument list is the property of the called routine and it
5039 may clobber it. If the fixed area has been used for previous
5040 parameters, we must save and restore it. */
5041 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
5042 &low_to_save, &high_to_save);
5044 #endif
5046 /* When expanding a normal call, args are stored in push order,
5047 which is the reverse of what we have here. */
5048 bool any_regs = false;
5049 for (int i = nargs; i-- > 0; )
5050 if (argvec[i].reg != NULL_RTX)
5052 targetm.calls.call_args (argvec[i].reg, NULL_TREE);
5053 any_regs = true;
5055 if (!any_regs)
5056 targetm.calls.call_args (pc_rtx, NULL_TREE);
5058 /* Push the args that need to be pushed. */
5060 have_push_fusage = false;
5062 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
5063 are to be pushed. */
5064 for (count = 0; count < nargs; count++, argnum--)
5066 machine_mode mode = argvec[argnum].mode;
5067 rtx val = argvec[argnum].value;
5068 rtx reg = argvec[argnum].reg;
5069 int partial = argvec[argnum].partial;
5070 unsigned int parm_align = argvec[argnum].locate.boundary;
5071 poly_int64 lower_bound = 0, upper_bound = 0;
5073 if (! (reg != 0 && partial == 0))
5075 rtx use;
5077 if (ACCUMULATE_OUTGOING_ARGS)
5079 /* If this is being stored into a pre-allocated, fixed-size,
5080 stack area, save any previous data at that location. */
5082 if (ARGS_GROW_DOWNWARD)
5084 /* stack_slot is negative, but we want to index stack_usage_map
5085 with positive values. */
5086 upper_bound = -argvec[argnum].locate.slot_offset.constant + 1;
5087 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
5089 else
5091 lower_bound = argvec[argnum].locate.slot_offset.constant;
5092 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
5095 if (stack_region_maybe_used_p (lower_bound, upper_bound,
5096 reg_parm_stack_space))
5098 /* We need to make a save area. */
5099 poly_uint64 size
5100 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
5101 machine_mode save_mode
5102 = int_mode_for_size (size, 1).else_blk ();
5103 rtx adr
5104 = plus_constant (Pmode, argblock,
5105 argvec[argnum].locate.offset.constant);
5106 rtx stack_area
5107 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
5109 if (save_mode == BLKmode)
5111 argvec[argnum].save_area
5112 = assign_stack_temp (BLKmode,
5113 argvec[argnum].locate.size.constant
5116 emit_block_move (validize_mem
5117 (copy_rtx (argvec[argnum].save_area)),
5118 stack_area,
5119 (gen_int_mode
5120 (argvec[argnum].locate.size.constant,
5121 Pmode)),
5122 BLOCK_OP_CALL_PARM);
5124 else
5126 argvec[argnum].save_area = gen_reg_rtx (save_mode);
5128 emit_move_insn (argvec[argnum].save_area, stack_area);
5133 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, parm_align,
5134 partial, reg, 0, argblock,
5135 (gen_int_mode
5136 (argvec[argnum].locate.offset.constant, Pmode)),
5137 reg_parm_stack_space,
5138 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad), false);
5140 /* Now mark the segment we just used. */
5141 if (ACCUMULATE_OUTGOING_ARGS)
5142 mark_stack_region_used (lower_bound, upper_bound);
5144 NO_DEFER_POP;
5146 /* Indicate argument access so that alias.c knows that these
5147 values are live. */
5148 if (argblock)
5149 use = plus_constant (Pmode, argblock,
5150 argvec[argnum].locate.offset.constant);
5151 else if (have_push_fusage)
5152 continue;
5153 else
5155 /* When arguments are pushed, trying to tell alias.c where
5156 exactly this argument is won't work, because the
5157 auto-increment causes confusion. So we merely indicate
5158 that we access something with a known mode somewhere on
5159 the stack. */
5160 use = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
5161 gen_rtx_SCRATCH (Pmode));
5162 have_push_fusage = true;
5164 use = gen_rtx_MEM (argvec[argnum].mode, use);
5165 use = gen_rtx_USE (VOIDmode, use);
5166 call_fusage = gen_rtx_EXPR_LIST (VOIDmode, use, call_fusage);
5170 argnum = nargs - 1;
5172 fun = prepare_call_address (NULL, fun, NULL, &call_fusage, 0, 0);
5174 /* Now load any reg parms into their regs. */
5176 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
5177 are to be pushed. */
5178 for (count = 0; count < nargs; count++, argnum--)
5180 machine_mode mode = argvec[argnum].mode;
5181 rtx val = argvec[argnum].value;
5182 rtx reg = argvec[argnum].reg;
5183 int partial = argvec[argnum].partial;
5185 /* Handle calls that pass values in multiple non-contiguous
5186 locations. The PA64 has examples of this for library calls. */
5187 if (reg != 0 && GET_CODE (reg) == PARALLEL)
5188 emit_group_load (reg, val, NULL_TREE, GET_MODE_SIZE (mode));
5189 else if (reg != 0 && partial == 0)
5191 emit_move_insn (reg, val);
5192 #ifdef BLOCK_REG_PADDING
5193 poly_int64 size = GET_MODE_SIZE (argvec[argnum].mode);
5195 /* Copied from load_register_parameters. */
5197 /* Handle case where we have a value that needs shifting
5198 up to the msb. eg. a QImode value and we're padding
5199 upward on a BYTES_BIG_ENDIAN machine. */
5200 if (known_lt (size, UNITS_PER_WORD)
5201 && (argvec[argnum].locate.where_pad
5202 == (BYTES_BIG_ENDIAN ? PAD_UPWARD : PAD_DOWNWARD)))
5204 rtx x;
5205 poly_int64 shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
5207 /* Assigning REG here rather than a temp makes CALL_FUSAGE
5208 report the whole reg as used. Strictly speaking, the
5209 call only uses SIZE bytes at the msb end, but it doesn't
5210 seem worth generating rtl to say that. */
5211 reg = gen_rtx_REG (word_mode, REGNO (reg));
5212 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
5213 if (x != reg)
5214 emit_move_insn (reg, x);
5216 #endif
5219 NO_DEFER_POP;
5222 /* Any regs containing parms remain in use through the call. */
5223 for (count = 0; count < nargs; count++)
5225 rtx reg = argvec[count].reg;
5226 if (reg != 0 && GET_CODE (reg) == PARALLEL)
5227 use_group_regs (&call_fusage, reg);
5228 else if (reg != 0)
5230 int partial = argvec[count].partial;
5231 if (partial)
5233 int nregs;
5234 gcc_assert (partial % UNITS_PER_WORD == 0);
5235 nregs = partial / UNITS_PER_WORD;
5236 use_regs (&call_fusage, REGNO (reg), nregs);
5238 else
5239 use_reg (&call_fusage, reg);
5243 /* Pass the function the address in which to return a structure value. */
5244 if (mem_value != 0 && struct_value != 0 && ! pcc_struct_value)
5246 emit_move_insn (struct_value,
5247 force_reg (Pmode,
5248 force_operand (XEXP (mem_value, 0),
5249 NULL_RTX)));
5250 if (REG_P (struct_value))
5251 use_reg (&call_fusage, struct_value);
5254 /* Don't allow popping to be deferred, since then
5255 cse'ing of library calls could delete a call and leave the pop. */
5256 NO_DEFER_POP;
5257 valreg = (mem_value == 0 && outmode != VOIDmode
5258 ? hard_libcall_value (outmode, orgfun) : NULL_RTX);
5260 /* Stack must be properly aligned now. */
5261 gcc_assert (multiple_p (stack_pointer_delta,
5262 PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT));
5264 before_call = get_last_insn ();
5266 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
5267 will set inhibit_defer_pop to that value. */
5268 /* The return type is needed to decide how many bytes the function pops.
5269 Signedness plays no role in that, so for simplicity, we pretend it's
5270 always signed. We also assume that the list of arguments passed has
5271 no impact, so we pretend it is unknown. */
5273 emit_call_1 (fun, NULL,
5274 get_identifier (XSTR (orgfun, 0)),
5275 build_function_type (tfom, NULL_TREE),
5276 original_args_size.constant, args_size.constant,
5277 struct_value_size,
5278 targetm.calls.function_arg (args_so_far,
5279 VOIDmode, void_type_node, true),
5280 valreg,
5281 old_inhibit_defer_pop + 1, call_fusage, flags, args_so_far);
5283 if (flag_ipa_ra)
5285 rtx datum = orgfun;
5286 gcc_assert (GET_CODE (datum) == SYMBOL_REF);
5287 rtx_call_insn *last = last_call_insn ();
5288 add_reg_note (last, REG_CALL_DECL, datum);
5291 /* Right-shift returned value if necessary. */
5292 if (!pcc_struct_value
5293 && TYPE_MODE (tfom) != BLKmode
5294 && targetm.calls.return_in_msb (tfom))
5296 shift_return_value (TYPE_MODE (tfom), false, valreg);
5297 valreg = gen_rtx_REG (TYPE_MODE (tfom), REGNO (valreg));
5300 targetm.calls.end_call_args ();
5302 /* For calls to `setjmp', etc., inform function.c:setjmp_warnings
5303 that it should complain if nonvolatile values are live. For
5304 functions that cannot return, inform flow that control does not
5305 fall through. */
5306 if (flags & ECF_NORETURN)
5308 /* The barrier note must be emitted
5309 immediately after the CALL_INSN. Some ports emit more than
5310 just a CALL_INSN above, so we must search for it here. */
5311 rtx_insn *last = get_last_insn ();
5312 while (!CALL_P (last))
5314 last = PREV_INSN (last);
5315 /* There was no CALL_INSN? */
5316 gcc_assert (last != before_call);
5319 emit_barrier_after (last);
5322 /* Consider that "regular" libcalls, i.e. all of them except for LCT_THROW
5323 and LCT_RETURNS_TWICE, cannot perform non-local gotos. */
5324 if (flags & ECF_NOTHROW)
5326 rtx_insn *last = get_last_insn ();
5327 while (!CALL_P (last))
5329 last = PREV_INSN (last);
5330 /* There was no CALL_INSN? */
5331 gcc_assert (last != before_call);
5334 make_reg_eh_region_note_nothrow_nononlocal (last);
5337 /* Now restore inhibit_defer_pop to its actual original value. */
5338 OK_DEFER_POP;
5340 pop_temp_slots ();
5342 /* Copy the value to the right place. */
5343 if (outmode != VOIDmode && retval)
5345 if (mem_value)
5347 if (value == 0)
5348 value = mem_value;
5349 if (value != mem_value)
5350 emit_move_insn (value, mem_value);
5352 else if (GET_CODE (valreg) == PARALLEL)
5354 if (value == 0)
5355 value = gen_reg_rtx (outmode);
5356 emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode));
5358 else
5360 /* Convert to the proper mode if a promotion has been active. */
5361 if (GET_MODE (valreg) != outmode)
5363 int unsignedp = TYPE_UNSIGNED (tfom);
5365 gcc_assert (promote_function_mode (tfom, outmode, &unsignedp,
5366 fndecl ? TREE_TYPE (fndecl) : fntype, 1)
5367 == GET_MODE (valreg));
5368 valreg = convert_modes (outmode, GET_MODE (valreg), valreg, 0);
5371 if (value != 0)
5372 emit_move_insn (value, valreg);
5373 else
5374 value = valreg;
5378 if (ACCUMULATE_OUTGOING_ARGS)
5380 #ifdef REG_PARM_STACK_SPACE
5381 if (save_area)
5382 restore_fixed_argument_area (save_area, argblock,
5383 high_to_save, low_to_save);
5384 #endif
5386 /* If we saved any argument areas, restore them. */
5387 for (count = 0; count < nargs; count++)
5388 if (argvec[count].save_area)
5390 machine_mode save_mode = GET_MODE (argvec[count].save_area);
5391 rtx adr = plus_constant (Pmode, argblock,
5392 argvec[count].locate.offset.constant);
5393 rtx stack_area = gen_rtx_MEM (save_mode,
5394 memory_address (save_mode, adr));
5396 if (save_mode == BLKmode)
5397 emit_block_move (stack_area,
5398 validize_mem
5399 (copy_rtx (argvec[count].save_area)),
5400 (gen_int_mode
5401 (argvec[count].locate.size.constant, Pmode)),
5402 BLOCK_OP_CALL_PARM);
5403 else
5404 emit_move_insn (stack_area, argvec[count].save_area);
5407 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
5408 stack_usage_map = initial_stack_usage_map;
5409 stack_usage_watermark = initial_stack_usage_watermark;
5412 free (stack_usage_map_buf);
5414 return value;
5419 /* Store a single argument for a function call
5420 into the register or memory area where it must be passed.
5421 *ARG describes the argument value and where to pass it.
5423 ARGBLOCK is the address of the stack-block for all the arguments,
5424 or 0 on a machine where arguments are pushed individually.
5426 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
5427 so must be careful about how the stack is used.
5429 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
5430 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
5431 that we need not worry about saving and restoring the stack.
5433 FNDECL is the declaration of the function we are calling.
5435 Return nonzero if this arg should cause sibcall failure,
5436 zero otherwise. */
5438 static int
5439 store_one_arg (struct arg_data *arg, rtx argblock, int flags,
5440 int variable_size ATTRIBUTE_UNUSED, int reg_parm_stack_space)
5442 tree pval = arg->tree_value;
5443 rtx reg = 0;
5444 int partial = 0;
5445 poly_int64 used = 0;
5446 poly_int64 lower_bound = 0, upper_bound = 0;
5447 int sibcall_failure = 0;
5449 if (TREE_CODE (pval) == ERROR_MARK)
5450 return 1;
5452 /* Push a new temporary level for any temporaries we make for
5453 this argument. */
5454 push_temp_slots ();
5456 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
5458 /* If this is being stored into a pre-allocated, fixed-size, stack area,
5459 save any previous data at that location. */
5460 if (argblock && ! variable_size && arg->stack)
5462 if (ARGS_GROW_DOWNWARD)
5464 /* stack_slot is negative, but we want to index stack_usage_map
5465 with positive values. */
5466 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
5468 rtx offset = XEXP (XEXP (arg->stack_slot, 0), 1);
5469 upper_bound = -rtx_to_poly_int64 (offset) + 1;
5471 else
5472 upper_bound = 0;
5474 lower_bound = upper_bound - arg->locate.size.constant;
5476 else
5478 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
5480 rtx offset = XEXP (XEXP (arg->stack_slot, 0), 1);
5481 lower_bound = rtx_to_poly_int64 (offset);
5483 else
5484 lower_bound = 0;
5486 upper_bound = lower_bound + arg->locate.size.constant;
5489 if (stack_region_maybe_used_p (lower_bound, upper_bound,
5490 reg_parm_stack_space))
5492 /* We need to make a save area. */
5493 poly_uint64 size = arg->locate.size.constant * BITS_PER_UNIT;
5494 machine_mode save_mode
5495 = int_mode_for_size (size, 1).else_blk ();
5496 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
5497 rtx stack_area = gen_rtx_MEM (save_mode, adr);
5499 if (save_mode == BLKmode)
5501 arg->save_area
5502 = assign_temp (TREE_TYPE (arg->tree_value), 1, 1);
5503 preserve_temp_slots (arg->save_area);
5504 emit_block_move (validize_mem (copy_rtx (arg->save_area)),
5505 stack_area,
5506 (gen_int_mode
5507 (arg->locate.size.constant, Pmode)),
5508 BLOCK_OP_CALL_PARM);
5510 else
5512 arg->save_area = gen_reg_rtx (save_mode);
5513 emit_move_insn (arg->save_area, stack_area);
5519 /* If this isn't going to be placed on both the stack and in registers,
5520 set up the register and number of words. */
5521 if (! arg->pass_on_stack)
5523 if (flags & ECF_SIBCALL)
5524 reg = arg->tail_call_reg;
5525 else
5526 reg = arg->reg;
5527 partial = arg->partial;
5530 /* Being passed entirely in a register. We shouldn't be called in
5531 this case. */
5532 gcc_assert (reg == 0 || partial != 0);
5534 /* If this arg needs special alignment, don't load the registers
5535 here. */
5536 if (arg->n_aligned_regs != 0)
5537 reg = 0;
5539 /* If this is being passed partially in a register, we can't evaluate
5540 it directly into its stack slot. Otherwise, we can. */
5541 if (arg->value == 0)
5543 /* stack_arg_under_construction is nonzero if a function argument is
5544 being evaluated directly into the outgoing argument list and
5545 expand_call must take special action to preserve the argument list
5546 if it is called recursively.
5548 For scalar function arguments stack_usage_map is sufficient to
5549 determine which stack slots must be saved and restored. Scalar
5550 arguments in general have pass_on_stack == 0.
5552 If this argument is initialized by a function which takes the
5553 address of the argument (a C++ constructor or a C function
5554 returning a BLKmode structure), then stack_usage_map is
5555 insufficient and expand_call must push the stack around the
5556 function call. Such arguments have pass_on_stack == 1.
5558 Note that it is always safe to set stack_arg_under_construction,
5559 but this generates suboptimal code if set when not needed. */
5561 if (arg->pass_on_stack)
5562 stack_arg_under_construction++;
5564 arg->value = expand_expr (pval,
5565 (partial
5566 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
5567 ? NULL_RTX : arg->stack,
5568 VOIDmode, EXPAND_STACK_PARM);
5570 /* If we are promoting object (or for any other reason) the mode
5571 doesn't agree, convert the mode. */
5573 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
5574 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
5575 arg->value, arg->unsignedp);
5577 if (arg->pass_on_stack)
5578 stack_arg_under_construction--;
5581 /* Check for overlap with already clobbered argument area. */
5582 if ((flags & ECF_SIBCALL)
5583 && MEM_P (arg->value)
5584 && mem_might_overlap_already_clobbered_arg_p (XEXP (arg->value, 0),
5585 arg->locate.size.constant))
5586 sibcall_failure = 1;
5588 /* Don't allow anything left on stack from computation
5589 of argument to alloca. */
5590 if (flags & ECF_MAY_BE_ALLOCA)
5591 do_pending_stack_adjust ();
5593 if (arg->value == arg->stack)
5594 /* If the value is already in the stack slot, we are done. */
5596 else if (arg->mode != BLKmode)
5598 unsigned int parm_align;
5600 /* Argument is a scalar, not entirely passed in registers.
5601 (If part is passed in registers, arg->partial says how much
5602 and emit_push_insn will take care of putting it there.)
5604 Push it, and if its size is less than the
5605 amount of space allocated to it,
5606 also bump stack pointer by the additional space.
5607 Note that in C the default argument promotions
5608 will prevent such mismatches. */
5610 poly_int64 size = (TYPE_EMPTY_P (TREE_TYPE (pval))
5611 ? 0 : GET_MODE_SIZE (arg->mode));
5613 /* Compute how much space the push instruction will push.
5614 On many machines, pushing a byte will advance the stack
5615 pointer by a halfword. */
5616 #ifdef PUSH_ROUNDING
5617 size = PUSH_ROUNDING (size);
5618 #endif
5619 used = size;
5621 /* Compute how much space the argument should get:
5622 round up to a multiple of the alignment for arguments. */
5623 if (targetm.calls.function_arg_padding (arg->mode, TREE_TYPE (pval))
5624 != PAD_NONE)
5625 /* At the moment we don't (need to) support ABIs for which the
5626 padding isn't known at compile time. In principle it should
5627 be easy to add though. */
5628 used = force_align_up (size, PARM_BOUNDARY / BITS_PER_UNIT);
5630 /* Compute the alignment of the pushed argument. */
5631 parm_align = arg->locate.boundary;
5632 if (targetm.calls.function_arg_padding (arg->mode, TREE_TYPE (pval))
5633 == PAD_DOWNWARD)
5635 poly_int64 pad = used - size;
5636 unsigned int pad_align = known_alignment (pad) * BITS_PER_UNIT;
5637 if (pad_align != 0)
5638 parm_align = MIN (parm_align, pad_align);
5641 /* This isn't already where we want it on the stack, so put it there.
5642 This can either be done with push or copy insns. */
5643 if (maybe_ne (used, 0)
5644 && !emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval),
5645 NULL_RTX, parm_align, partial, reg, used - size,
5646 argblock, ARGS_SIZE_RTX (arg->locate.offset),
5647 reg_parm_stack_space,
5648 ARGS_SIZE_RTX (arg->locate.alignment_pad), true))
5649 sibcall_failure = 1;
5651 /* Unless this is a partially-in-register argument, the argument is now
5652 in the stack. */
5653 if (partial == 0)
5654 arg->value = arg->stack;
5656 else
5658 /* BLKmode, at least partly to be pushed. */
5660 unsigned int parm_align;
5661 poly_int64 excess;
5662 rtx size_rtx;
5664 /* Pushing a nonscalar.
5665 If part is passed in registers, PARTIAL says how much
5666 and emit_push_insn will take care of putting it there. */
5668 /* Round its size up to a multiple
5669 of the allocation unit for arguments. */
5671 if (arg->locate.size.var != 0)
5673 excess = 0;
5674 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
5676 else
5678 /* PUSH_ROUNDING has no effect on us, because emit_push_insn
5679 for BLKmode is careful to avoid it. */
5680 excess = (arg->locate.size.constant
5681 - arg_int_size_in_bytes (TREE_TYPE (pval))
5682 + partial);
5683 size_rtx = expand_expr (arg_size_in_bytes (TREE_TYPE (pval)),
5684 NULL_RTX, TYPE_MODE (sizetype),
5685 EXPAND_NORMAL);
5688 parm_align = arg->locate.boundary;
5690 /* When an argument is padded down, the block is aligned to
5691 PARM_BOUNDARY, but the actual argument isn't. */
5692 if (targetm.calls.function_arg_padding (arg->mode, TREE_TYPE (pval))
5693 == PAD_DOWNWARD)
5695 if (arg->locate.size.var)
5696 parm_align = BITS_PER_UNIT;
5697 else
5699 unsigned int excess_align
5700 = known_alignment (excess) * BITS_PER_UNIT;
5701 if (excess_align != 0)
5702 parm_align = MIN (parm_align, excess_align);
5706 if ((flags & ECF_SIBCALL) && MEM_P (arg->value))
5708 /* emit_push_insn might not work properly if arg->value and
5709 argblock + arg->locate.offset areas overlap. */
5710 rtx x = arg->value;
5711 poly_int64 i = 0;
5713 if (strip_offset (XEXP (x, 0), &i)
5714 == crtl->args.internal_arg_pointer)
5716 /* arg.locate doesn't contain the pretend_args_size offset,
5717 it's part of argblock. Ensure we don't count it in I. */
5718 if (STACK_GROWS_DOWNWARD)
5719 i -= crtl->args.pretend_args_size;
5720 else
5721 i += crtl->args.pretend_args_size;
5723 /* expand_call should ensure this. */
5724 gcc_assert (!arg->locate.offset.var
5725 && arg->locate.size.var == 0);
5726 poly_int64 size_val = rtx_to_poly_int64 (size_rtx);
5728 if (known_eq (arg->locate.offset.constant, i))
5730 /* Even though they appear to be at the same location,
5731 if part of the outgoing argument is in registers,
5732 they aren't really at the same location. Check for
5733 this by making sure that the incoming size is the
5734 same as the outgoing size. */
5735 if (maybe_ne (arg->locate.size.constant, size_val))
5736 sibcall_failure = 1;
5738 else if (maybe_in_range_p (arg->locate.offset.constant,
5739 i, size_val))
5740 sibcall_failure = 1;
5741 /* Use arg->locate.size.constant instead of size_rtx
5742 because we only care about the part of the argument
5743 on the stack. */
5744 else if (maybe_in_range_p (i, arg->locate.offset.constant,
5745 arg->locate.size.constant))
5746 sibcall_failure = 1;
5750 if (!CONST_INT_P (size_rtx) || INTVAL (size_rtx) != 0)
5751 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
5752 parm_align, partial, reg, excess, argblock,
5753 ARGS_SIZE_RTX (arg->locate.offset),
5754 reg_parm_stack_space,
5755 ARGS_SIZE_RTX (arg->locate.alignment_pad), false);
5757 /* Unless this is a partially-in-register argument, the argument is now
5758 in the stack.
5760 ??? Unlike the case above, in which we want the actual
5761 address of the data, so that we can load it directly into a
5762 register, here we want the address of the stack slot, so that
5763 it's properly aligned for word-by-word copying or something
5764 like that. It's not clear that this is always correct. */
5765 if (partial == 0)
5766 arg->value = arg->stack_slot;
5769 if (arg->reg && GET_CODE (arg->reg) == PARALLEL)
5771 tree type = TREE_TYPE (arg->tree_value);
5772 arg->parallel_value
5773 = emit_group_load_into_temps (arg->reg, arg->value, type,
5774 int_size_in_bytes (type));
5777 /* Mark all slots this store used. */
5778 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
5779 && argblock && ! variable_size && arg->stack)
5780 mark_stack_region_used (lower_bound, upper_bound);
5782 /* Once we have pushed something, pops can't safely
5783 be deferred during the rest of the arguments. */
5784 NO_DEFER_POP;
5786 /* Free any temporary slots made in processing this argument. */
5787 pop_temp_slots ();
5789 return sibcall_failure;
5792 /* Nonzero if we do not know how to pass TYPE solely in registers. */
5794 bool
5795 must_pass_in_stack_var_size (machine_mode mode ATTRIBUTE_UNUSED,
5796 const_tree type)
5798 if (!type)
5799 return false;
5801 /* If the type has variable size... */
5802 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5803 return true;
5805 /* If the type is marked as addressable (it is required
5806 to be constructed into the stack)... */
5807 if (TREE_ADDRESSABLE (type))
5808 return true;
5810 return false;
5813 /* Another version of the TARGET_MUST_PASS_IN_STACK hook. This one
5814 takes trailing padding of a structure into account. */
5815 /* ??? Should be able to merge these two by examining BLOCK_REG_PADDING. */
5817 bool
5818 must_pass_in_stack_var_size_or_pad (machine_mode mode, const_tree type)
5820 if (!type)
5821 return false;
5823 /* If the type has variable size... */
5824 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5825 return true;
5827 /* If the type is marked as addressable (it is required
5828 to be constructed into the stack)... */
5829 if (TREE_ADDRESSABLE (type))
5830 return true;
5832 if (TYPE_EMPTY_P (type))
5833 return false;
5835 /* If the padding and mode of the type is such that a copy into
5836 a register would put it into the wrong part of the register. */
5837 if (mode == BLKmode
5838 && int_size_in_bytes (type) % (PARM_BOUNDARY / BITS_PER_UNIT)
5839 && (targetm.calls.function_arg_padding (mode, type)
5840 == (BYTES_BIG_ENDIAN ? PAD_UPWARD : PAD_DOWNWARD)))
5841 return true;
5843 return false;
5846 /* Tell the garbage collector about GTY markers in this source file. */
5847 #include "gt-calls.h"