poly_int: omp_max_vf
[official-gcc.git] / gcc / calls.c
blob9b7e1189918eeb35d1fdf47ba90108bf46d1610a
1 /* Convert function calls to rtl insns, for GNU C compiler.
2 Copyright (C) 1989-2017 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-chkp.h"
51 #include "tree-vrp.h"
52 #include "tree-ssanames.h"
53 #include "rtl-chkp.h"
54 #include "intl.h"
55 #include "stringpool.h"
56 #include "attribs.h"
57 #include "builtins.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 void store_bounds (struct arg_data *, struct arg_data *);
157 static int store_one_arg (struct arg_data *, rtx, int, int, int);
158 static void store_unaligned_arguments_into_pseudos (struct arg_data *, int);
159 static int finalize_must_preallocate (int, int, struct arg_data *,
160 struct args_size *);
161 static void precompute_arguments (int, struct arg_data *);
162 static void compute_argument_addresses (struct arg_data *, rtx, int);
163 static rtx rtx_for_function_call (tree, tree);
164 static void load_register_parameters (struct arg_data *, int, rtx *, int,
165 int, int *);
166 static int special_function_p (const_tree, int);
167 static int check_sibcall_argument_overlap_1 (rtx);
168 static int check_sibcall_argument_overlap (rtx_insn *, struct arg_data *, int);
170 static tree split_complex_types (tree);
172 #ifdef REG_PARM_STACK_SPACE
173 static rtx save_fixed_argument_area (int, rtx, int *, int *);
174 static void restore_fixed_argument_area (rtx, rtx, int, int);
175 #endif
177 /* Return true if bytes [LOWER_BOUND, UPPER_BOUND) of the outgoing
178 stack region might already be in use. */
180 static bool
181 stack_region_maybe_used_p (poly_uint64 lower_bound, poly_uint64 upper_bound,
182 unsigned int reg_parm_stack_space)
184 unsigned HOST_WIDE_INT const_lower, const_upper;
185 const_lower = constant_lower_bound (lower_bound);
186 if (!upper_bound.is_constant (&const_upper))
187 const_upper = HOST_WIDE_INT_M1U;
189 if (const_upper > stack_usage_watermark)
190 return true;
192 /* Don't worry about things in the fixed argument area;
193 it has already been saved. */
194 const_lower = MAX (const_lower, reg_parm_stack_space);
195 const_upper = MIN (const_upper, highest_outgoing_arg_in_use);
196 for (unsigned HOST_WIDE_INT i = const_lower; i < const_upper; ++i)
197 if (stack_usage_map[i])
198 return true;
199 return false;
202 /* Record that bytes [LOWER_BOUND, UPPER_BOUND) of the outgoing
203 stack region are now in use. */
205 static void
206 mark_stack_region_used (poly_uint64 lower_bound, poly_uint64 upper_bound)
208 unsigned HOST_WIDE_INT const_lower, const_upper;
209 const_lower = constant_lower_bound (lower_bound);
210 if (upper_bound.is_constant (&const_upper))
211 for (unsigned HOST_WIDE_INT i = const_lower; i < const_upper; ++i)
212 stack_usage_map[i] = 1;
213 else
214 stack_usage_watermark = MIN (stack_usage_watermark, const_lower);
217 /* Force FUNEXP into a form suitable for the address of a CALL,
218 and return that as an rtx. Also load the static chain register
219 if FNDECL is a nested function.
221 CALL_FUSAGE points to a variable holding the prospective
222 CALL_INSN_FUNCTION_USAGE information. */
225 prepare_call_address (tree fndecl_or_type, rtx funexp, rtx static_chain_value,
226 rtx *call_fusage, int reg_parm_seen, int flags)
228 /* Make a valid memory address and copy constants through pseudo-regs,
229 but not for a constant address if -fno-function-cse. */
230 if (GET_CODE (funexp) != SYMBOL_REF)
232 /* If it's an indirect call by descriptor, generate code to perform
233 runtime identification of the pointer and load the descriptor. */
234 if ((flags & ECF_BY_DESCRIPTOR) && !flag_trampolines)
236 const int bit_val = targetm.calls.custom_function_descriptors;
237 rtx call_lab = gen_label_rtx ();
239 gcc_assert (fndecl_or_type && TYPE_P (fndecl_or_type));
240 fndecl_or_type
241 = build_decl (UNKNOWN_LOCATION, FUNCTION_DECL, NULL_TREE,
242 fndecl_or_type);
243 DECL_STATIC_CHAIN (fndecl_or_type) = 1;
244 rtx chain = targetm.calls.static_chain (fndecl_or_type, false);
246 if (GET_MODE (funexp) != Pmode)
247 funexp = convert_memory_address (Pmode, funexp);
249 /* Avoid long live ranges around function calls. */
250 funexp = copy_to_mode_reg (Pmode, funexp);
252 if (REG_P (chain))
253 emit_insn (gen_rtx_CLOBBER (VOIDmode, chain));
255 /* Emit the runtime identification pattern. */
256 rtx mask = gen_rtx_AND (Pmode, funexp, GEN_INT (bit_val));
257 emit_cmp_and_jump_insns (mask, const0_rtx, EQ, NULL_RTX, Pmode, 1,
258 call_lab);
260 /* Statically predict the branch to very likely taken. */
261 rtx_insn *insn = get_last_insn ();
262 if (JUMP_P (insn))
263 predict_insn_def (insn, PRED_BUILTIN_EXPECT, TAKEN);
265 /* Load the descriptor. */
266 rtx mem = gen_rtx_MEM (ptr_mode,
267 plus_constant (Pmode, funexp, - bit_val));
268 MEM_NOTRAP_P (mem) = 1;
269 mem = convert_memory_address (Pmode, mem);
270 emit_move_insn (chain, mem);
272 mem = gen_rtx_MEM (ptr_mode,
273 plus_constant (Pmode, funexp,
274 POINTER_SIZE / BITS_PER_UNIT
275 - bit_val));
276 MEM_NOTRAP_P (mem) = 1;
277 mem = convert_memory_address (Pmode, mem);
278 emit_move_insn (funexp, mem);
280 emit_label (call_lab);
282 if (REG_P (chain))
284 use_reg (call_fusage, chain);
285 STATIC_CHAIN_REG_P (chain) = 1;
288 /* Make sure we're not going to be overwritten below. */
289 gcc_assert (!static_chain_value);
292 /* If we are using registers for parameters, force the
293 function address into a register now. */
294 funexp = ((reg_parm_seen
295 && targetm.small_register_classes_for_mode_p (FUNCTION_MODE))
296 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
297 : memory_address (FUNCTION_MODE, funexp));
299 else
301 /* funexp could be a SYMBOL_REF represents a function pointer which is
302 of ptr_mode. In this case, it should be converted into address mode
303 to be a valid address for memory rtx pattern. See PR 64971. */
304 if (GET_MODE (funexp) != Pmode)
305 funexp = convert_memory_address (Pmode, funexp);
307 if (!(flags & ECF_SIBCALL))
309 if (!NO_FUNCTION_CSE && optimize && ! flag_no_function_cse)
310 funexp = force_reg (Pmode, funexp);
314 if (static_chain_value != 0
315 && (TREE_CODE (fndecl_or_type) != FUNCTION_DECL
316 || DECL_STATIC_CHAIN (fndecl_or_type)))
318 rtx chain;
320 chain = targetm.calls.static_chain (fndecl_or_type, false);
321 static_chain_value = convert_memory_address (Pmode, static_chain_value);
323 emit_move_insn (chain, static_chain_value);
324 if (REG_P (chain))
326 use_reg (call_fusage, chain);
327 STATIC_CHAIN_REG_P (chain) = 1;
331 return funexp;
334 /* Generate instructions to call function FUNEXP,
335 and optionally pop the results.
336 The CALL_INSN is the first insn generated.
338 FNDECL is the declaration node of the function. This is given to the
339 hook TARGET_RETURN_POPS_ARGS to determine whether this function pops
340 its own args.
342 FUNTYPE is the data type of the function. This is given to the hook
343 TARGET_RETURN_POPS_ARGS to determine whether this function pops its
344 own args. We used to allow an identifier for library functions, but
345 that doesn't work when the return type is an aggregate type and the
346 calling convention says that the pointer to this aggregate is to be
347 popped by the callee.
349 STACK_SIZE is the number of bytes of arguments on the stack,
350 ROUNDED_STACK_SIZE is that number rounded up to
351 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
352 both to put into the call insn and to generate explicit popping
353 code if necessary.
355 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
356 It is zero if this call doesn't want a structure value.
358 NEXT_ARG_REG is the rtx that results from executing
359 targetm.calls.function_arg (&args_so_far, VOIDmode, void_type_node, true)
360 just after all the args have had their registers assigned.
361 This could be whatever you like, but normally it is the first
362 arg-register beyond those used for args in this call,
363 or 0 if all the arg-registers are used in this call.
364 It is passed on to `gen_call' so you can put this info in the call insn.
366 VALREG is a hard register in which a value is returned,
367 or 0 if the call does not return a value.
369 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
370 the args to this call were processed.
371 We restore `inhibit_defer_pop' to that value.
373 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
374 denote registers used by the called function. */
376 static void
377 emit_call_1 (rtx funexp, tree fntree ATTRIBUTE_UNUSED, tree fndecl ATTRIBUTE_UNUSED,
378 tree funtype ATTRIBUTE_UNUSED,
379 poly_int64 stack_size ATTRIBUTE_UNUSED,
380 poly_int64 rounded_stack_size,
381 HOST_WIDE_INT struct_value_size ATTRIBUTE_UNUSED,
382 rtx next_arg_reg ATTRIBUTE_UNUSED, rtx valreg,
383 int old_inhibit_defer_pop, rtx call_fusage, int ecf_flags,
384 cumulative_args_t args_so_far ATTRIBUTE_UNUSED)
386 rtx rounded_stack_size_rtx = gen_int_mode (rounded_stack_size, Pmode);
387 rtx call, funmem, pat;
388 int already_popped = 0;
389 poly_int64 n_popped = 0;
391 /* Sibling call patterns never pop arguments (no sibcall(_value)_pop
392 patterns exist). Any popping that the callee does on return will
393 be from our caller's frame rather than ours. */
394 if (!(ecf_flags & ECF_SIBCALL))
396 n_popped += targetm.calls.return_pops_args (fndecl, funtype, stack_size);
398 #ifdef CALL_POPS_ARGS
399 n_popped += CALL_POPS_ARGS (*get_cumulative_args (args_so_far));
400 #endif
403 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
404 and we don't want to load it into a register as an optimization,
405 because prepare_call_address already did it if it should be done. */
406 if (GET_CODE (funexp) != SYMBOL_REF)
407 funexp = memory_address (FUNCTION_MODE, funexp);
409 funmem = gen_rtx_MEM (FUNCTION_MODE, funexp);
410 if (fndecl && TREE_CODE (fndecl) == FUNCTION_DECL)
412 tree t = fndecl;
414 /* Although a built-in FUNCTION_DECL and its non-__builtin
415 counterpart compare equal and get a shared mem_attrs, they
416 produce different dump output in compare-debug compilations,
417 if an entry gets garbage collected in one compilation, then
418 adds a different (but equivalent) entry, while the other
419 doesn't run the garbage collector at the same spot and then
420 shares the mem_attr with the equivalent entry. */
421 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
423 tree t2 = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
424 if (t2)
425 t = t2;
428 set_mem_expr (funmem, t);
430 else if (fntree)
431 set_mem_expr (funmem, build_simple_mem_ref (CALL_EXPR_FN (fntree)));
433 if (ecf_flags & ECF_SIBCALL)
435 if (valreg)
436 pat = targetm.gen_sibcall_value (valreg, funmem,
437 rounded_stack_size_rtx,
438 next_arg_reg, NULL_RTX);
439 else
440 pat = targetm.gen_sibcall (funmem, rounded_stack_size_rtx,
441 next_arg_reg, GEN_INT (struct_value_size));
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 (struct_value_size));
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 /* Mark instrumented calls. */
490 if (call && fntree)
491 CALL_EXPR_WITH_BOUNDS_P (call) = CALL_WITH_BOUNDS_P (fntree);
493 /* Put the register usage information there. */
494 add_function_usage_to (call_insn, call_fusage);
496 /* If this is a const call, then set the insn's unchanging bit. */
497 if (ecf_flags & ECF_CONST)
498 RTL_CONST_CALL_P (call_insn) = 1;
500 /* If this is a pure call, then set the insn's unchanging bit. */
501 if (ecf_flags & ECF_PURE)
502 RTL_PURE_CALL_P (call_insn) = 1;
504 /* If this is a const call, then set the insn's unchanging bit. */
505 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
506 RTL_LOOPING_CONST_OR_PURE_CALL_P (call_insn) = 1;
508 /* Create a nothrow REG_EH_REGION note, if needed. */
509 make_reg_eh_region_note (call_insn, ecf_flags, 0);
511 if (ecf_flags & ECF_NORETURN)
512 add_reg_note (call_insn, REG_NORETURN, const0_rtx);
514 if (ecf_flags & ECF_RETURNS_TWICE)
516 add_reg_note (call_insn, REG_SETJMP, const0_rtx);
517 cfun->calls_setjmp = 1;
520 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
522 /* Restore this now, so that we do defer pops for this call's args
523 if the context of the call as a whole permits. */
524 inhibit_defer_pop = old_inhibit_defer_pop;
526 if (maybe_ne (n_popped, 0))
528 if (!already_popped)
529 CALL_INSN_FUNCTION_USAGE (call_insn)
530 = gen_rtx_EXPR_LIST (VOIDmode,
531 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
532 CALL_INSN_FUNCTION_USAGE (call_insn));
533 rounded_stack_size -= n_popped;
534 rounded_stack_size_rtx = gen_int_mode (rounded_stack_size, Pmode);
535 stack_pointer_delta -= n_popped;
537 add_args_size_note (call_insn, stack_pointer_delta);
539 /* If popup is needed, stack realign must use DRAP */
540 if (SUPPORTS_STACK_ALIGNMENT)
541 crtl->need_drap = true;
543 /* For noreturn calls when not accumulating outgoing args force
544 REG_ARGS_SIZE note to prevent crossjumping of calls with different
545 args sizes. */
546 else if (!ACCUMULATE_OUTGOING_ARGS && (ecf_flags & ECF_NORETURN) != 0)
547 add_args_size_note (call_insn, stack_pointer_delta);
549 if (!ACCUMULATE_OUTGOING_ARGS)
551 /* If returning from the subroutine does not automatically pop the args,
552 we need an instruction to pop them sooner or later.
553 Perhaps do it now; perhaps just record how much space to pop later.
555 If returning from the subroutine does pop the args, indicate that the
556 stack pointer will be changed. */
558 if (maybe_ne (rounded_stack_size, 0))
560 if (ecf_flags & ECF_NORETURN)
561 /* Just pretend we did the pop. */
562 stack_pointer_delta -= rounded_stack_size;
563 else if (flag_defer_pop && inhibit_defer_pop == 0
564 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
565 pending_stack_adjust += rounded_stack_size;
566 else
567 adjust_stack (rounded_stack_size_rtx);
570 /* When we accumulate outgoing args, we must avoid any stack manipulations.
571 Restore the stack pointer to its original value now. Usually
572 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
573 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
574 popping variants of functions exist as well.
576 ??? We may optimize similar to defer_pop above, but it is
577 probably not worthwhile.
579 ??? It will be worthwhile to enable combine_stack_adjustments even for
580 such machines. */
581 else if (maybe_ne (n_popped, 0))
582 anti_adjust_stack (gen_int_mode (n_popped, Pmode));
585 /* Determine if the function identified by FNDECL is one with
586 special properties we wish to know about. Modify FLAGS accordingly.
588 For example, if the function might return more than one time (setjmp), then
589 set ECF_RETURNS_TWICE.
591 Set ECF_MAY_BE_ALLOCA for any memory allocation function that might allocate
592 space from the stack such as alloca. */
594 static int
595 special_function_p (const_tree fndecl, int flags)
597 tree name_decl = DECL_NAME (fndecl);
599 /* For instrumentation clones we want to derive flags
600 from the original name. */
601 if (cgraph_node::get (fndecl)
602 && cgraph_node::get (fndecl)->instrumentation_clone)
603 name_decl = DECL_NAME (cgraph_node::get (fndecl)->orig_decl);
605 if (fndecl && name_decl
606 && IDENTIFIER_LENGTH (name_decl) <= 11
607 /* Exclude functions not at the file scope, or not `extern',
608 since they are not the magic functions we would otherwise
609 think they are.
610 FIXME: this should be handled with attributes, not with this
611 hacky imitation of DECL_ASSEMBLER_NAME. It's (also) wrong
612 because you can declare fork() inside a function if you
613 wish. */
614 && (DECL_CONTEXT (fndecl) == NULL_TREE
615 || TREE_CODE (DECL_CONTEXT (fndecl)) == TRANSLATION_UNIT_DECL)
616 && TREE_PUBLIC (fndecl))
618 const char *name = IDENTIFIER_POINTER (name_decl);
619 const char *tname = name;
621 /* We assume that alloca will always be called by name. It
622 makes no sense to pass it as a pointer-to-function to
623 anything that does not understand its behavior. */
624 if (IDENTIFIER_LENGTH (name_decl) == 6
625 && name[0] == 'a'
626 && ! strcmp (name, "alloca"))
627 flags |= ECF_MAY_BE_ALLOCA;
629 /* Disregard prefix _ or __. */
630 if (name[0] == '_')
632 if (name[1] == '_')
633 tname += 2;
634 else
635 tname += 1;
638 /* ECF_RETURNS_TWICE is safe even for -ffreestanding. */
639 if (! strcmp (tname, "setjmp")
640 || ! strcmp (tname, "sigsetjmp")
641 || ! strcmp (name, "savectx")
642 || ! strcmp (name, "vfork")
643 || ! strcmp (name, "getcontext"))
644 flags |= ECF_RETURNS_TWICE;
647 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL
648 && ALLOCA_FUNCTION_CODE_P (DECL_FUNCTION_CODE (fndecl)))
649 flags |= ECF_MAY_BE_ALLOCA;
651 return flags;
654 /* Similar to special_function_p; return a set of ERF_ flags for the
655 function FNDECL. */
656 static int
657 decl_return_flags (tree fndecl)
659 tree attr;
660 tree type = TREE_TYPE (fndecl);
661 if (!type)
662 return 0;
664 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
665 if (!attr)
666 return 0;
668 attr = TREE_VALUE (TREE_VALUE (attr));
669 if (!attr || TREE_STRING_LENGTH (attr) < 1)
670 return 0;
672 switch (TREE_STRING_POINTER (attr)[0])
674 case '1':
675 case '2':
676 case '3':
677 case '4':
678 return ERF_RETURNS_ARG | (TREE_STRING_POINTER (attr)[0] - '1');
680 case 'm':
681 return ERF_NOALIAS;
683 case '.':
684 default:
685 return 0;
689 /* Return nonzero when FNDECL represents a call to setjmp. */
692 setjmp_call_p (const_tree fndecl)
694 if (DECL_IS_RETURNS_TWICE (fndecl))
695 return ECF_RETURNS_TWICE;
696 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
700 /* Return true if STMT may be an alloca call. */
702 bool
703 gimple_maybe_alloca_call_p (const gimple *stmt)
705 tree fndecl;
707 if (!is_gimple_call (stmt))
708 return false;
710 fndecl = gimple_call_fndecl (stmt);
711 if (fndecl && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
712 return true;
714 return false;
717 /* Return true if STMT is a builtin alloca call. */
719 bool
720 gimple_alloca_call_p (const gimple *stmt)
722 tree fndecl;
724 if (!is_gimple_call (stmt))
725 return false;
727 fndecl = gimple_call_fndecl (stmt);
728 if (fndecl && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
729 switch (DECL_FUNCTION_CODE (fndecl))
731 CASE_BUILT_IN_ALLOCA:
732 return true;
733 default:
734 break;
737 return false;
740 /* Return true when exp contains a builtin alloca call. */
742 bool
743 alloca_call_p (const_tree exp)
745 tree fndecl;
746 if (TREE_CODE (exp) == CALL_EXPR
747 && (fndecl = get_callee_fndecl (exp))
748 && DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
749 switch (DECL_FUNCTION_CODE (fndecl))
751 CASE_BUILT_IN_ALLOCA:
752 return true;
753 default:
754 break;
757 return false;
760 /* Return TRUE if FNDECL is either a TM builtin or a TM cloned
761 function. Return FALSE otherwise. */
763 static bool
764 is_tm_builtin (const_tree fndecl)
766 if (fndecl == NULL)
767 return false;
769 if (decl_is_tm_clone (fndecl))
770 return true;
772 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
774 switch (DECL_FUNCTION_CODE (fndecl))
776 case BUILT_IN_TM_COMMIT:
777 case BUILT_IN_TM_COMMIT_EH:
778 case BUILT_IN_TM_ABORT:
779 case BUILT_IN_TM_IRREVOCABLE:
780 case BUILT_IN_TM_GETTMCLONE_IRR:
781 case BUILT_IN_TM_MEMCPY:
782 case BUILT_IN_TM_MEMMOVE:
783 case BUILT_IN_TM_MEMSET:
784 CASE_BUILT_IN_TM_STORE (1):
785 CASE_BUILT_IN_TM_STORE (2):
786 CASE_BUILT_IN_TM_STORE (4):
787 CASE_BUILT_IN_TM_STORE (8):
788 CASE_BUILT_IN_TM_STORE (FLOAT):
789 CASE_BUILT_IN_TM_STORE (DOUBLE):
790 CASE_BUILT_IN_TM_STORE (LDOUBLE):
791 CASE_BUILT_IN_TM_STORE (M64):
792 CASE_BUILT_IN_TM_STORE (M128):
793 CASE_BUILT_IN_TM_STORE (M256):
794 CASE_BUILT_IN_TM_LOAD (1):
795 CASE_BUILT_IN_TM_LOAD (2):
796 CASE_BUILT_IN_TM_LOAD (4):
797 CASE_BUILT_IN_TM_LOAD (8):
798 CASE_BUILT_IN_TM_LOAD (FLOAT):
799 CASE_BUILT_IN_TM_LOAD (DOUBLE):
800 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
801 CASE_BUILT_IN_TM_LOAD (M64):
802 CASE_BUILT_IN_TM_LOAD (M128):
803 CASE_BUILT_IN_TM_LOAD (M256):
804 case BUILT_IN_TM_LOG:
805 case BUILT_IN_TM_LOG_1:
806 case BUILT_IN_TM_LOG_2:
807 case BUILT_IN_TM_LOG_4:
808 case BUILT_IN_TM_LOG_8:
809 case BUILT_IN_TM_LOG_FLOAT:
810 case BUILT_IN_TM_LOG_DOUBLE:
811 case BUILT_IN_TM_LOG_LDOUBLE:
812 case BUILT_IN_TM_LOG_M64:
813 case BUILT_IN_TM_LOG_M128:
814 case BUILT_IN_TM_LOG_M256:
815 return true;
816 default:
817 break;
820 return false;
823 /* Detect flags (function attributes) from the function decl or type node. */
826 flags_from_decl_or_type (const_tree exp)
828 int flags = 0;
830 if (DECL_P (exp))
832 /* The function exp may have the `malloc' attribute. */
833 if (DECL_IS_MALLOC (exp))
834 flags |= ECF_MALLOC;
836 /* The function exp may have the `returns_twice' attribute. */
837 if (DECL_IS_RETURNS_TWICE (exp))
838 flags |= ECF_RETURNS_TWICE;
840 /* Process the pure and const attributes. */
841 if (TREE_READONLY (exp))
842 flags |= ECF_CONST;
843 if (DECL_PURE_P (exp))
844 flags |= ECF_PURE;
845 if (DECL_LOOPING_CONST_OR_PURE_P (exp))
846 flags |= ECF_LOOPING_CONST_OR_PURE;
848 if (DECL_IS_NOVOPS (exp))
849 flags |= ECF_NOVOPS;
850 if (lookup_attribute ("leaf", DECL_ATTRIBUTES (exp)))
851 flags |= ECF_LEAF;
852 if (lookup_attribute ("cold", DECL_ATTRIBUTES (exp)))
853 flags |= ECF_COLD;
855 if (TREE_NOTHROW (exp))
856 flags |= ECF_NOTHROW;
858 if (flag_tm)
860 if (is_tm_builtin (exp))
861 flags |= ECF_TM_BUILTIN;
862 else if ((flags & (ECF_CONST|ECF_NOVOPS)) != 0
863 || lookup_attribute ("transaction_pure",
864 TYPE_ATTRIBUTES (TREE_TYPE (exp))))
865 flags |= ECF_TM_PURE;
868 flags = special_function_p (exp, flags);
870 else if (TYPE_P (exp))
872 if (TYPE_READONLY (exp))
873 flags |= ECF_CONST;
875 if (flag_tm
876 && ((flags & ECF_CONST) != 0
877 || lookup_attribute ("transaction_pure", TYPE_ATTRIBUTES (exp))))
878 flags |= ECF_TM_PURE;
880 else
881 gcc_unreachable ();
883 if (TREE_THIS_VOLATILE (exp))
885 flags |= ECF_NORETURN;
886 if (flags & (ECF_CONST|ECF_PURE))
887 flags |= ECF_LOOPING_CONST_OR_PURE;
890 return flags;
893 /* Detect flags from a CALL_EXPR. */
896 call_expr_flags (const_tree t)
898 int flags;
899 tree decl = get_callee_fndecl (t);
901 if (decl)
902 flags = flags_from_decl_or_type (decl);
903 else if (CALL_EXPR_FN (t) == NULL_TREE)
904 flags = internal_fn_flags (CALL_EXPR_IFN (t));
905 else
907 tree type = TREE_TYPE (CALL_EXPR_FN (t));
908 if (type && TREE_CODE (type) == POINTER_TYPE)
909 flags = flags_from_decl_or_type (TREE_TYPE (type));
910 else
911 flags = 0;
912 if (CALL_EXPR_BY_DESCRIPTOR (t))
913 flags |= ECF_BY_DESCRIPTOR;
916 return flags;
919 /* Return true if TYPE should be passed by invisible reference. */
921 bool
922 pass_by_reference (CUMULATIVE_ARGS *ca, machine_mode mode,
923 tree type, bool named_arg)
925 if (type)
927 /* If this type contains non-trivial constructors, then it is
928 forbidden for the middle-end to create any new copies. */
929 if (TREE_ADDRESSABLE (type))
930 return true;
932 /* GCC post 3.4 passes *all* variable sized types by reference. */
933 if (!TYPE_SIZE (type) || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
934 return true;
936 /* If a record type should be passed the same as its first (and only)
937 member, use the type and mode of that member. */
938 if (TREE_CODE (type) == RECORD_TYPE && TYPE_TRANSPARENT_AGGR (type))
940 type = TREE_TYPE (first_field (type));
941 mode = TYPE_MODE (type);
945 return targetm.calls.pass_by_reference (pack_cumulative_args (ca), mode,
946 type, named_arg);
949 /* Return true if TYPE, which is passed by reference, should be callee
950 copied instead of caller copied. */
952 bool
953 reference_callee_copied (CUMULATIVE_ARGS *ca, machine_mode mode,
954 tree type, bool named_arg)
956 if (type && TREE_ADDRESSABLE (type))
957 return false;
958 return targetm.calls.callee_copies (pack_cumulative_args (ca), mode, type,
959 named_arg);
963 /* Precompute all register parameters as described by ARGS, storing values
964 into fields within the ARGS array.
966 NUM_ACTUALS indicates the total number elements in the ARGS array.
968 Set REG_PARM_SEEN if we encounter a register parameter. */
970 static void
971 precompute_register_parameters (int num_actuals, struct arg_data *args,
972 int *reg_parm_seen)
974 int i;
976 *reg_parm_seen = 0;
978 for (i = 0; i < num_actuals; i++)
979 if (args[i].reg != 0 && ! args[i].pass_on_stack)
981 *reg_parm_seen = 1;
983 if (args[i].value == 0)
985 push_temp_slots ();
986 args[i].value = expand_normal (args[i].tree_value);
987 preserve_temp_slots (args[i].value);
988 pop_temp_slots ();
991 /* If we are to promote the function arg to a wider mode,
992 do it now. */
994 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
995 args[i].value
996 = convert_modes (args[i].mode,
997 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
998 args[i].value, args[i].unsignedp);
1000 /* If the value is a non-legitimate constant, force it into a
1001 pseudo now. TLS symbols sometimes need a call to resolve. */
1002 if (CONSTANT_P (args[i].value)
1003 && !targetm.legitimate_constant_p (args[i].mode, args[i].value))
1004 args[i].value = force_reg (args[i].mode, args[i].value);
1006 /* If we're going to have to load the value by parts, pull the
1007 parts into pseudos. The part extraction process can involve
1008 non-trivial computation. */
1009 if (GET_CODE (args[i].reg) == PARALLEL)
1011 tree type = TREE_TYPE (args[i].tree_value);
1012 args[i].parallel_value
1013 = emit_group_load_into_temps (args[i].reg, args[i].value,
1014 type, int_size_in_bytes (type));
1017 /* If the value is expensive, and we are inside an appropriately
1018 short loop, put the value into a pseudo and then put the pseudo
1019 into the hard reg.
1021 For small register classes, also do this if this call uses
1022 register parameters. This is to avoid reload conflicts while
1023 loading the parameters registers. */
1025 else if ((! (REG_P (args[i].value)
1026 || (GET_CODE (args[i].value) == SUBREG
1027 && REG_P (SUBREG_REG (args[i].value)))))
1028 && args[i].mode != BLKmode
1029 && (set_src_cost (args[i].value, args[i].mode,
1030 optimize_insn_for_speed_p ())
1031 > COSTS_N_INSNS (1))
1032 && ((*reg_parm_seen
1033 && targetm.small_register_classes_for_mode_p (args[i].mode))
1034 || optimize))
1035 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
1039 #ifdef REG_PARM_STACK_SPACE
1041 /* The argument list is the property of the called routine and it
1042 may clobber it. If the fixed area has been used for previous
1043 parameters, we must save and restore it. */
1045 static rtx
1046 save_fixed_argument_area (int reg_parm_stack_space, rtx argblock, int *low_to_save, int *high_to_save)
1048 unsigned int low;
1049 unsigned int high;
1051 /* Compute the boundary of the area that needs to be saved, if any. */
1052 high = reg_parm_stack_space;
1053 if (ARGS_GROW_DOWNWARD)
1054 high += 1;
1056 if (high > highest_outgoing_arg_in_use)
1057 high = highest_outgoing_arg_in_use;
1059 for (low = 0; low < high; low++)
1060 if (stack_usage_map[low] != 0 || low >= stack_usage_watermark)
1062 int num_to_save;
1063 machine_mode save_mode;
1064 int delta;
1065 rtx addr;
1066 rtx stack_area;
1067 rtx save_area;
1069 while (stack_usage_map[--high] == 0)
1072 *low_to_save = low;
1073 *high_to_save = high;
1075 num_to_save = high - low + 1;
1077 /* If we don't have the required alignment, must do this
1078 in BLKmode. */
1079 scalar_int_mode imode;
1080 if (int_mode_for_size (num_to_save * BITS_PER_UNIT, 1).exists (&imode)
1081 && (low & (MIN (GET_MODE_SIZE (imode),
1082 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)) == 0)
1083 save_mode = imode;
1084 else
1085 save_mode = BLKmode;
1087 if (ARGS_GROW_DOWNWARD)
1088 delta = -high;
1089 else
1090 delta = low;
1092 addr = plus_constant (Pmode, argblock, delta);
1093 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
1095 set_mem_align (stack_area, PARM_BOUNDARY);
1096 if (save_mode == BLKmode)
1098 save_area = assign_stack_temp (BLKmode, num_to_save);
1099 emit_block_move (validize_mem (save_area), stack_area,
1100 GEN_INT (num_to_save), BLOCK_OP_CALL_PARM);
1102 else
1104 save_area = gen_reg_rtx (save_mode);
1105 emit_move_insn (save_area, stack_area);
1108 return save_area;
1111 return NULL_RTX;
1114 static void
1115 restore_fixed_argument_area (rtx save_area, rtx argblock, int high_to_save, int low_to_save)
1117 machine_mode save_mode = GET_MODE (save_area);
1118 int delta;
1119 rtx addr, stack_area;
1121 if (ARGS_GROW_DOWNWARD)
1122 delta = -high_to_save;
1123 else
1124 delta = low_to_save;
1126 addr = plus_constant (Pmode, argblock, delta);
1127 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
1128 set_mem_align (stack_area, PARM_BOUNDARY);
1130 if (save_mode != BLKmode)
1131 emit_move_insn (stack_area, save_area);
1132 else
1133 emit_block_move (stack_area, validize_mem (save_area),
1134 GEN_INT (high_to_save - low_to_save + 1),
1135 BLOCK_OP_CALL_PARM);
1137 #endif /* REG_PARM_STACK_SPACE */
1139 /* If any elements in ARGS refer to parameters that are to be passed in
1140 registers, but not in memory, and whose alignment does not permit a
1141 direct copy into registers. Copy the values into a group of pseudos
1142 which we will later copy into the appropriate hard registers.
1144 Pseudos for each unaligned argument will be stored into the array
1145 args[argnum].aligned_regs. The caller is responsible for deallocating
1146 the aligned_regs array if it is nonzero. */
1148 static void
1149 store_unaligned_arguments_into_pseudos (struct arg_data *args, int num_actuals)
1151 int i, j;
1153 for (i = 0; i < num_actuals; i++)
1154 if (args[i].reg != 0 && ! args[i].pass_on_stack
1155 && GET_CODE (args[i].reg) != PARALLEL
1156 && args[i].mode == BLKmode
1157 && MEM_P (args[i].value)
1158 && (MEM_ALIGN (args[i].value)
1159 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
1161 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1162 int endian_correction = 0;
1164 if (args[i].partial)
1166 gcc_assert (args[i].partial % UNITS_PER_WORD == 0);
1167 args[i].n_aligned_regs = args[i].partial / UNITS_PER_WORD;
1169 else
1171 args[i].n_aligned_regs
1172 = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1175 args[i].aligned_regs = XNEWVEC (rtx, args[i].n_aligned_regs);
1177 /* Structures smaller than a word are normally aligned to the
1178 least significant byte. On a BYTES_BIG_ENDIAN machine,
1179 this means we must skip the empty high order bytes when
1180 calculating the bit offset. */
1181 if (bytes < UNITS_PER_WORD
1182 #ifdef BLOCK_REG_PADDING
1183 && (BLOCK_REG_PADDING (args[i].mode,
1184 TREE_TYPE (args[i].tree_value), 1)
1185 == PAD_DOWNWARD)
1186 #else
1187 && BYTES_BIG_ENDIAN
1188 #endif
1190 endian_correction = BITS_PER_WORD - bytes * BITS_PER_UNIT;
1192 for (j = 0; j < args[i].n_aligned_regs; j++)
1194 rtx reg = gen_reg_rtx (word_mode);
1195 rtx word = operand_subword_force (args[i].value, j, BLKmode);
1196 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
1198 args[i].aligned_regs[j] = reg;
1199 word = extract_bit_field (word, bitsize, 0, 1, NULL_RTX,
1200 word_mode, word_mode, false, NULL);
1202 /* There is no need to restrict this code to loading items
1203 in TYPE_ALIGN sized hunks. The bitfield instructions can
1204 load up entire word sized registers efficiently.
1206 ??? This may not be needed anymore.
1207 We use to emit a clobber here but that doesn't let later
1208 passes optimize the instructions we emit. By storing 0 into
1209 the register later passes know the first AND to zero out the
1210 bitfield being set in the register is unnecessary. The store
1211 of 0 will be deleted as will at least the first AND. */
1213 emit_move_insn (reg, const0_rtx);
1215 bytes -= bitsize / BITS_PER_UNIT;
1216 store_bit_field (reg, bitsize, endian_correction, 0, 0,
1217 word_mode, word, false);
1222 /* The limit set by -Walloc-larger-than=. */
1223 static GTY(()) tree alloc_object_size_limit;
1225 /* Initialize ALLOC_OBJECT_SIZE_LIMIT based on the -Walloc-size-larger-than=
1226 setting if the option is specified, or to the maximum object size if it
1227 is not. Return the initialized value. */
1229 static tree
1230 alloc_max_size (void)
1232 if (!alloc_object_size_limit)
1234 alloc_object_size_limit = max_object_size ();
1236 if (warn_alloc_size_limit)
1238 char *end = NULL;
1239 errno = 0;
1240 unsigned HOST_WIDE_INT unit = 1;
1241 unsigned HOST_WIDE_INT limit
1242 = strtoull (warn_alloc_size_limit, &end, 10);
1244 if (!errno)
1246 if (end && *end)
1248 /* Numeric option arguments are at most INT_MAX. Make it
1249 possible to specify a larger value by accepting common
1250 suffixes. */
1251 if (!strcmp (end, "kB"))
1252 unit = 1000;
1253 else if (!strcasecmp (end, "KiB") || strcmp (end, "KB"))
1254 unit = 1024;
1255 else if (!strcmp (end, "MB"))
1256 unit = HOST_WIDE_INT_UC (1000) * 1000;
1257 else if (!strcasecmp (end, "MiB"))
1258 unit = HOST_WIDE_INT_UC (1024) * 1024;
1259 else if (!strcasecmp (end, "GB"))
1260 unit = HOST_WIDE_INT_UC (1000) * 1000 * 1000;
1261 else if (!strcasecmp (end, "GiB"))
1262 unit = HOST_WIDE_INT_UC (1024) * 1024 * 1024;
1263 else if (!strcasecmp (end, "TB"))
1264 unit = HOST_WIDE_INT_UC (1000) * 1000 * 1000 * 1000;
1265 else if (!strcasecmp (end, "TiB"))
1266 unit = HOST_WIDE_INT_UC (1024) * 1024 * 1024 * 1024;
1267 else if (!strcasecmp (end, "PB"))
1268 unit = HOST_WIDE_INT_UC (1000) * 1000 * 1000 * 1000 * 1000;
1269 else if (!strcasecmp (end, "PiB"))
1270 unit = HOST_WIDE_INT_UC (1024) * 1024 * 1024 * 1024 * 1024;
1271 else if (!strcasecmp (end, "EB"))
1272 unit = HOST_WIDE_INT_UC (1000) * 1000 * 1000 * 1000 * 1000
1273 * 1000;
1274 else if (!strcasecmp (end, "EiB"))
1275 unit = HOST_WIDE_INT_UC (1024) * 1024 * 1024 * 1024 * 1024
1276 * 1024;
1277 else
1278 unit = 0;
1281 if (unit)
1283 widest_int w = wi::mul (limit, unit);
1284 if (w < wi::to_widest (alloc_object_size_limit))
1285 alloc_object_size_limit
1286 = wide_int_to_tree (ptrdiff_type_node, w);
1291 return alloc_object_size_limit;
1294 /* Return true when EXP's range can be determined and set RANGE[] to it
1295 after adjusting it if necessary to make EXP a represents a valid size
1296 of object, or a valid size argument to an allocation function declared
1297 with attribute alloc_size (whose argument may be signed), or to a string
1298 manipulation function like memset. When ALLOW_ZERO is true, allow
1299 returning a range of [0, 0] for a size in an anti-range [1, N] where
1300 N > PTRDIFF_MAX. A zero range is a (nearly) invalid argument to
1301 allocation functions like malloc but it is a valid argument to
1302 functions like memset. */
1304 bool
1305 get_size_range (tree exp, tree range[2], bool allow_zero /* = false */)
1307 if (tree_fits_uhwi_p (exp))
1309 /* EXP is a constant. */
1310 range[0] = range[1] = exp;
1311 return true;
1314 tree exptype = TREE_TYPE (exp);
1315 bool integral = INTEGRAL_TYPE_P (exptype);
1317 wide_int min, max;
1318 enum value_range_type range_type;
1320 if (TREE_CODE (exp) == SSA_NAME && integral)
1321 range_type = get_range_info (exp, &min, &max);
1322 else
1323 range_type = VR_VARYING;
1325 if (range_type == VR_VARYING)
1327 if (integral)
1329 /* Use the full range of the type of the expression when
1330 no value range information is available. */
1331 range[0] = TYPE_MIN_VALUE (exptype);
1332 range[1] = TYPE_MAX_VALUE (exptype);
1333 return true;
1336 range[0] = NULL_TREE;
1337 range[1] = NULL_TREE;
1338 return false;
1341 unsigned expprec = TYPE_PRECISION (exptype);
1343 bool signed_p = !TYPE_UNSIGNED (exptype);
1345 if (range_type == VR_ANTI_RANGE)
1347 if (signed_p)
1349 if (wi::les_p (max, 0))
1351 /* EXP is not in a strictly negative range. That means
1352 it must be in some (not necessarily strictly) positive
1353 range which includes zero. Since in signed to unsigned
1354 conversions negative values end up converted to large
1355 positive values, and otherwise they are not valid sizes,
1356 the resulting range is in both cases [0, TYPE_MAX]. */
1357 min = wi::zero (expprec);
1358 max = wi::to_wide (TYPE_MAX_VALUE (exptype));
1360 else if (wi::les_p (min - 1, 0))
1362 /* EXP is not in a negative-positive range. That means EXP
1363 is either negative, or greater than max. Since negative
1364 sizes are invalid make the range [MAX + 1, TYPE_MAX]. */
1365 min = max + 1;
1366 max = wi::to_wide (TYPE_MAX_VALUE (exptype));
1368 else
1370 max = min - 1;
1371 min = wi::zero (expprec);
1374 else if (wi::eq_p (0, min - 1))
1376 /* EXP is unsigned and not in the range [1, MAX]. That means
1377 it's either zero or greater than MAX. Even though 0 would
1378 normally be detected by -Walloc-zero, unless ALLOW_ZERO
1379 is true, set the range to [MAX, TYPE_MAX] so that when MAX
1380 is greater than the limit the whole range is diagnosed. */
1381 if (allow_zero)
1382 min = max = wi::zero (expprec);
1383 else
1385 min = max + 1;
1386 max = wi::to_wide (TYPE_MAX_VALUE (exptype));
1389 else
1391 max = min - 1;
1392 min = wi::zero (expprec);
1396 range[0] = wide_int_to_tree (exptype, min);
1397 range[1] = wide_int_to_tree (exptype, max);
1399 return true;
1402 /* Diagnose a call EXP to function FN decorated with attribute alloc_size
1403 whose argument numbers given by IDX with values given by ARGS exceed
1404 the maximum object size or cause an unsigned oveflow (wrapping) when
1405 multiplied. When ARGS[0] is null the function does nothing. ARGS[1]
1406 may be null for functions like malloc, and non-null for those like
1407 calloc that are decorated with a two-argument attribute alloc_size. */
1409 void
1410 maybe_warn_alloc_args_overflow (tree fn, tree exp, tree args[2], int idx[2])
1412 /* The range each of the (up to) two arguments is known to be in. */
1413 tree argrange[2][2] = { { NULL_TREE, NULL_TREE }, { NULL_TREE, NULL_TREE } };
1415 /* Maximum object size set by -Walloc-size-larger-than= or SIZE_MAX / 2. */
1416 tree maxobjsize = alloc_max_size ();
1418 location_t loc = EXPR_LOCATION (exp);
1420 bool warned = false;
1422 /* Validate each argument individually. */
1423 for (unsigned i = 0; i != 2 && args[i]; ++i)
1425 if (TREE_CODE (args[i]) == INTEGER_CST)
1427 argrange[i][0] = args[i];
1428 argrange[i][1] = args[i];
1430 if (tree_int_cst_lt (args[i], integer_zero_node))
1432 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
1433 "%Kargument %i value %qE is negative",
1434 exp, idx[i] + 1, args[i]);
1436 else if (integer_zerop (args[i]))
1438 /* Avoid issuing -Walloc-zero for allocation functions other
1439 than __builtin_alloca that are declared with attribute
1440 returns_nonnull because there's no portability risk. This
1441 avoids warning for such calls to libiberty's xmalloc and
1442 friends.
1443 Also avoid issuing the warning for calls to function named
1444 "alloca". */
1445 if ((DECL_FUNCTION_CODE (fn) == BUILT_IN_ALLOCA
1446 && IDENTIFIER_LENGTH (DECL_NAME (fn)) != 6)
1447 || (DECL_FUNCTION_CODE (fn) != BUILT_IN_ALLOCA
1448 && !lookup_attribute ("returns_nonnull",
1449 TYPE_ATTRIBUTES (TREE_TYPE (fn)))))
1450 warned = warning_at (loc, OPT_Walloc_zero,
1451 "%Kargument %i value is zero",
1452 exp, idx[i] + 1);
1454 else if (tree_int_cst_lt (maxobjsize, args[i]))
1456 /* G++ emits calls to ::operator new[](SIZE_MAX) in C++98
1457 mode and with -fno-exceptions as a way to indicate array
1458 size overflow. There's no good way to detect C++98 here
1459 so avoid diagnosing these calls for all C++ modes. */
1460 if (i == 0
1461 && !args[1]
1462 && lang_GNU_CXX ()
1463 && DECL_IS_OPERATOR_NEW (fn)
1464 && integer_all_onesp (args[i]))
1465 continue;
1467 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
1468 "%Kargument %i value %qE exceeds "
1469 "maximum object size %E",
1470 exp, idx[i] + 1, args[i], maxobjsize);
1473 else if (TREE_CODE (args[i]) == SSA_NAME
1474 && get_size_range (args[i], argrange[i]))
1476 /* Verify that the argument's range is not negative (including
1477 upper bound of zero). */
1478 if (tree_int_cst_lt (argrange[i][0], integer_zero_node)
1479 && tree_int_cst_le (argrange[i][1], integer_zero_node))
1481 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
1482 "%Kargument %i range [%E, %E] is negative",
1483 exp, idx[i] + 1,
1484 argrange[i][0], argrange[i][1]);
1486 else if (tree_int_cst_lt (maxobjsize, argrange[i][0]))
1488 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
1489 "%Kargument %i range [%E, %E] exceeds "
1490 "maximum object size %E",
1491 exp, idx[i] + 1,
1492 argrange[i][0], argrange[i][1],
1493 maxobjsize);
1498 if (!argrange[0])
1499 return;
1501 /* For a two-argument alloc_size, validate the product of the two
1502 arguments if both of their values or ranges are known. */
1503 if (!warned && tree_fits_uhwi_p (argrange[0][0])
1504 && argrange[1][0] && tree_fits_uhwi_p (argrange[1][0])
1505 && !integer_onep (argrange[0][0])
1506 && !integer_onep (argrange[1][0]))
1508 /* Check for overflow in the product of a function decorated with
1509 attribute alloc_size (X, Y). */
1510 unsigned szprec = TYPE_PRECISION (size_type_node);
1511 wide_int x = wi::to_wide (argrange[0][0], szprec);
1512 wide_int y = wi::to_wide (argrange[1][0], szprec);
1514 bool vflow;
1515 wide_int prod = wi::umul (x, y, &vflow);
1517 if (vflow)
1518 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
1519 "%Kproduct %<%E * %E%> of arguments %i and %i "
1520 "exceeds %<SIZE_MAX%>",
1521 exp, argrange[0][0], argrange[1][0],
1522 idx[0] + 1, idx[1] + 1);
1523 else if (wi::ltu_p (wi::to_wide (maxobjsize, szprec), prod))
1524 warned = warning_at (loc, OPT_Walloc_size_larger_than_,
1525 "%Kproduct %<%E * %E%> of arguments %i and %i "
1526 "exceeds maximum object size %E",
1527 exp, argrange[0][0], argrange[1][0],
1528 idx[0] + 1, idx[1] + 1,
1529 maxobjsize);
1531 if (warned)
1533 /* Print the full range of each of the two arguments to make
1534 it clear when it is, in fact, in a range and not constant. */
1535 if (argrange[0][0] != argrange [0][1])
1536 inform (loc, "argument %i in the range [%E, %E]",
1537 idx[0] + 1, argrange[0][0], argrange[0][1]);
1538 if (argrange[1][0] != argrange [1][1])
1539 inform (loc, "argument %i in the range [%E, %E]",
1540 idx[1] + 1, argrange[1][0], argrange[1][1]);
1544 if (warned)
1546 location_t fnloc = DECL_SOURCE_LOCATION (fn);
1548 if (DECL_IS_BUILTIN (fn))
1549 inform (loc,
1550 "in a call to built-in allocation function %qD", fn);
1551 else
1552 inform (fnloc,
1553 "in a call to allocation function %qD declared here", fn);
1557 /* If EXPR refers to a character array or pointer declared attribute
1558 nonstring return a decl for that array or pointer and set *REF to
1559 the referenced enclosing object or pointer. Otherwise returns
1560 null. */
1562 tree
1563 get_attr_nonstring_decl (tree expr, tree *ref)
1565 tree decl = expr;
1566 if (TREE_CODE (decl) == SSA_NAME)
1568 gimple *def = SSA_NAME_DEF_STMT (decl);
1570 if (is_gimple_assign (def))
1572 tree_code code = gimple_assign_rhs_code (def);
1573 if (code == ADDR_EXPR
1574 || code == COMPONENT_REF
1575 || code == VAR_DECL)
1576 decl = gimple_assign_rhs1 (def);
1578 else if (tree var = SSA_NAME_VAR (decl))
1579 decl = var;
1582 if (TREE_CODE (decl) == ADDR_EXPR)
1583 decl = TREE_OPERAND (decl, 0);
1585 if (ref)
1586 *ref = decl;
1588 if (TREE_CODE (decl) == COMPONENT_REF)
1589 decl = TREE_OPERAND (decl, 1);
1591 if (DECL_P (decl)
1592 && lookup_attribute ("nonstring", DECL_ATTRIBUTES (decl)))
1593 return decl;
1595 return NULL_TREE;
1598 /* Warn about passing a non-string array/pointer to a function that
1599 expects a nul-terminated string argument. */
1601 void
1602 maybe_warn_nonstring_arg (tree fndecl, tree exp)
1604 if (!fndecl || DECL_BUILT_IN_CLASS (fndecl) != BUILT_IN_NORMAL)
1605 return;
1607 bool with_bounds = CALL_WITH_BOUNDS_P (exp);
1609 /* The bound argument to a bounded string function like strncpy. */
1610 tree bound = NULL_TREE;
1612 /* It's safe to call "bounded" string functions with a non-string
1613 argument since the functions provide an explicit bound for this
1614 purpose. */
1615 switch (DECL_FUNCTION_CODE (fndecl))
1617 case BUILT_IN_STPNCPY:
1618 case BUILT_IN_STPNCPY_CHK:
1619 case BUILT_IN_STRNCMP:
1620 case BUILT_IN_STRNCASECMP:
1621 case BUILT_IN_STRNCPY:
1622 case BUILT_IN_STRNCPY_CHK:
1623 bound = CALL_EXPR_ARG (exp, with_bounds ? 4 : 2);
1624 break;
1626 case BUILT_IN_STRNDUP:
1627 bound = CALL_EXPR_ARG (exp, with_bounds ? 2 : 1);
1628 break;
1630 default:
1631 break;
1634 /* Determine the range of the bound argument (if specified). */
1635 tree bndrng[2] = { NULL_TREE, NULL_TREE };
1636 if (bound)
1637 get_size_range (bound, bndrng);
1639 /* Iterate over the built-in function's formal arguments and check
1640 each const char* against the actual argument. If the actual
1641 argument is declared attribute non-string issue a warning unless
1642 the argument's maximum length is bounded. */
1643 function_args_iterator it;
1644 function_args_iter_init (&it, TREE_TYPE (fndecl));
1646 for (unsigned argno = 0; ; ++argno, function_args_iter_next (&it))
1648 tree argtype = function_args_iter_cond (&it);
1649 if (!argtype)
1650 break;
1652 if (TREE_CODE (argtype) != POINTER_TYPE)
1653 continue;
1655 argtype = TREE_TYPE (argtype);
1657 if (TREE_CODE (argtype) != INTEGER_TYPE
1658 || !TYPE_READONLY (argtype))
1659 continue;
1661 argtype = TYPE_MAIN_VARIANT (argtype);
1662 if (argtype != char_type_node)
1663 continue;
1665 tree callarg = CALL_EXPR_ARG (exp, argno);
1666 if (TREE_CODE (callarg) == ADDR_EXPR)
1667 callarg = TREE_OPERAND (callarg, 0);
1669 /* See if the destination is declared with attribute "nonstring". */
1670 tree decl = get_attr_nonstring_decl (callarg);
1671 if (!decl)
1672 continue;
1674 tree type = TREE_TYPE (decl);
1676 offset_int wibnd = 0;
1677 if (bndrng[0])
1678 wibnd = wi::to_offset (bndrng[0]);
1680 offset_int asize = wibnd;
1682 if (TREE_CODE (type) == ARRAY_TYPE)
1683 if (tree arrbnd = TYPE_DOMAIN (type))
1685 if ((arrbnd = TYPE_MAX_VALUE (arrbnd)))
1686 asize = wi::to_offset (arrbnd) + 1;
1689 location_t loc = EXPR_LOCATION (exp);
1691 bool warned = false;
1693 if (wi::ltu_p (asize, wibnd))
1694 warned = warning_at (loc, OPT_Wstringop_overflow_,
1695 "%qD argument %i declared attribute %<nonstring%> "
1696 "is smaller than the specified bound %E",
1697 fndecl, argno + 1, bndrng[0]);
1698 else if (!bound)
1699 warned = warning_at (loc, OPT_Wstringop_overflow_,
1700 "%qD argument %i declared attribute %<nonstring%>",
1701 fndecl, argno + 1);
1703 if (warned)
1704 inform (DECL_SOURCE_LOCATION (decl),
1705 "argument %qD declared here", decl);
1709 /* Issue an error if CALL_EXPR was flagged as requiring
1710 tall-call optimization. */
1712 static void
1713 maybe_complain_about_tail_call (tree call_expr, const char *reason)
1715 gcc_assert (TREE_CODE (call_expr) == CALL_EXPR);
1716 if (!CALL_EXPR_MUST_TAIL_CALL (call_expr))
1717 return;
1719 error_at (EXPR_LOCATION (call_expr), "cannot tail-call: %s", reason);
1722 /* Fill in ARGS_SIZE and ARGS array based on the parameters found in
1723 CALL_EXPR EXP.
1725 NUM_ACTUALS is the total number of parameters.
1727 N_NAMED_ARGS is the total number of named arguments.
1729 STRUCT_VALUE_ADDR_VALUE is the implicit argument for a struct return
1730 value, or null.
1732 FNDECL is the tree code for the target of this call (if known)
1734 ARGS_SO_FAR holds state needed by the target to know where to place
1735 the next argument.
1737 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
1738 for arguments which are passed in registers.
1740 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
1741 and may be modified by this routine.
1743 OLD_PENDING_ADJ, MUST_PREALLOCATE and FLAGS are pointers to integer
1744 flags which may be modified by this routine.
1746 MAY_TAILCALL is cleared if we encounter an invisible pass-by-reference
1747 that requires allocation of stack space.
1749 CALL_FROM_THUNK_P is true if this call is the jump from a thunk to
1750 the thunked-to function. */
1752 static void
1753 initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED,
1754 struct arg_data *args,
1755 struct args_size *args_size,
1756 int n_named_args ATTRIBUTE_UNUSED,
1757 tree exp, tree struct_value_addr_value,
1758 tree fndecl, tree fntype,
1759 cumulative_args_t args_so_far,
1760 int reg_parm_stack_space,
1761 rtx *old_stack_level,
1762 poly_int64_pod *old_pending_adj,
1763 int *must_preallocate, int *ecf_flags,
1764 bool *may_tailcall, bool call_from_thunk_p)
1766 CUMULATIVE_ARGS *args_so_far_pnt = get_cumulative_args (args_so_far);
1767 location_t loc = EXPR_LOCATION (exp);
1769 /* Count arg position in order args appear. */
1770 int argpos;
1772 int i;
1774 args_size->constant = 0;
1775 args_size->var = 0;
1777 bitmap_obstack_initialize (NULL);
1779 /* In this loop, we consider args in the order they are written.
1780 We fill up ARGS from the back. */
1782 i = num_actuals - 1;
1784 int j = i, ptr_arg = -1;
1785 call_expr_arg_iterator iter;
1786 tree arg;
1787 bitmap slots = NULL;
1789 if (struct_value_addr_value)
1791 args[j].tree_value = struct_value_addr_value;
1792 j--;
1794 /* If we pass structure address then we need to
1795 create bounds for it. Since created bounds is
1796 a call statement, we expand it right here to avoid
1797 fixing all other places where it may be expanded. */
1798 if (CALL_WITH_BOUNDS_P (exp))
1800 args[j].value = gen_reg_rtx (targetm.chkp_bound_mode ());
1801 args[j].tree_value
1802 = chkp_make_bounds_for_struct_addr (struct_value_addr_value);
1803 expand_expr_real (args[j].tree_value, args[j].value, VOIDmode,
1804 EXPAND_NORMAL, 0, false);
1805 args[j].pointer_arg = j + 1;
1806 j--;
1809 argpos = 0;
1810 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
1812 tree argtype = TREE_TYPE (arg);
1814 /* Remember last param with pointer and associate it
1815 with following pointer bounds. */
1816 if (CALL_WITH_BOUNDS_P (exp)
1817 && chkp_type_has_pointer (argtype))
1819 if (slots)
1820 BITMAP_FREE (slots);
1821 ptr_arg = j;
1822 if (!BOUNDED_TYPE_P (argtype))
1824 slots = BITMAP_ALLOC (NULL);
1825 chkp_find_bound_slots (argtype, slots);
1828 else if (CALL_WITH_BOUNDS_P (exp)
1829 && pass_by_reference (NULL, TYPE_MODE (argtype), argtype,
1830 argpos < n_named_args))
1832 if (slots)
1833 BITMAP_FREE (slots);
1834 ptr_arg = j;
1836 else if (POINTER_BOUNDS_TYPE_P (argtype))
1838 /* We expect bounds in instrumented calls only.
1839 Otherwise it is a sign we lost flag due to some optimization
1840 and may emit call args incorrectly. */
1841 gcc_assert (CALL_WITH_BOUNDS_P (exp));
1843 /* For structures look for the next available pointer. */
1844 if (ptr_arg != -1 && slots)
1846 unsigned bnd_no = bitmap_first_set_bit (slots);
1847 args[j].pointer_offset =
1848 bnd_no * POINTER_SIZE / BITS_PER_UNIT;
1850 bitmap_clear_bit (slots, bnd_no);
1852 /* Check we have no more pointers in the structure. */
1853 if (bitmap_empty_p (slots))
1854 BITMAP_FREE (slots);
1856 args[j].pointer_arg = ptr_arg;
1858 /* Check we covered all pointers in the previous
1859 non bounds arg. */
1860 if (!slots)
1861 ptr_arg = -1;
1863 else
1864 ptr_arg = -1;
1866 if (targetm.calls.split_complex_arg
1867 && argtype
1868 && TREE_CODE (argtype) == COMPLEX_TYPE
1869 && targetm.calls.split_complex_arg (argtype))
1871 tree subtype = TREE_TYPE (argtype);
1872 args[j].tree_value = build1 (REALPART_EXPR, subtype, arg);
1873 j--;
1874 args[j].tree_value = build1 (IMAGPART_EXPR, subtype, arg);
1876 else
1877 args[j].tree_value = arg;
1878 j--;
1879 argpos++;
1882 if (slots)
1883 BITMAP_FREE (slots);
1886 bitmap_obstack_release (NULL);
1888 /* Extract attribute alloc_size and if set, store the indices of
1889 the corresponding arguments in ALLOC_IDX, and then the actual
1890 argument(s) at those indices in ALLOC_ARGS. */
1891 int alloc_idx[2] = { -1, -1 };
1892 if (tree alloc_size
1893 = (fndecl ? lookup_attribute ("alloc_size",
1894 TYPE_ATTRIBUTES (TREE_TYPE (fndecl)))
1895 : NULL_TREE))
1897 tree args = TREE_VALUE (alloc_size);
1898 alloc_idx[0] = TREE_INT_CST_LOW (TREE_VALUE (args)) - 1;
1899 if (TREE_CHAIN (args))
1900 alloc_idx[1] = TREE_INT_CST_LOW (TREE_VALUE (TREE_CHAIN (args))) - 1;
1903 /* Array for up to the two attribute alloc_size arguments. */
1904 tree alloc_args[] = { NULL_TREE, NULL_TREE };
1906 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
1907 for (argpos = 0; argpos < num_actuals; i--, argpos++)
1909 tree type = TREE_TYPE (args[i].tree_value);
1910 int unsignedp;
1911 machine_mode mode;
1913 /* Replace erroneous argument with constant zero. */
1914 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
1915 args[i].tree_value = integer_zero_node, type = integer_type_node;
1917 /* If TYPE is a transparent union or record, pass things the way
1918 we would pass the first field of the union or record. We have
1919 already verified that the modes are the same. */
1920 if ((TREE_CODE (type) == UNION_TYPE || TREE_CODE (type) == RECORD_TYPE)
1921 && TYPE_TRANSPARENT_AGGR (type))
1922 type = TREE_TYPE (first_field (type));
1924 /* Decide where to pass this arg.
1926 args[i].reg is nonzero if all or part is passed in registers.
1928 args[i].partial is nonzero if part but not all is passed in registers,
1929 and the exact value says how many bytes are passed in registers.
1931 args[i].pass_on_stack is nonzero if the argument must at least be
1932 computed on the stack. It may then be loaded back into registers
1933 if args[i].reg is nonzero.
1935 These decisions are driven by the FUNCTION_... macros and must agree
1936 with those made by function.c. */
1938 /* See if this argument should be passed by invisible reference. */
1939 if (pass_by_reference (args_so_far_pnt, TYPE_MODE (type),
1940 type, argpos < n_named_args))
1942 bool callee_copies;
1943 tree base = NULL_TREE;
1945 callee_copies
1946 = reference_callee_copied (args_so_far_pnt, TYPE_MODE (type),
1947 type, argpos < n_named_args);
1949 /* If we're compiling a thunk, pass through invisible references
1950 instead of making a copy. */
1951 if (call_from_thunk_p
1952 || (callee_copies
1953 && !TREE_ADDRESSABLE (type)
1954 && (base = get_base_address (args[i].tree_value))
1955 && TREE_CODE (base) != SSA_NAME
1956 && (!DECL_P (base) || MEM_P (DECL_RTL (base)))))
1958 /* We may have turned the parameter value into an SSA name.
1959 Go back to the original parameter so we can take the
1960 address. */
1961 if (TREE_CODE (args[i].tree_value) == SSA_NAME)
1963 gcc_assert (SSA_NAME_IS_DEFAULT_DEF (args[i].tree_value));
1964 args[i].tree_value = SSA_NAME_VAR (args[i].tree_value);
1965 gcc_assert (TREE_CODE (args[i].tree_value) == PARM_DECL);
1967 /* Argument setup code may have copied the value to register. We
1968 revert that optimization now because the tail call code must
1969 use the original location. */
1970 if (TREE_CODE (args[i].tree_value) == PARM_DECL
1971 && !MEM_P (DECL_RTL (args[i].tree_value))
1972 && DECL_INCOMING_RTL (args[i].tree_value)
1973 && MEM_P (DECL_INCOMING_RTL (args[i].tree_value)))
1974 set_decl_rtl (args[i].tree_value,
1975 DECL_INCOMING_RTL (args[i].tree_value));
1977 mark_addressable (args[i].tree_value);
1979 /* We can't use sibcalls if a callee-copied argument is
1980 stored in the current function's frame. */
1981 if (!call_from_thunk_p && DECL_P (base) && !TREE_STATIC (base))
1983 *may_tailcall = false;
1984 maybe_complain_about_tail_call (exp,
1985 "a callee-copied argument is"
1986 " stored in the current "
1987 " function's frame");
1990 args[i].tree_value = build_fold_addr_expr_loc (loc,
1991 args[i].tree_value);
1992 type = TREE_TYPE (args[i].tree_value);
1994 if (*ecf_flags & ECF_CONST)
1995 *ecf_flags &= ~(ECF_CONST | ECF_LOOPING_CONST_OR_PURE);
1997 else
1999 /* We make a copy of the object and pass the address to the
2000 function being called. */
2001 rtx copy;
2003 if (!COMPLETE_TYPE_P (type)
2004 || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST
2005 || (flag_stack_check == GENERIC_STACK_CHECK
2006 && compare_tree_int (TYPE_SIZE_UNIT (type),
2007 STACK_CHECK_MAX_VAR_SIZE) > 0))
2009 /* This is a variable-sized object. Make space on the stack
2010 for it. */
2011 rtx size_rtx = expr_size (args[i].tree_value);
2013 if (*old_stack_level == 0)
2015 emit_stack_save (SAVE_BLOCK, old_stack_level);
2016 *old_pending_adj = pending_stack_adjust;
2017 pending_stack_adjust = 0;
2020 /* We can pass TRUE as the 4th argument because we just
2021 saved the stack pointer and will restore it right after
2022 the call. */
2023 copy = allocate_dynamic_stack_space (size_rtx,
2024 TYPE_ALIGN (type),
2025 TYPE_ALIGN (type),
2026 max_int_size_in_bytes
2027 (type),
2028 true);
2029 copy = gen_rtx_MEM (BLKmode, copy);
2030 set_mem_attributes (copy, type, 1);
2032 else
2033 copy = assign_temp (type, 1, 0);
2035 store_expr (args[i].tree_value, copy, 0, false, false);
2037 /* Just change the const function to pure and then let
2038 the next test clear the pure based on
2039 callee_copies. */
2040 if (*ecf_flags & ECF_CONST)
2042 *ecf_flags &= ~ECF_CONST;
2043 *ecf_flags |= ECF_PURE;
2046 if (!callee_copies && *ecf_flags & ECF_PURE)
2047 *ecf_flags &= ~(ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
2049 args[i].tree_value
2050 = build_fold_addr_expr_loc (loc, make_tree (type, copy));
2051 type = TREE_TYPE (args[i].tree_value);
2052 *may_tailcall = false;
2053 maybe_complain_about_tail_call (exp,
2054 "argument must be passed"
2055 " by copying");
2059 unsignedp = TYPE_UNSIGNED (type);
2060 mode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
2061 fndecl ? TREE_TYPE (fndecl) : fntype, 0);
2063 args[i].unsignedp = unsignedp;
2064 args[i].mode = mode;
2066 targetm.calls.warn_parameter_passing_abi (args_so_far, type);
2068 args[i].reg = targetm.calls.function_arg (args_so_far, mode, type,
2069 argpos < n_named_args);
2071 if (args[i].reg && CONST_INT_P (args[i].reg))
2073 args[i].special_slot = args[i].reg;
2074 args[i].reg = NULL;
2077 /* If this is a sibling call and the machine has register windows, the
2078 register window has to be unwinded before calling the routine, so
2079 arguments have to go into the incoming registers. */
2080 if (targetm.calls.function_incoming_arg != targetm.calls.function_arg)
2081 args[i].tail_call_reg
2082 = targetm.calls.function_incoming_arg (args_so_far, mode, type,
2083 argpos < n_named_args);
2084 else
2085 args[i].tail_call_reg = args[i].reg;
2087 if (args[i].reg)
2088 args[i].partial
2089 = targetm.calls.arg_partial_bytes (args_so_far, mode, type,
2090 argpos < n_named_args);
2092 args[i].pass_on_stack = targetm.calls.must_pass_in_stack (mode, type);
2094 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
2095 it means that we are to pass this arg in the register(s) designated
2096 by the PARALLEL, but also to pass it in the stack. */
2097 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
2098 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
2099 args[i].pass_on_stack = 1;
2101 /* If this is an addressable type, we must preallocate the stack
2102 since we must evaluate the object into its final location.
2104 If this is to be passed in both registers and the stack, it is simpler
2105 to preallocate. */
2106 if (TREE_ADDRESSABLE (type)
2107 || (args[i].pass_on_stack && args[i].reg != 0))
2108 *must_preallocate = 1;
2110 /* No stack allocation and padding for bounds. */
2111 if (POINTER_BOUNDS_P (args[i].tree_value))
2113 /* Compute the stack-size of this argument. */
2114 else if (args[i].reg == 0 || args[i].partial != 0
2115 || reg_parm_stack_space > 0
2116 || args[i].pass_on_stack)
2117 locate_and_pad_parm (mode, type,
2118 #ifdef STACK_PARMS_IN_REG_PARM_AREA
2120 #else
2121 args[i].reg != 0,
2122 #endif
2123 reg_parm_stack_space,
2124 args[i].pass_on_stack ? 0 : args[i].partial,
2125 fndecl, args_size, &args[i].locate);
2126 #ifdef BLOCK_REG_PADDING
2127 else
2128 /* The argument is passed entirely in registers. See at which
2129 end it should be padded. */
2130 args[i].locate.where_pad =
2131 BLOCK_REG_PADDING (mode, type,
2132 int_size_in_bytes (type) <= UNITS_PER_WORD);
2133 #endif
2135 /* Update ARGS_SIZE, the total stack space for args so far. */
2137 args_size->constant += args[i].locate.size.constant;
2138 if (args[i].locate.size.var)
2139 ADD_PARM_SIZE (*args_size, args[i].locate.size.var);
2141 /* Increment ARGS_SO_FAR, which has info about which arg-registers
2142 have been used, etc. */
2144 targetm.calls.function_arg_advance (args_so_far, TYPE_MODE (type),
2145 type, argpos < n_named_args);
2147 /* Store argument values for functions decorated with attribute
2148 alloc_size. */
2149 if (argpos == alloc_idx[0])
2150 alloc_args[0] = args[i].tree_value;
2151 else if (argpos == alloc_idx[1])
2152 alloc_args[1] = args[i].tree_value;
2155 if (alloc_args[0])
2157 /* Check the arguments of functions decorated with attribute
2158 alloc_size. */
2159 maybe_warn_alloc_args_overflow (fndecl, exp, alloc_args, alloc_idx);
2162 /* Detect passing non-string arguments to functions expecting
2163 nul-terminated strings. */
2164 maybe_warn_nonstring_arg (fndecl, exp);
2167 /* Update ARGS_SIZE to contain the total size for the argument block.
2168 Return the original constant component of the argument block's size.
2170 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
2171 for arguments passed in registers. */
2173 static poly_int64
2174 compute_argument_block_size (int reg_parm_stack_space,
2175 struct args_size *args_size,
2176 tree fndecl ATTRIBUTE_UNUSED,
2177 tree fntype ATTRIBUTE_UNUSED,
2178 int preferred_stack_boundary ATTRIBUTE_UNUSED)
2180 poly_int64 unadjusted_args_size = args_size->constant;
2182 /* For accumulate outgoing args mode we don't need to align, since the frame
2183 will be already aligned. Align to STACK_BOUNDARY in order to prevent
2184 backends from generating misaligned frame sizes. */
2185 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
2186 preferred_stack_boundary = STACK_BOUNDARY;
2188 /* Compute the actual size of the argument block required. The variable
2189 and constant sizes must be combined, the size may have to be rounded,
2190 and there may be a minimum required size. */
2192 if (args_size->var)
2194 args_size->var = ARGS_SIZE_TREE (*args_size);
2195 args_size->constant = 0;
2197 preferred_stack_boundary /= BITS_PER_UNIT;
2198 if (preferred_stack_boundary > 1)
2200 /* We don't handle this case yet. To handle it correctly we have
2201 to add the delta, round and subtract the delta.
2202 Currently no machine description requires this support. */
2203 gcc_assert (multiple_p (stack_pointer_delta,
2204 preferred_stack_boundary));
2205 args_size->var = round_up (args_size->var, preferred_stack_boundary);
2208 if (reg_parm_stack_space > 0)
2210 args_size->var
2211 = size_binop (MAX_EXPR, args_size->var,
2212 ssize_int (reg_parm_stack_space));
2214 /* The area corresponding to register parameters is not to count in
2215 the size of the block we need. So make the adjustment. */
2216 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
2217 args_size->var
2218 = size_binop (MINUS_EXPR, args_size->var,
2219 ssize_int (reg_parm_stack_space));
2222 else
2224 preferred_stack_boundary /= BITS_PER_UNIT;
2225 if (preferred_stack_boundary < 1)
2226 preferred_stack_boundary = 1;
2227 args_size->constant = (aligned_upper_bound (args_size->constant
2228 + stack_pointer_delta,
2229 preferred_stack_boundary)
2230 - stack_pointer_delta);
2232 args_size->constant = upper_bound (args_size->constant,
2233 reg_parm_stack_space);
2235 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
2236 args_size->constant -= reg_parm_stack_space;
2238 return unadjusted_args_size;
2241 /* Precompute parameters as needed for a function call.
2243 FLAGS is mask of ECF_* constants.
2245 NUM_ACTUALS is the number of arguments.
2247 ARGS is an array containing information for each argument; this
2248 routine fills in the INITIAL_VALUE and VALUE fields for each
2249 precomputed argument. */
2251 static void
2252 precompute_arguments (int num_actuals, struct arg_data *args)
2254 int i;
2256 /* If this is a libcall, then precompute all arguments so that we do not
2257 get extraneous instructions emitted as part of the libcall sequence. */
2259 /* If we preallocated the stack space, and some arguments must be passed
2260 on the stack, then we must precompute any parameter which contains a
2261 function call which will store arguments on the stack.
2262 Otherwise, evaluating the parameter may clobber previous parameters
2263 which have already been stored into the stack. (we have code to avoid
2264 such case by saving the outgoing stack arguments, but it results in
2265 worse code) */
2266 if (!ACCUMULATE_OUTGOING_ARGS)
2267 return;
2269 for (i = 0; i < num_actuals; i++)
2271 tree type;
2272 machine_mode mode;
2274 if (TREE_CODE (args[i].tree_value) != CALL_EXPR)
2275 continue;
2277 /* If this is an addressable type, we cannot pre-evaluate it. */
2278 type = TREE_TYPE (args[i].tree_value);
2279 gcc_assert (!TREE_ADDRESSABLE (type));
2281 args[i].initial_value = args[i].value
2282 = expand_normal (args[i].tree_value);
2284 mode = TYPE_MODE (type);
2285 if (mode != args[i].mode)
2287 int unsignedp = args[i].unsignedp;
2288 args[i].value
2289 = convert_modes (args[i].mode, mode,
2290 args[i].value, args[i].unsignedp);
2292 /* CSE will replace this only if it contains args[i].value
2293 pseudo, so convert it down to the declared mode using
2294 a SUBREG. */
2295 if (REG_P (args[i].value)
2296 && GET_MODE_CLASS (args[i].mode) == MODE_INT
2297 && promote_mode (type, mode, &unsignedp) != args[i].mode)
2299 args[i].initial_value
2300 = gen_lowpart_SUBREG (mode, args[i].value);
2301 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
2302 SUBREG_PROMOTED_SET (args[i].initial_value, args[i].unsignedp);
2308 /* Given the current state of MUST_PREALLOCATE and information about
2309 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
2310 compute and return the final value for MUST_PREALLOCATE. */
2312 static int
2313 finalize_must_preallocate (int must_preallocate, int num_actuals,
2314 struct arg_data *args, struct args_size *args_size)
2316 /* See if we have or want to preallocate stack space.
2318 If we would have to push a partially-in-regs parm
2319 before other stack parms, preallocate stack space instead.
2321 If the size of some parm is not a multiple of the required stack
2322 alignment, we must preallocate.
2324 If the total size of arguments that would otherwise create a copy in
2325 a temporary (such as a CALL) is more than half the total argument list
2326 size, preallocation is faster.
2328 Another reason to preallocate is if we have a machine (like the m88k)
2329 where stack alignment is required to be maintained between every
2330 pair of insns, not just when the call is made. However, we assume here
2331 that such machines either do not have push insns (and hence preallocation
2332 would occur anyway) or the problem is taken care of with
2333 PUSH_ROUNDING. */
2335 if (! must_preallocate)
2337 int partial_seen = 0;
2338 poly_int64 copy_to_evaluate_size = 0;
2339 int i;
2341 for (i = 0; i < num_actuals && ! must_preallocate; i++)
2343 if (args[i].partial > 0 && ! args[i].pass_on_stack)
2344 partial_seen = 1;
2345 else if (partial_seen && args[i].reg == 0)
2346 must_preallocate = 1;
2347 /* We preallocate in case there are bounds passed
2348 in the bounds table to have precomputed address
2349 for bounds association. */
2350 else if (POINTER_BOUNDS_P (args[i].tree_value)
2351 && !args[i].reg)
2352 must_preallocate = 1;
2354 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
2355 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
2356 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
2357 || TREE_CODE (args[i].tree_value) == COND_EXPR
2358 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
2359 copy_to_evaluate_size
2360 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
2363 if (maybe_ne (args_size->constant, 0)
2364 && maybe_ge (copy_to_evaluate_size * 2, args_size->constant))
2365 must_preallocate = 1;
2367 return must_preallocate;
2370 /* If we preallocated stack space, compute the address of each argument
2371 and store it into the ARGS array.
2373 We need not ensure it is a valid memory address here; it will be
2374 validized when it is used.
2376 ARGBLOCK is an rtx for the address of the outgoing arguments. */
2378 static void
2379 compute_argument_addresses (struct arg_data *args, rtx argblock, int num_actuals)
2381 if (argblock)
2383 rtx arg_reg = argblock;
2384 int i;
2385 poly_int64 arg_offset = 0;
2387 if (GET_CODE (argblock) == PLUS)
2389 arg_reg = XEXP (argblock, 0);
2390 arg_offset = rtx_to_poly_int64 (XEXP (argblock, 1));
2393 for (i = 0; i < num_actuals; i++)
2395 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
2396 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
2397 rtx addr;
2398 unsigned int align, boundary;
2399 poly_uint64 units_on_stack = 0;
2400 machine_mode partial_mode = VOIDmode;
2402 /* Skip this parm if it will not be passed on the stack. */
2403 if (! args[i].pass_on_stack
2404 && args[i].reg != 0
2405 && args[i].partial == 0)
2406 continue;
2408 if (TYPE_EMPTY_P (TREE_TYPE (args[i].tree_value)))
2409 continue;
2411 /* Pointer Bounds are never passed on the stack. */
2412 if (POINTER_BOUNDS_P (args[i].tree_value))
2413 continue;
2415 addr = simplify_gen_binary (PLUS, Pmode, arg_reg, offset);
2416 addr = plus_constant (Pmode, addr, arg_offset);
2418 if (args[i].partial != 0)
2420 /* Only part of the parameter is being passed on the stack.
2421 Generate a simple memory reference of the correct size. */
2422 units_on_stack = args[i].locate.size.constant;
2423 poly_uint64 bits_on_stack = units_on_stack * BITS_PER_UNIT;
2424 partial_mode = int_mode_for_size (bits_on_stack, 1).else_blk ();
2425 args[i].stack = gen_rtx_MEM (partial_mode, addr);
2426 set_mem_size (args[i].stack, units_on_stack);
2428 else
2430 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
2431 set_mem_attributes (args[i].stack,
2432 TREE_TYPE (args[i].tree_value), 1);
2434 align = BITS_PER_UNIT;
2435 boundary = args[i].locate.boundary;
2436 poly_int64 offset_val;
2437 if (args[i].locate.where_pad != PAD_DOWNWARD)
2438 align = boundary;
2439 else if (poly_int_rtx_p (offset, &offset_val))
2441 align = least_bit_hwi (boundary);
2442 unsigned int offset_align
2443 = known_alignment (offset_val) * BITS_PER_UNIT;
2444 if (offset_align != 0)
2445 align = MIN (align, offset_align);
2447 set_mem_align (args[i].stack, align);
2449 addr = simplify_gen_binary (PLUS, Pmode, arg_reg, slot_offset);
2450 addr = plus_constant (Pmode, addr, arg_offset);
2452 if (args[i].partial != 0)
2454 /* Only part of the parameter is being passed on the stack.
2455 Generate a simple memory reference of the correct size.
2457 args[i].stack_slot = gen_rtx_MEM (partial_mode, addr);
2458 set_mem_size (args[i].stack_slot, units_on_stack);
2460 else
2462 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
2463 set_mem_attributes (args[i].stack_slot,
2464 TREE_TYPE (args[i].tree_value), 1);
2466 set_mem_align (args[i].stack_slot, args[i].locate.boundary);
2468 /* Function incoming arguments may overlap with sibling call
2469 outgoing arguments and we cannot allow reordering of reads
2470 from function arguments with stores to outgoing arguments
2471 of sibling calls. */
2472 set_mem_alias_set (args[i].stack, 0);
2473 set_mem_alias_set (args[i].stack_slot, 0);
2478 /* Given a FNDECL and EXP, return an rtx suitable for use as a target address
2479 in a call instruction.
2481 FNDECL is the tree node for the target function. For an indirect call
2482 FNDECL will be NULL_TREE.
2484 ADDR is the operand 0 of CALL_EXPR for this call. */
2486 static rtx
2487 rtx_for_function_call (tree fndecl, tree addr)
2489 rtx funexp;
2491 /* Get the function to call, in the form of RTL. */
2492 if (fndecl)
2494 if (!TREE_USED (fndecl) && fndecl != current_function_decl)
2495 TREE_USED (fndecl) = 1;
2497 /* Get a SYMBOL_REF rtx for the function address. */
2498 funexp = XEXP (DECL_RTL (fndecl), 0);
2500 else
2501 /* Generate an rtx (probably a pseudo-register) for the address. */
2503 push_temp_slots ();
2504 funexp = expand_normal (addr);
2505 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
2507 return funexp;
2510 /* Return the static chain for this function, if any. */
2513 rtx_for_static_chain (const_tree fndecl_or_type, bool incoming_p)
2515 if (DECL_P (fndecl_or_type) && !DECL_STATIC_CHAIN (fndecl_or_type))
2516 return NULL;
2518 return targetm.calls.static_chain (fndecl_or_type, incoming_p);
2521 /* Internal state for internal_arg_pointer_based_exp and its helpers. */
2522 static struct
2524 /* Last insn that has been scanned by internal_arg_pointer_based_exp_scan,
2525 or NULL_RTX if none has been scanned yet. */
2526 rtx_insn *scan_start;
2527 /* Vector indexed by REGNO - FIRST_PSEUDO_REGISTER, recording if a pseudo is
2528 based on crtl->args.internal_arg_pointer. The element is NULL_RTX if the
2529 pseudo isn't based on it, a CONST_INT offset if the pseudo is based on it
2530 with fixed offset, or PC if this is with variable or unknown offset. */
2531 vec<rtx> cache;
2532 } internal_arg_pointer_exp_state;
2534 static rtx internal_arg_pointer_based_exp (const_rtx, bool);
2536 /* Helper function for internal_arg_pointer_based_exp. Scan insns in
2537 the tail call sequence, starting with first insn that hasn't been
2538 scanned yet, and note for each pseudo on the LHS whether it is based
2539 on crtl->args.internal_arg_pointer or not, and what offset from that
2540 that pointer it has. */
2542 static void
2543 internal_arg_pointer_based_exp_scan (void)
2545 rtx_insn *insn, *scan_start = internal_arg_pointer_exp_state.scan_start;
2547 if (scan_start == NULL_RTX)
2548 insn = get_insns ();
2549 else
2550 insn = NEXT_INSN (scan_start);
2552 while (insn)
2554 rtx set = single_set (insn);
2555 if (set && REG_P (SET_DEST (set)) && !HARD_REGISTER_P (SET_DEST (set)))
2557 rtx val = NULL_RTX;
2558 unsigned int idx = REGNO (SET_DEST (set)) - FIRST_PSEUDO_REGISTER;
2559 /* Punt on pseudos set multiple times. */
2560 if (idx < internal_arg_pointer_exp_state.cache.length ()
2561 && (internal_arg_pointer_exp_state.cache[idx]
2562 != NULL_RTX))
2563 val = pc_rtx;
2564 else
2565 val = internal_arg_pointer_based_exp (SET_SRC (set), false);
2566 if (val != NULL_RTX)
2568 if (idx >= internal_arg_pointer_exp_state.cache.length ())
2569 internal_arg_pointer_exp_state.cache
2570 .safe_grow_cleared (idx + 1);
2571 internal_arg_pointer_exp_state.cache[idx] = val;
2574 if (NEXT_INSN (insn) == NULL_RTX)
2575 scan_start = insn;
2576 insn = NEXT_INSN (insn);
2579 internal_arg_pointer_exp_state.scan_start = scan_start;
2582 /* Compute whether RTL is based on crtl->args.internal_arg_pointer. Return
2583 NULL_RTX if RTL isn't based on it, a CONST_INT offset if RTL is based on
2584 it with fixed offset, or PC if this is with variable or unknown offset.
2585 TOPLEVEL is true if the function is invoked at the topmost level. */
2587 static rtx
2588 internal_arg_pointer_based_exp (const_rtx rtl, bool toplevel)
2590 if (CONSTANT_P (rtl))
2591 return NULL_RTX;
2593 if (rtl == crtl->args.internal_arg_pointer)
2594 return const0_rtx;
2596 if (REG_P (rtl) && HARD_REGISTER_P (rtl))
2597 return NULL_RTX;
2599 poly_int64 offset;
2600 if (GET_CODE (rtl) == PLUS && poly_int_rtx_p (XEXP (rtl, 1), &offset))
2602 rtx val = internal_arg_pointer_based_exp (XEXP (rtl, 0), toplevel);
2603 if (val == NULL_RTX || val == pc_rtx)
2604 return val;
2605 return plus_constant (Pmode, val, offset);
2608 /* When called at the topmost level, scan pseudo assignments in between the
2609 last scanned instruction in the tail call sequence and the latest insn
2610 in that sequence. */
2611 if (toplevel)
2612 internal_arg_pointer_based_exp_scan ();
2614 if (REG_P (rtl))
2616 unsigned int idx = REGNO (rtl) - FIRST_PSEUDO_REGISTER;
2617 if (idx < internal_arg_pointer_exp_state.cache.length ())
2618 return internal_arg_pointer_exp_state.cache[idx];
2620 return NULL_RTX;
2623 subrtx_iterator::array_type array;
2624 FOR_EACH_SUBRTX (iter, array, rtl, NONCONST)
2626 const_rtx x = *iter;
2627 if (REG_P (x) && internal_arg_pointer_based_exp (x, false) != NULL_RTX)
2628 return pc_rtx;
2629 if (MEM_P (x))
2630 iter.skip_subrtxes ();
2633 return NULL_RTX;
2636 /* Return true if SIZE bytes starting from address ADDR might overlap an
2637 already-clobbered argument area. This function is used to determine
2638 if we should give up a sibcall. */
2640 static bool
2641 mem_might_overlap_already_clobbered_arg_p (rtx addr, poly_uint64 size)
2643 poly_int64 i;
2644 unsigned HOST_WIDE_INT start, end;
2645 rtx val;
2647 if (bitmap_empty_p (stored_args_map)
2648 && stored_args_watermark == HOST_WIDE_INT_M1U)
2649 return false;
2650 val = internal_arg_pointer_based_exp (addr, true);
2651 if (val == NULL_RTX)
2652 return false;
2653 else if (!poly_int_rtx_p (val, &i))
2654 return true;
2656 if (known_eq (size, 0U))
2657 return false;
2659 if (STACK_GROWS_DOWNWARD)
2660 i -= crtl->args.pretend_args_size;
2661 else
2662 i += crtl->args.pretend_args_size;
2664 if (ARGS_GROW_DOWNWARD)
2665 i = -i - size;
2667 /* We can ignore any references to the function's pretend args,
2668 which at this point would manifest as negative values of I. */
2669 if (known_le (i, 0) && known_le (size, poly_uint64 (-i)))
2670 return false;
2672 start = maybe_lt (i, 0) ? 0 : constant_lower_bound (i);
2673 if (!(i + size).is_constant (&end))
2674 end = HOST_WIDE_INT_M1U;
2676 if (end > stored_args_watermark)
2677 return true;
2679 end = MIN (end, SBITMAP_SIZE (stored_args_map));
2680 for (unsigned HOST_WIDE_INT k = start; k < end; ++k)
2681 if (bitmap_bit_p (stored_args_map, k))
2682 return true;
2684 return false;
2687 /* Do the register loads required for any wholly-register parms or any
2688 parms which are passed both on the stack and in a register. Their
2689 expressions were already evaluated.
2691 Mark all register-parms as living through the call, putting these USE
2692 insns in the CALL_INSN_FUNCTION_USAGE field.
2694 When IS_SIBCALL, perform the check_sibcall_argument_overlap
2695 checking, setting *SIBCALL_FAILURE if appropriate. */
2697 static void
2698 load_register_parameters (struct arg_data *args, int num_actuals,
2699 rtx *call_fusage, int flags, int is_sibcall,
2700 int *sibcall_failure)
2702 int i, j;
2704 for (i = 0; i < num_actuals; i++)
2706 rtx reg = ((flags & ECF_SIBCALL)
2707 ? args[i].tail_call_reg : args[i].reg);
2708 if (reg)
2710 int partial = args[i].partial;
2711 int nregs;
2712 int size = 0;
2713 rtx_insn *before_arg = get_last_insn ();
2714 /* Set non-negative if we must move a word at a time, even if
2715 just one word (e.g, partial == 4 && mode == DFmode). Set
2716 to -1 if we just use a normal move insn. This value can be
2717 zero if the argument is a zero size structure. */
2718 nregs = -1;
2719 if (GET_CODE (reg) == PARALLEL)
2721 else if (partial)
2723 gcc_assert (partial % UNITS_PER_WORD == 0);
2724 nregs = partial / UNITS_PER_WORD;
2726 else if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode)
2728 size = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
2729 nregs = (size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
2731 else
2732 size = GET_MODE_SIZE (args[i].mode);
2734 /* Handle calls that pass values in multiple non-contiguous
2735 locations. The Irix 6 ABI has examples of this. */
2737 if (GET_CODE (reg) == PARALLEL)
2738 emit_group_move (reg, args[i].parallel_value);
2740 /* If simple case, just do move. If normal partial, store_one_arg
2741 has already loaded the register for us. In all other cases,
2742 load the register(s) from memory. */
2744 else if (nregs == -1)
2746 emit_move_insn (reg, args[i].value);
2747 #ifdef BLOCK_REG_PADDING
2748 /* Handle case where we have a value that needs shifting
2749 up to the msb. eg. a QImode value and we're padding
2750 upward on a BYTES_BIG_ENDIAN machine. */
2751 if (size < UNITS_PER_WORD
2752 && (args[i].locate.where_pad
2753 == (BYTES_BIG_ENDIAN ? PAD_UPWARD : PAD_DOWNWARD)))
2755 rtx x;
2756 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2758 /* Assigning REG here rather than a temp makes CALL_FUSAGE
2759 report the whole reg as used. Strictly speaking, the
2760 call only uses SIZE bytes at the msb end, but it doesn't
2761 seem worth generating rtl to say that. */
2762 reg = gen_rtx_REG (word_mode, REGNO (reg));
2763 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
2764 if (x != reg)
2765 emit_move_insn (reg, x);
2767 #endif
2770 /* If we have pre-computed the values to put in the registers in
2771 the case of non-aligned structures, copy them in now. */
2773 else if (args[i].n_aligned_regs != 0)
2774 for (j = 0; j < args[i].n_aligned_regs; j++)
2775 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
2776 args[i].aligned_regs[j]);
2778 else if (partial == 0 || args[i].pass_on_stack)
2780 rtx mem = validize_mem (copy_rtx (args[i].value));
2782 /* Check for overlap with already clobbered argument area,
2783 providing that this has non-zero size. */
2784 if (is_sibcall
2785 && size != 0
2786 && (mem_might_overlap_already_clobbered_arg_p
2787 (XEXP (args[i].value, 0), size)))
2788 *sibcall_failure = 1;
2790 if (size % UNITS_PER_WORD == 0
2791 || MEM_ALIGN (mem) % BITS_PER_WORD == 0)
2792 move_block_to_reg (REGNO (reg), mem, nregs, args[i].mode);
2793 else
2795 if (nregs > 1)
2796 move_block_to_reg (REGNO (reg), mem, nregs - 1,
2797 args[i].mode);
2798 rtx dest = gen_rtx_REG (word_mode, REGNO (reg) + nregs - 1);
2799 unsigned int bitoff = (nregs - 1) * BITS_PER_WORD;
2800 unsigned int bitsize = size * BITS_PER_UNIT - bitoff;
2801 rtx x = extract_bit_field (mem, bitsize, bitoff, 1, dest,
2802 word_mode, word_mode, false,
2803 NULL);
2804 if (BYTES_BIG_ENDIAN)
2805 x = expand_shift (LSHIFT_EXPR, word_mode, x,
2806 BITS_PER_WORD - bitsize, dest, 1);
2807 if (x != dest)
2808 emit_move_insn (dest, x);
2811 /* Handle a BLKmode that needs shifting. */
2812 if (nregs == 1 && size < UNITS_PER_WORD
2813 #ifdef BLOCK_REG_PADDING
2814 && args[i].locate.where_pad == PAD_DOWNWARD
2815 #else
2816 && BYTES_BIG_ENDIAN
2817 #endif
2820 rtx dest = gen_rtx_REG (word_mode, REGNO (reg));
2821 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2822 enum tree_code dir = (BYTES_BIG_ENDIAN
2823 ? RSHIFT_EXPR : LSHIFT_EXPR);
2824 rtx x;
2826 x = expand_shift (dir, word_mode, dest, shift, dest, 1);
2827 if (x != dest)
2828 emit_move_insn (dest, x);
2832 /* When a parameter is a block, and perhaps in other cases, it is
2833 possible that it did a load from an argument slot that was
2834 already clobbered. */
2835 if (is_sibcall
2836 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
2837 *sibcall_failure = 1;
2839 /* Handle calls that pass values in multiple non-contiguous
2840 locations. The Irix 6 ABI has examples of this. */
2841 if (GET_CODE (reg) == PARALLEL)
2842 use_group_regs (call_fusage, reg);
2843 else if (nregs == -1)
2844 use_reg_mode (call_fusage, reg,
2845 TYPE_MODE (TREE_TYPE (args[i].tree_value)));
2846 else if (nregs > 0)
2847 use_regs (call_fusage, REGNO (reg), nregs);
2852 /* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
2853 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
2854 bytes, then we would need to push some additional bytes to pad the
2855 arguments. So, we try to compute an adjust to the stack pointer for an
2856 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
2857 bytes. Then, when the arguments are pushed the stack will be perfectly
2858 aligned.
2860 Return true if this optimization is possible, storing the adjustment
2861 in ADJUSTMENT_OUT and setting ARGS_SIZE->CONSTANT to the number of
2862 bytes that should be popped after the call. */
2864 static bool
2865 combine_pending_stack_adjustment_and_call (poly_int64_pod *adjustment_out,
2866 poly_int64 unadjusted_args_size,
2867 struct args_size *args_size,
2868 unsigned int preferred_unit_stack_boundary)
2870 /* The number of bytes to pop so that the stack will be
2871 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
2872 poly_int64 adjustment;
2873 /* The alignment of the stack after the arguments are pushed, if we
2874 just pushed the arguments without adjust the stack here. */
2875 unsigned HOST_WIDE_INT unadjusted_alignment;
2877 if (!known_misalignment (stack_pointer_delta + unadjusted_args_size,
2878 preferred_unit_stack_boundary,
2879 &unadjusted_alignment))
2880 return false;
2882 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
2883 as possible -- leaving just enough left to cancel out the
2884 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
2885 PENDING_STACK_ADJUST is non-negative, and congruent to
2886 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
2888 /* Begin by trying to pop all the bytes. */
2889 unsigned HOST_WIDE_INT tmp_misalignment;
2890 if (!known_misalignment (pending_stack_adjust,
2891 preferred_unit_stack_boundary,
2892 &tmp_misalignment))
2893 return false;
2894 unadjusted_alignment -= tmp_misalignment;
2895 adjustment = pending_stack_adjust;
2896 /* Push enough additional bytes that the stack will be aligned
2897 after the arguments are pushed. */
2898 if (preferred_unit_stack_boundary > 1 && unadjusted_alignment)
2899 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
2901 /* We need to know whether the adjusted argument size
2902 (UNADJUSTED_ARGS_SIZE - ADJUSTMENT) constitutes an allocation
2903 or a deallocation. */
2904 if (!ordered_p (adjustment, unadjusted_args_size))
2905 return false;
2907 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
2908 bytes after the call. The right number is the entire
2909 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
2910 by the arguments in the first place. */
2911 args_size->constant
2912 = pending_stack_adjust - adjustment + unadjusted_args_size;
2914 *adjustment_out = adjustment;
2915 return true;
2918 /* Scan X expression if it does not dereference any argument slots
2919 we already clobbered by tail call arguments (as noted in stored_args_map
2920 bitmap).
2921 Return nonzero if X expression dereferences such argument slots,
2922 zero otherwise. */
2924 static int
2925 check_sibcall_argument_overlap_1 (rtx x)
2927 RTX_CODE code;
2928 int i, j;
2929 const char *fmt;
2931 if (x == NULL_RTX)
2932 return 0;
2934 code = GET_CODE (x);
2936 /* We need not check the operands of the CALL expression itself. */
2937 if (code == CALL)
2938 return 0;
2940 if (code == MEM)
2941 return (mem_might_overlap_already_clobbered_arg_p
2942 (XEXP (x, 0), GET_MODE_SIZE (GET_MODE (x))));
2944 /* Scan all subexpressions. */
2945 fmt = GET_RTX_FORMAT (code);
2946 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2948 if (*fmt == 'e')
2950 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
2951 return 1;
2953 else if (*fmt == 'E')
2955 for (j = 0; j < XVECLEN (x, i); j++)
2956 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
2957 return 1;
2960 return 0;
2963 /* Scan sequence after INSN if it does not dereference any argument slots
2964 we already clobbered by tail call arguments (as noted in stored_args_map
2965 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
2966 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
2967 should be 0). Return nonzero if sequence after INSN dereferences such argument
2968 slots, zero otherwise. */
2970 static int
2971 check_sibcall_argument_overlap (rtx_insn *insn, struct arg_data *arg,
2972 int mark_stored_args_map)
2974 poly_uint64 low, high;
2975 unsigned HOST_WIDE_INT const_low, const_high;
2977 if (insn == NULL_RTX)
2978 insn = get_insns ();
2979 else
2980 insn = NEXT_INSN (insn);
2982 for (; insn; insn = NEXT_INSN (insn))
2983 if (INSN_P (insn)
2984 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
2985 break;
2987 if (mark_stored_args_map)
2989 if (ARGS_GROW_DOWNWARD)
2990 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
2991 else
2992 low = arg->locate.slot_offset.constant;
2993 high = low + arg->locate.size.constant;
2995 const_low = constant_lower_bound (low);
2996 if (high.is_constant (&const_high))
2997 for (unsigned HOST_WIDE_INT i = const_low; i < const_high; ++i)
2998 bitmap_set_bit (stored_args_map, i);
2999 else
3000 stored_args_watermark = MIN (stored_args_watermark, const_low);
3002 return insn != NULL_RTX;
3005 /* Given that a function returns a value of mode MODE at the most
3006 significant end of hard register VALUE, shift VALUE left or right
3007 as specified by LEFT_P. Return true if some action was needed. */
3009 bool
3010 shift_return_value (machine_mode mode, bool left_p, rtx value)
3012 HOST_WIDE_INT shift;
3014 gcc_assert (REG_P (value) && HARD_REGISTER_P (value));
3015 machine_mode value_mode = GET_MODE (value);
3016 shift = GET_MODE_BITSIZE (value_mode) - GET_MODE_BITSIZE (mode);
3017 if (shift == 0)
3018 return false;
3020 /* Use ashr rather than lshr for right shifts. This is for the benefit
3021 of the MIPS port, which requires SImode values to be sign-extended
3022 when stored in 64-bit registers. */
3023 if (!force_expand_binop (value_mode, left_p ? ashl_optab : ashr_optab,
3024 value, gen_int_shift_amount (value_mode, shift),
3025 value, 1, OPTAB_WIDEN))
3026 gcc_unreachable ();
3027 return true;
3030 /* If X is a likely-spilled register value, copy it to a pseudo
3031 register and return that register. Return X otherwise. */
3033 static rtx
3034 avoid_likely_spilled_reg (rtx x)
3036 rtx new_rtx;
3038 if (REG_P (x)
3039 && HARD_REGISTER_P (x)
3040 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (x))))
3042 /* Make sure that we generate a REG rather than a CONCAT.
3043 Moves into CONCATs can need nontrivial instructions,
3044 and the whole point of this function is to avoid
3045 using the hard register directly in such a situation. */
3046 generating_concat_p = 0;
3047 new_rtx = gen_reg_rtx (GET_MODE (x));
3048 generating_concat_p = 1;
3049 emit_move_insn (new_rtx, x);
3050 return new_rtx;
3052 return x;
3055 /* Helper function for expand_call.
3056 Return false is EXP is not implementable as a sibling call. */
3058 static bool
3059 can_implement_as_sibling_call_p (tree exp,
3060 rtx structure_value_addr,
3061 tree funtype,
3062 int reg_parm_stack_space ATTRIBUTE_UNUSED,
3063 tree fndecl,
3064 int flags,
3065 tree addr,
3066 const args_size &args_size)
3068 if (!targetm.have_sibcall_epilogue ())
3070 maybe_complain_about_tail_call
3071 (exp,
3072 "machine description does not have"
3073 " a sibcall_epilogue instruction pattern");
3074 return false;
3077 /* Doing sibling call optimization needs some work, since
3078 structure_value_addr can be allocated on the stack.
3079 It does not seem worth the effort since few optimizable
3080 sibling calls will return a structure. */
3081 if (structure_value_addr != NULL_RTX)
3083 maybe_complain_about_tail_call (exp, "callee returns a structure");
3084 return false;
3087 #ifdef REG_PARM_STACK_SPACE
3088 /* If outgoing reg parm stack space changes, we can not do sibcall. */
3089 if (OUTGOING_REG_PARM_STACK_SPACE (funtype)
3090 != OUTGOING_REG_PARM_STACK_SPACE (TREE_TYPE (current_function_decl))
3091 || (reg_parm_stack_space != REG_PARM_STACK_SPACE (current_function_decl)))
3093 maybe_complain_about_tail_call (exp,
3094 "inconsistent size of stack space"
3095 " allocated for arguments which are"
3096 " passed in registers");
3097 return false;
3099 #endif
3101 /* Check whether the target is able to optimize the call
3102 into a sibcall. */
3103 if (!targetm.function_ok_for_sibcall (fndecl, exp))
3105 maybe_complain_about_tail_call (exp,
3106 "target is not able to optimize the"
3107 " call into a sibling call");
3108 return false;
3111 /* Functions that do not return exactly once may not be sibcall
3112 optimized. */
3113 if (flags & ECF_RETURNS_TWICE)
3115 maybe_complain_about_tail_call (exp, "callee returns twice");
3116 return false;
3118 if (flags & ECF_NORETURN)
3120 maybe_complain_about_tail_call (exp, "callee does not return");
3121 return false;
3124 if (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr))))
3126 maybe_complain_about_tail_call (exp, "volatile function type");
3127 return false;
3130 /* If the called function is nested in the current one, it might access
3131 some of the caller's arguments, but could clobber them beforehand if
3132 the argument areas are shared. */
3133 if (fndecl && decl_function_context (fndecl) == current_function_decl)
3135 maybe_complain_about_tail_call (exp, "nested function");
3136 return false;
3139 /* If this function requires more stack slots than the current
3140 function, we cannot change it into a sibling call.
3141 crtl->args.pretend_args_size is not part of the
3142 stack allocated by our caller. */
3143 if (maybe_gt (args_size.constant,
3144 crtl->args.size - crtl->args.pretend_args_size))
3146 maybe_complain_about_tail_call (exp,
3147 "callee required more stack slots"
3148 " than the caller");
3149 return false;
3152 /* If the callee pops its own arguments, then it must pop exactly
3153 the same number of arguments as the current function. */
3154 if (maybe_ne (targetm.calls.return_pops_args (fndecl, funtype,
3155 args_size.constant),
3156 targetm.calls.return_pops_args (current_function_decl,
3157 TREE_TYPE
3158 (current_function_decl),
3159 crtl->args.size)))
3161 maybe_complain_about_tail_call (exp,
3162 "inconsistent number of"
3163 " popped arguments");
3164 return false;
3167 if (!lang_hooks.decls.ok_for_sibcall (fndecl))
3169 maybe_complain_about_tail_call (exp, "frontend does not support"
3170 " sibling call");
3171 return false;
3174 /* All checks passed. */
3175 return true;
3178 /* Generate all the code for a CALL_EXPR exp
3179 and return an rtx for its value.
3180 Store the value in TARGET (specified as an rtx) if convenient.
3181 If the value is stored in TARGET then TARGET is returned.
3182 If IGNORE is nonzero, then we ignore the value of the function call. */
3185 expand_call (tree exp, rtx target, int ignore)
3187 /* Nonzero if we are currently expanding a call. */
3188 static int currently_expanding_call = 0;
3190 /* RTX for the function to be called. */
3191 rtx funexp;
3192 /* Sequence of insns to perform a normal "call". */
3193 rtx_insn *normal_call_insns = NULL;
3194 /* Sequence of insns to perform a tail "call". */
3195 rtx_insn *tail_call_insns = NULL;
3196 /* Data type of the function. */
3197 tree funtype;
3198 tree type_arg_types;
3199 tree rettype;
3200 /* Declaration of the function being called,
3201 or 0 if the function is computed (not known by name). */
3202 tree fndecl = 0;
3203 /* The type of the function being called. */
3204 tree fntype;
3205 bool try_tail_call = CALL_EXPR_TAILCALL (exp);
3206 bool must_tail_call = CALL_EXPR_MUST_TAIL_CALL (exp);
3207 int pass;
3209 /* Register in which non-BLKmode value will be returned,
3210 or 0 if no value or if value is BLKmode. */
3211 rtx valreg;
3212 /* Register(s) in which bounds are returned. */
3213 rtx valbnd = NULL;
3214 /* Address where we should return a BLKmode value;
3215 0 if value not BLKmode. */
3216 rtx structure_value_addr = 0;
3217 /* Nonzero if that address is being passed by treating it as
3218 an extra, implicit first parameter. Otherwise,
3219 it is passed by being copied directly into struct_value_rtx. */
3220 int structure_value_addr_parm = 0;
3221 /* Holds the value of implicit argument for the struct value. */
3222 tree structure_value_addr_value = NULL_TREE;
3223 /* Size of aggregate value wanted, or zero if none wanted
3224 or if we are using the non-reentrant PCC calling convention
3225 or expecting the value in registers. */
3226 HOST_WIDE_INT struct_value_size = 0;
3227 /* Nonzero if called function returns an aggregate in memory PCC style,
3228 by returning the address of where to find it. */
3229 int pcc_struct_value = 0;
3230 rtx struct_value = 0;
3232 /* Number of actual parameters in this call, including struct value addr. */
3233 int num_actuals;
3234 /* Number of named args. Args after this are anonymous ones
3235 and they must all go on the stack. */
3236 int n_named_args;
3237 /* Number of complex actual arguments that need to be split. */
3238 int num_complex_actuals = 0;
3240 /* Vector of information about each argument.
3241 Arguments are numbered in the order they will be pushed,
3242 not the order they are written. */
3243 struct arg_data *args;
3245 /* Total size in bytes of all the stack-parms scanned so far. */
3246 struct args_size args_size;
3247 struct args_size adjusted_args_size;
3248 /* Size of arguments before any adjustments (such as rounding). */
3249 poly_int64 unadjusted_args_size;
3250 /* Data on reg parms scanned so far. */
3251 CUMULATIVE_ARGS args_so_far_v;
3252 cumulative_args_t args_so_far;
3253 /* Nonzero if a reg parm has been scanned. */
3254 int reg_parm_seen;
3255 /* Nonzero if this is an indirect function call. */
3257 /* Nonzero if we must avoid push-insns in the args for this call.
3258 If stack space is allocated for register parameters, but not by the
3259 caller, then it is preallocated in the fixed part of the stack frame.
3260 So the entire argument block must then be preallocated (i.e., we
3261 ignore PUSH_ROUNDING in that case). */
3263 int must_preallocate = !PUSH_ARGS;
3265 /* Size of the stack reserved for parameter registers. */
3266 int reg_parm_stack_space = 0;
3268 /* Address of space preallocated for stack parms
3269 (on machines that lack push insns), or 0 if space not preallocated. */
3270 rtx argblock = 0;
3272 /* Mask of ECF_ and ERF_ flags. */
3273 int flags = 0;
3274 int return_flags = 0;
3275 #ifdef REG_PARM_STACK_SPACE
3276 /* Define the boundary of the register parm stack space that needs to be
3277 saved, if any. */
3278 int low_to_save, high_to_save;
3279 rtx save_area = 0; /* Place that it is saved */
3280 #endif
3282 unsigned int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3283 char *initial_stack_usage_map = stack_usage_map;
3284 unsigned HOST_WIDE_INT initial_stack_usage_watermark = stack_usage_watermark;
3285 char *stack_usage_map_buf = NULL;
3287 poly_int64 old_stack_allocated;
3289 /* State variables to track stack modifications. */
3290 rtx old_stack_level = 0;
3291 int old_stack_arg_under_construction = 0;
3292 poly_int64 old_pending_adj = 0;
3293 int old_inhibit_defer_pop = inhibit_defer_pop;
3295 /* Some stack pointer alterations we make are performed via
3296 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
3297 which we then also need to save/restore along the way. */
3298 poly_int64 old_stack_pointer_delta = 0;
3300 rtx call_fusage;
3301 tree addr = CALL_EXPR_FN (exp);
3302 int i;
3303 /* The alignment of the stack, in bits. */
3304 unsigned HOST_WIDE_INT preferred_stack_boundary;
3305 /* The alignment of the stack, in bytes. */
3306 unsigned HOST_WIDE_INT preferred_unit_stack_boundary;
3307 /* The static chain value to use for this call. */
3308 rtx static_chain_value;
3309 /* See if this is "nothrow" function call. */
3310 if (TREE_NOTHROW (exp))
3311 flags |= ECF_NOTHROW;
3313 /* See if we can find a DECL-node for the actual function, and get the
3314 function attributes (flags) from the function decl or type node. */
3315 fndecl = get_callee_fndecl (exp);
3316 if (fndecl)
3318 fntype = TREE_TYPE (fndecl);
3319 flags |= flags_from_decl_or_type (fndecl);
3320 return_flags |= decl_return_flags (fndecl);
3322 else
3324 fntype = TREE_TYPE (TREE_TYPE (addr));
3325 flags |= flags_from_decl_or_type (fntype);
3326 if (CALL_EXPR_BY_DESCRIPTOR (exp))
3327 flags |= ECF_BY_DESCRIPTOR;
3329 rettype = TREE_TYPE (exp);
3331 struct_value = targetm.calls.struct_value_rtx (fntype, 0);
3333 /* Warn if this value is an aggregate type,
3334 regardless of which calling convention we are using for it. */
3335 if (AGGREGATE_TYPE_P (rettype))
3336 warning (OPT_Waggregate_return, "function call has aggregate value");
3338 /* If the result of a non looping pure or const function call is
3339 ignored (or void), and none of its arguments are volatile, we can
3340 avoid expanding the call and just evaluate the arguments for
3341 side-effects. */
3342 if ((flags & (ECF_CONST | ECF_PURE))
3343 && (!(flags & ECF_LOOPING_CONST_OR_PURE))
3344 && (ignore || target == const0_rtx
3345 || TYPE_MODE (rettype) == VOIDmode))
3347 bool volatilep = false;
3348 tree arg;
3349 call_expr_arg_iterator iter;
3351 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
3352 if (TREE_THIS_VOLATILE (arg))
3354 volatilep = true;
3355 break;
3358 if (! volatilep)
3360 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
3361 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
3362 return const0_rtx;
3366 #ifdef REG_PARM_STACK_SPACE
3367 reg_parm_stack_space = REG_PARM_STACK_SPACE (!fndecl ? fntype : fndecl);
3368 #endif
3370 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
3371 && reg_parm_stack_space > 0 && PUSH_ARGS)
3372 must_preallocate = 1;
3374 /* Set up a place to return a structure. */
3376 /* Cater to broken compilers. */
3377 if (aggregate_value_p (exp, fntype))
3379 /* This call returns a big structure. */
3380 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
3382 #ifdef PCC_STATIC_STRUCT_RETURN
3384 pcc_struct_value = 1;
3386 #else /* not PCC_STATIC_STRUCT_RETURN */
3388 struct_value_size = int_size_in_bytes (rettype);
3390 /* Even if it is semantically safe to use the target as the return
3391 slot, it may be not sufficiently aligned for the return type. */
3392 if (CALL_EXPR_RETURN_SLOT_OPT (exp)
3393 && target
3394 && MEM_P (target)
3395 && !(MEM_ALIGN (target) < TYPE_ALIGN (rettype)
3396 && targetm.slow_unaligned_access (TYPE_MODE (rettype),
3397 MEM_ALIGN (target))))
3398 structure_value_addr = XEXP (target, 0);
3399 else
3401 /* For variable-sized objects, we must be called with a target
3402 specified. If we were to allocate space on the stack here,
3403 we would have no way of knowing when to free it. */
3404 rtx d = assign_temp (rettype, 1, 1);
3405 structure_value_addr = XEXP (d, 0);
3406 target = 0;
3409 #endif /* not PCC_STATIC_STRUCT_RETURN */
3412 /* Figure out the amount to which the stack should be aligned. */
3413 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
3414 if (fndecl)
3416 struct cgraph_rtl_info *i = cgraph_node::rtl_info (fndecl);
3417 /* Without automatic stack alignment, we can't increase preferred
3418 stack boundary. With automatic stack alignment, it is
3419 unnecessary since unless we can guarantee that all callers will
3420 align the outgoing stack properly, callee has to align its
3421 stack anyway. */
3422 if (i
3423 && i->preferred_incoming_stack_boundary
3424 && i->preferred_incoming_stack_boundary < preferred_stack_boundary)
3425 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
3428 /* Operand 0 is a pointer-to-function; get the type of the function. */
3429 funtype = TREE_TYPE (addr);
3430 gcc_assert (POINTER_TYPE_P (funtype));
3431 funtype = TREE_TYPE (funtype);
3433 /* Count whether there are actual complex arguments that need to be split
3434 into their real and imaginary parts. Munge the type_arg_types
3435 appropriately here as well. */
3436 if (targetm.calls.split_complex_arg)
3438 call_expr_arg_iterator iter;
3439 tree arg;
3440 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
3442 tree type = TREE_TYPE (arg);
3443 if (type && TREE_CODE (type) == COMPLEX_TYPE
3444 && targetm.calls.split_complex_arg (type))
3445 num_complex_actuals++;
3447 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
3449 else
3450 type_arg_types = TYPE_ARG_TYPES (funtype);
3452 if (flags & ECF_MAY_BE_ALLOCA)
3453 cfun->calls_alloca = 1;
3455 /* If struct_value_rtx is 0, it means pass the address
3456 as if it were an extra parameter. Put the argument expression
3457 in structure_value_addr_value. */
3458 if (structure_value_addr && struct_value == 0)
3460 /* If structure_value_addr is a REG other than
3461 virtual_outgoing_args_rtx, we can use always use it. If it
3462 is not a REG, we must always copy it into a register.
3463 If it is virtual_outgoing_args_rtx, we must copy it to another
3464 register in some cases. */
3465 rtx temp = (!REG_P (structure_value_addr)
3466 || (ACCUMULATE_OUTGOING_ARGS
3467 && stack_arg_under_construction
3468 && structure_value_addr == virtual_outgoing_args_rtx)
3469 ? copy_addr_to_reg (convert_memory_address
3470 (Pmode, structure_value_addr))
3471 : structure_value_addr);
3473 structure_value_addr_value =
3474 make_tree (build_pointer_type (TREE_TYPE (funtype)), temp);
3475 structure_value_addr_parm = CALL_WITH_BOUNDS_P (exp) ? 2 : 1;
3478 /* Count the arguments and set NUM_ACTUALS. */
3479 num_actuals =
3480 call_expr_nargs (exp) + num_complex_actuals + structure_value_addr_parm;
3482 /* Compute number of named args.
3483 First, do a raw count of the args for INIT_CUMULATIVE_ARGS. */
3485 if (type_arg_types != 0)
3486 n_named_args
3487 = (list_length (type_arg_types)
3488 /* Count the struct value address, if it is passed as a parm. */
3489 + structure_value_addr_parm);
3490 else
3491 /* If we know nothing, treat all args as named. */
3492 n_named_args = num_actuals;
3494 /* Start updating where the next arg would go.
3496 On some machines (such as the PA) indirect calls have a different
3497 calling convention than normal calls. The fourth argument in
3498 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
3499 or not. */
3500 INIT_CUMULATIVE_ARGS (args_so_far_v, funtype, NULL_RTX, fndecl, n_named_args);
3501 args_so_far = pack_cumulative_args (&args_so_far_v);
3503 /* Now possibly adjust the number of named args.
3504 Normally, don't include the last named arg if anonymous args follow.
3505 We do include the last named arg if
3506 targetm.calls.strict_argument_naming() returns nonzero.
3507 (If no anonymous args follow, the result of list_length is actually
3508 one too large. This is harmless.)
3510 If targetm.calls.pretend_outgoing_varargs_named() returns
3511 nonzero, and targetm.calls.strict_argument_naming() returns zero,
3512 this machine will be able to place unnamed args that were passed
3513 in registers into the stack. So treat all args as named. This
3514 allows the insns emitting for a specific argument list to be
3515 independent of the function declaration.
3517 If targetm.calls.pretend_outgoing_varargs_named() returns zero,
3518 we do not have any reliable way to pass unnamed args in
3519 registers, so we must force them into memory. */
3521 if (type_arg_types != 0
3522 && targetm.calls.strict_argument_naming (args_so_far))
3524 else if (type_arg_types != 0
3525 && ! targetm.calls.pretend_outgoing_varargs_named (args_so_far))
3526 /* Don't include the last named arg. */
3527 --n_named_args;
3528 else
3529 /* Treat all args as named. */
3530 n_named_args = num_actuals;
3532 /* Make a vector to hold all the information about each arg. */
3533 args = XCNEWVEC (struct arg_data, num_actuals);
3535 /* Build up entries in the ARGS array, compute the size of the
3536 arguments into ARGS_SIZE, etc. */
3537 initialize_argument_information (num_actuals, args, &args_size,
3538 n_named_args, exp,
3539 structure_value_addr_value, fndecl, fntype,
3540 args_so_far, reg_parm_stack_space,
3541 &old_stack_level, &old_pending_adj,
3542 &must_preallocate, &flags,
3543 &try_tail_call, CALL_FROM_THUNK_P (exp));
3545 if (args_size.var)
3546 must_preallocate = 1;
3548 /* Now make final decision about preallocating stack space. */
3549 must_preallocate = finalize_must_preallocate (must_preallocate,
3550 num_actuals, args,
3551 &args_size);
3553 /* If the structure value address will reference the stack pointer, we
3554 must stabilize it. We don't need to do this if we know that we are
3555 not going to adjust the stack pointer in processing this call. */
3557 if (structure_value_addr
3558 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
3559 || reg_mentioned_p (virtual_outgoing_args_rtx,
3560 structure_value_addr))
3561 && (args_size.var
3562 || (!ACCUMULATE_OUTGOING_ARGS
3563 && maybe_ne (args_size.constant, 0))))
3564 structure_value_addr = copy_to_reg (structure_value_addr);
3566 /* Tail calls can make things harder to debug, and we've traditionally
3567 pushed these optimizations into -O2. Don't try if we're already
3568 expanding a call, as that means we're an argument. Don't try if
3569 there's cleanups, as we know there's code to follow the call. */
3571 if (currently_expanding_call++ != 0
3572 || !flag_optimize_sibling_calls
3573 || args_size.var
3574 || dbg_cnt (tail_call) == false)
3575 try_tail_call = 0;
3577 /* If the user has marked the function as requiring tail-call
3578 optimization, attempt it. */
3579 if (must_tail_call)
3580 try_tail_call = 1;
3582 /* Rest of purposes for tail call optimizations to fail. */
3583 if (try_tail_call)
3584 try_tail_call = can_implement_as_sibling_call_p (exp,
3585 structure_value_addr,
3586 funtype,
3587 reg_parm_stack_space,
3588 fndecl,
3589 flags, addr, args_size);
3591 /* Check if caller and callee disagree in promotion of function
3592 return value. */
3593 if (try_tail_call)
3595 machine_mode caller_mode, caller_promoted_mode;
3596 machine_mode callee_mode, callee_promoted_mode;
3597 int caller_unsignedp, callee_unsignedp;
3598 tree caller_res = DECL_RESULT (current_function_decl);
3600 caller_unsignedp = TYPE_UNSIGNED (TREE_TYPE (caller_res));
3601 caller_mode = DECL_MODE (caller_res);
3602 callee_unsignedp = TYPE_UNSIGNED (TREE_TYPE (funtype));
3603 callee_mode = TYPE_MODE (TREE_TYPE (funtype));
3604 caller_promoted_mode
3605 = promote_function_mode (TREE_TYPE (caller_res), caller_mode,
3606 &caller_unsignedp,
3607 TREE_TYPE (current_function_decl), 1);
3608 callee_promoted_mode
3609 = promote_function_mode (TREE_TYPE (funtype), callee_mode,
3610 &callee_unsignedp,
3611 funtype, 1);
3612 if (caller_mode != VOIDmode
3613 && (caller_promoted_mode != callee_promoted_mode
3614 || ((caller_mode != caller_promoted_mode
3615 || callee_mode != callee_promoted_mode)
3616 && (caller_unsignedp != callee_unsignedp
3617 || partial_subreg_p (caller_mode, callee_mode)))))
3619 try_tail_call = 0;
3620 maybe_complain_about_tail_call (exp,
3621 "caller and callee disagree in"
3622 " promotion of function"
3623 " return value");
3627 /* Ensure current function's preferred stack boundary is at least
3628 what we need. Stack alignment may also increase preferred stack
3629 boundary. */
3630 if (crtl->preferred_stack_boundary < preferred_stack_boundary)
3631 crtl->preferred_stack_boundary = preferred_stack_boundary;
3632 else
3633 preferred_stack_boundary = crtl->preferred_stack_boundary;
3635 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
3637 /* We want to make two insn chains; one for a sibling call, the other
3638 for a normal call. We will select one of the two chains after
3639 initial RTL generation is complete. */
3640 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
3642 int sibcall_failure = 0;
3643 /* We want to emit any pending stack adjustments before the tail
3644 recursion "call". That way we know any adjustment after the tail
3645 recursion call can be ignored if we indeed use the tail
3646 call expansion. */
3647 saved_pending_stack_adjust save;
3648 rtx_insn *insns, *before_call, *after_args;
3649 rtx next_arg_reg;
3651 if (pass == 0)
3653 /* State variables we need to save and restore between
3654 iterations. */
3655 save_pending_stack_adjust (&save);
3657 if (pass)
3658 flags &= ~ECF_SIBCALL;
3659 else
3660 flags |= ECF_SIBCALL;
3662 /* Other state variables that we must reinitialize each time
3663 through the loop (that are not initialized by the loop itself). */
3664 argblock = 0;
3665 call_fusage = 0;
3667 /* Start a new sequence for the normal call case.
3669 From this point on, if the sibling call fails, we want to set
3670 sibcall_failure instead of continuing the loop. */
3671 start_sequence ();
3673 /* Don't let pending stack adjusts add up to too much.
3674 Also, do all pending adjustments now if there is any chance
3675 this might be a call to alloca or if we are expanding a sibling
3676 call sequence.
3677 Also do the adjustments before a throwing call, otherwise
3678 exception handling can fail; PR 19225. */
3679 if (maybe_ge (pending_stack_adjust, 32)
3680 || (maybe_ne (pending_stack_adjust, 0)
3681 && (flags & ECF_MAY_BE_ALLOCA))
3682 || (maybe_ne (pending_stack_adjust, 0)
3683 && flag_exceptions && !(flags & ECF_NOTHROW))
3684 || pass == 0)
3685 do_pending_stack_adjust ();
3687 /* Precompute any arguments as needed. */
3688 if (pass)
3689 precompute_arguments (num_actuals, args);
3691 /* Now we are about to start emitting insns that can be deleted
3692 if a libcall is deleted. */
3693 if (pass && (flags & ECF_MALLOC))
3694 start_sequence ();
3696 if (pass == 0
3697 && crtl->stack_protect_guard
3698 && targetm.stack_protect_runtime_enabled_p ())
3699 stack_protect_epilogue ();
3701 adjusted_args_size = args_size;
3702 /* Compute the actual size of the argument block required. The variable
3703 and constant sizes must be combined, the size may have to be rounded,
3704 and there may be a minimum required size. When generating a sibcall
3705 pattern, do not round up, since we'll be re-using whatever space our
3706 caller provided. */
3707 unadjusted_args_size
3708 = compute_argument_block_size (reg_parm_stack_space,
3709 &adjusted_args_size,
3710 fndecl, fntype,
3711 (pass == 0 ? 0
3712 : preferred_stack_boundary));
3714 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
3716 /* The argument block when performing a sibling call is the
3717 incoming argument block. */
3718 if (pass == 0)
3720 argblock = crtl->args.internal_arg_pointer;
3721 if (STACK_GROWS_DOWNWARD)
3722 argblock
3723 = plus_constant (Pmode, argblock, crtl->args.pretend_args_size);
3724 else
3725 argblock
3726 = plus_constant (Pmode, argblock, -crtl->args.pretend_args_size);
3728 HOST_WIDE_INT map_size = constant_lower_bound (args_size.constant);
3729 stored_args_map = sbitmap_alloc (map_size);
3730 bitmap_clear (stored_args_map);
3731 stored_args_watermark = HOST_WIDE_INT_M1U;
3734 /* If we have no actual push instructions, or shouldn't use them,
3735 make space for all args right now. */
3736 else if (adjusted_args_size.var != 0)
3738 if (old_stack_level == 0)
3740 emit_stack_save (SAVE_BLOCK, &old_stack_level);
3741 old_stack_pointer_delta = stack_pointer_delta;
3742 old_pending_adj = pending_stack_adjust;
3743 pending_stack_adjust = 0;
3744 /* stack_arg_under_construction says whether a stack arg is
3745 being constructed at the old stack level. Pushing the stack
3746 gets a clean outgoing argument block. */
3747 old_stack_arg_under_construction = stack_arg_under_construction;
3748 stack_arg_under_construction = 0;
3750 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
3751 if (flag_stack_usage_info)
3752 current_function_has_unbounded_dynamic_stack_size = 1;
3754 else
3756 /* Note that we must go through the motions of allocating an argument
3757 block even if the size is zero because we may be storing args
3758 in the area reserved for register arguments, which may be part of
3759 the stack frame. */
3761 poly_int64 needed = adjusted_args_size.constant;
3763 /* Store the maximum argument space used. It will be pushed by
3764 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
3765 checking). */
3767 crtl->outgoing_args_size = upper_bound (crtl->outgoing_args_size,
3768 needed);
3770 if (must_preallocate)
3772 if (ACCUMULATE_OUTGOING_ARGS)
3774 /* Since the stack pointer will never be pushed, it is
3775 possible for the evaluation of a parm to clobber
3776 something we have already written to the stack.
3777 Since most function calls on RISC machines do not use
3778 the stack, this is uncommon, but must work correctly.
3780 Therefore, we save any area of the stack that was already
3781 written and that we are using. Here we set up to do this
3782 by making a new stack usage map from the old one. The
3783 actual save will be done by store_one_arg.
3785 Another approach might be to try to reorder the argument
3786 evaluations to avoid this conflicting stack usage. */
3788 /* Since we will be writing into the entire argument area,
3789 the map must be allocated for its entire size, not just
3790 the part that is the responsibility of the caller. */
3791 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
3792 needed += reg_parm_stack_space;
3794 poly_int64 limit = needed;
3795 if (ARGS_GROW_DOWNWARD)
3796 limit += 1;
3798 /* For polynomial sizes, this is the maximum possible
3799 size needed for arguments with a constant size
3800 and offset. */
3801 HOST_WIDE_INT const_limit = constant_lower_bound (limit);
3802 highest_outgoing_arg_in_use
3803 = MAX (initial_highest_arg_in_use, const_limit);
3805 free (stack_usage_map_buf);
3806 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
3807 stack_usage_map = stack_usage_map_buf;
3809 if (initial_highest_arg_in_use)
3810 memcpy (stack_usage_map, initial_stack_usage_map,
3811 initial_highest_arg_in_use);
3813 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3814 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
3815 (highest_outgoing_arg_in_use
3816 - initial_highest_arg_in_use));
3817 needed = 0;
3819 /* The address of the outgoing argument list must not be
3820 copied to a register here, because argblock would be left
3821 pointing to the wrong place after the call to
3822 allocate_dynamic_stack_space below. */
3824 argblock = virtual_outgoing_args_rtx;
3826 else
3828 /* Try to reuse some or all of the pending_stack_adjust
3829 to get this space. */
3830 if (inhibit_defer_pop == 0
3831 && (combine_pending_stack_adjustment_and_call
3832 (&needed,
3833 unadjusted_args_size,
3834 &adjusted_args_size,
3835 preferred_unit_stack_boundary)))
3837 /* combine_pending_stack_adjustment_and_call computes
3838 an adjustment before the arguments are allocated.
3839 Account for them and see whether or not the stack
3840 needs to go up or down. */
3841 needed = unadjusted_args_size - needed;
3843 /* Checked by
3844 combine_pending_stack_adjustment_and_call. */
3845 gcc_checking_assert (ordered_p (needed, 0));
3846 if (maybe_lt (needed, 0))
3848 /* We're releasing stack space. */
3849 /* ??? We can avoid any adjustment at all if we're
3850 already aligned. FIXME. */
3851 pending_stack_adjust = -needed;
3852 do_pending_stack_adjust ();
3853 needed = 0;
3855 else
3856 /* We need to allocate space. We'll do that in
3857 push_block below. */
3858 pending_stack_adjust = 0;
3861 /* Special case this because overhead of `push_block' in
3862 this case is non-trivial. */
3863 if (known_eq (needed, 0))
3864 argblock = virtual_outgoing_args_rtx;
3865 else
3867 rtx needed_rtx = gen_int_mode (needed, Pmode);
3868 argblock = push_block (needed_rtx, 0, 0);
3869 if (ARGS_GROW_DOWNWARD)
3870 argblock = plus_constant (Pmode, argblock, needed);
3873 /* We only really need to call `copy_to_reg' in the case
3874 where push insns are going to be used to pass ARGBLOCK
3875 to a function call in ARGS. In that case, the stack
3876 pointer changes value from the allocation point to the
3877 call point, and hence the value of
3878 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
3879 as well always do it. */
3880 argblock = copy_to_reg (argblock);
3885 if (ACCUMULATE_OUTGOING_ARGS)
3887 /* The save/restore code in store_one_arg handles all
3888 cases except one: a constructor call (including a C
3889 function returning a BLKmode struct) to initialize
3890 an argument. */
3891 if (stack_arg_under_construction)
3893 rtx push_size
3894 = (gen_int_mode
3895 (adjusted_args_size.constant
3896 + (OUTGOING_REG_PARM_STACK_SPACE (!fndecl ? fntype
3897 : TREE_TYPE (fndecl))
3898 ? 0 : reg_parm_stack_space), Pmode));
3899 if (old_stack_level == 0)
3901 emit_stack_save (SAVE_BLOCK, &old_stack_level);
3902 old_stack_pointer_delta = stack_pointer_delta;
3903 old_pending_adj = pending_stack_adjust;
3904 pending_stack_adjust = 0;
3905 /* stack_arg_under_construction says whether a stack
3906 arg is being constructed at the old stack level.
3907 Pushing the stack gets a clean outgoing argument
3908 block. */
3909 old_stack_arg_under_construction
3910 = stack_arg_under_construction;
3911 stack_arg_under_construction = 0;
3912 /* Make a new map for the new argument list. */
3913 free (stack_usage_map_buf);
3914 stack_usage_map_buf = XCNEWVEC (char, highest_outgoing_arg_in_use);
3915 stack_usage_map = stack_usage_map_buf;
3916 highest_outgoing_arg_in_use = 0;
3917 stack_usage_watermark = HOST_WIDE_INT_M1U;
3919 /* We can pass TRUE as the 4th argument because we just
3920 saved the stack pointer and will restore it right after
3921 the call. */
3922 allocate_dynamic_stack_space (push_size, 0, BIGGEST_ALIGNMENT,
3923 -1, true);
3926 /* If argument evaluation might modify the stack pointer,
3927 copy the address of the argument list to a register. */
3928 for (i = 0; i < num_actuals; i++)
3929 if (args[i].pass_on_stack)
3931 argblock = copy_addr_to_reg (argblock);
3932 break;
3936 compute_argument_addresses (args, argblock, num_actuals);
3938 /* Stack is properly aligned, pops can't safely be deferred during
3939 the evaluation of the arguments. */
3940 NO_DEFER_POP;
3942 /* Precompute all register parameters. It isn't safe to compute
3943 anything once we have started filling any specific hard regs.
3944 TLS symbols sometimes need a call to resolve. Precompute
3945 register parameters before any stack pointer manipulation
3946 to avoid unaligned stack in the called function. */
3947 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
3949 OK_DEFER_POP;
3951 /* Perform stack alignment before the first push (the last arg). */
3952 if (argblock == 0
3953 && maybe_gt (adjusted_args_size.constant, reg_parm_stack_space)
3954 && maybe_ne (adjusted_args_size.constant, unadjusted_args_size))
3956 /* When the stack adjustment is pending, we get better code
3957 by combining the adjustments. */
3958 if (maybe_ne (pending_stack_adjust, 0)
3959 && ! inhibit_defer_pop
3960 && (combine_pending_stack_adjustment_and_call
3961 (&pending_stack_adjust,
3962 unadjusted_args_size,
3963 &adjusted_args_size,
3964 preferred_unit_stack_boundary)))
3965 do_pending_stack_adjust ();
3966 else if (argblock == 0)
3967 anti_adjust_stack (gen_int_mode (adjusted_args_size.constant
3968 - unadjusted_args_size,
3969 Pmode));
3971 /* Now that the stack is properly aligned, pops can't safely
3972 be deferred during the evaluation of the arguments. */
3973 NO_DEFER_POP;
3975 /* Record the maximum pushed stack space size. We need to delay
3976 doing it this far to take into account the optimization done
3977 by combine_pending_stack_adjustment_and_call. */
3978 if (flag_stack_usage_info
3979 && !ACCUMULATE_OUTGOING_ARGS
3980 && pass
3981 && adjusted_args_size.var == 0)
3983 poly_int64 pushed = (adjusted_args_size.constant
3984 + pending_stack_adjust);
3985 current_function_pushed_stack_size
3986 = upper_bound (current_function_pushed_stack_size, pushed);
3989 funexp = rtx_for_function_call (fndecl, addr);
3991 if (CALL_EXPR_STATIC_CHAIN (exp))
3992 static_chain_value = expand_normal (CALL_EXPR_STATIC_CHAIN (exp));
3993 else
3994 static_chain_value = 0;
3996 #ifdef REG_PARM_STACK_SPACE
3997 /* Save the fixed argument area if it's part of the caller's frame and
3998 is clobbered by argument setup for this call. */
3999 if (ACCUMULATE_OUTGOING_ARGS && pass)
4000 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
4001 &low_to_save, &high_to_save);
4002 #endif
4004 /* Now store (and compute if necessary) all non-register parms.
4005 These come before register parms, since they can require block-moves,
4006 which could clobber the registers used for register parms.
4007 Parms which have partial registers are not stored here,
4008 but we do preallocate space here if they want that. */
4010 for (i = 0; i < num_actuals; i++)
4012 /* Delay bounds until all other args are stored. */
4013 if (POINTER_BOUNDS_P (args[i].tree_value))
4014 continue;
4015 else if (args[i].reg == 0 || args[i].pass_on_stack)
4017 rtx_insn *before_arg = get_last_insn ();
4019 /* We don't allow passing huge (> 2^30 B) arguments
4020 by value. It would cause an overflow later on. */
4021 if (constant_lower_bound (adjusted_args_size.constant)
4022 >= (1 << (HOST_BITS_PER_INT - 2)))
4024 sorry ("passing too large argument on stack");
4025 continue;
4028 if (store_one_arg (&args[i], argblock, flags,
4029 adjusted_args_size.var != 0,
4030 reg_parm_stack_space)
4031 || (pass == 0
4032 && check_sibcall_argument_overlap (before_arg,
4033 &args[i], 1)))
4034 sibcall_failure = 1;
4037 if (args[i].stack)
4038 call_fusage
4039 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
4040 gen_rtx_USE (VOIDmode, args[i].stack),
4041 call_fusage);
4044 /* If we have a parm that is passed in registers but not in memory
4045 and whose alignment does not permit a direct copy into registers,
4046 make a group of pseudos that correspond to each register that we
4047 will later fill. */
4048 if (STRICT_ALIGNMENT)
4049 store_unaligned_arguments_into_pseudos (args, num_actuals);
4051 /* Now store any partially-in-registers parm.
4052 This is the last place a block-move can happen. */
4053 if (reg_parm_seen)
4054 for (i = 0; i < num_actuals; i++)
4055 if (args[i].partial != 0 && ! args[i].pass_on_stack)
4057 rtx_insn *before_arg = get_last_insn ();
4059 /* On targets with weird calling conventions (e.g. PA) it's
4060 hard to ensure that all cases of argument overlap between
4061 stack and registers work. Play it safe and bail out. */
4062 if (ARGS_GROW_DOWNWARD && !STACK_GROWS_DOWNWARD)
4064 sibcall_failure = 1;
4065 break;
4068 if (store_one_arg (&args[i], argblock, flags,
4069 adjusted_args_size.var != 0,
4070 reg_parm_stack_space)
4071 || (pass == 0
4072 && check_sibcall_argument_overlap (before_arg,
4073 &args[i], 1)))
4074 sibcall_failure = 1;
4077 bool any_regs = false;
4078 for (i = 0; i < num_actuals; i++)
4079 if (args[i].reg != NULL_RTX)
4081 any_regs = true;
4082 targetm.calls.call_args (args[i].reg, funtype);
4084 if (!any_regs)
4085 targetm.calls.call_args (pc_rtx, funtype);
4087 /* Figure out the register where the value, if any, will come back. */
4088 valreg = 0;
4089 valbnd = 0;
4090 if (TYPE_MODE (rettype) != VOIDmode
4091 && ! structure_value_addr)
4093 if (pcc_struct_value)
4095 valreg = hard_function_value (build_pointer_type (rettype),
4096 fndecl, NULL, (pass == 0));
4097 if (CALL_WITH_BOUNDS_P (exp))
4098 valbnd = targetm.calls.
4099 chkp_function_value_bounds (build_pointer_type (rettype),
4100 fndecl, (pass == 0));
4102 else
4104 valreg = hard_function_value (rettype, fndecl, fntype,
4105 (pass == 0));
4106 if (CALL_WITH_BOUNDS_P (exp))
4107 valbnd = targetm.calls.chkp_function_value_bounds (rettype,
4108 fndecl,
4109 (pass == 0));
4112 /* If VALREG is a PARALLEL whose first member has a zero
4113 offset, use that. This is for targets such as m68k that
4114 return the same value in multiple places. */
4115 if (GET_CODE (valreg) == PARALLEL)
4117 rtx elem = XVECEXP (valreg, 0, 0);
4118 rtx where = XEXP (elem, 0);
4119 rtx offset = XEXP (elem, 1);
4120 if (offset == const0_rtx
4121 && GET_MODE (where) == GET_MODE (valreg))
4122 valreg = where;
4126 /* Store all bounds not passed in registers. */
4127 for (i = 0; i < num_actuals; i++)
4129 if (POINTER_BOUNDS_P (args[i].tree_value)
4130 && !args[i].reg)
4131 store_bounds (&args[i],
4132 args[i].pointer_arg == -1
4133 ? NULL
4134 : &args[args[i].pointer_arg]);
4137 /* If register arguments require space on the stack and stack space
4138 was not preallocated, allocate stack space here for arguments
4139 passed in registers. */
4140 if (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
4141 && !ACCUMULATE_OUTGOING_ARGS
4142 && must_preallocate == 0 && reg_parm_stack_space > 0)
4143 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
4145 /* Pass the function the address in which to return a
4146 structure value. */
4147 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
4149 structure_value_addr
4150 = convert_memory_address (Pmode, structure_value_addr);
4151 emit_move_insn (struct_value,
4152 force_reg (Pmode,
4153 force_operand (structure_value_addr,
4154 NULL_RTX)));
4156 if (REG_P (struct_value))
4157 use_reg (&call_fusage, struct_value);
4160 after_args = get_last_insn ();
4161 funexp = prepare_call_address (fndecl ? fndecl : fntype, funexp,
4162 static_chain_value, &call_fusage,
4163 reg_parm_seen, flags);
4165 load_register_parameters (args, num_actuals, &call_fusage, flags,
4166 pass == 0, &sibcall_failure);
4168 /* Save a pointer to the last insn before the call, so that we can
4169 later safely search backwards to find the CALL_INSN. */
4170 before_call = get_last_insn ();
4172 /* Set up next argument register. For sibling calls on machines
4173 with register windows this should be the incoming register. */
4174 if (pass == 0)
4175 next_arg_reg = targetm.calls.function_incoming_arg (args_so_far,
4176 VOIDmode,
4177 void_type_node,
4178 true);
4179 else
4180 next_arg_reg = targetm.calls.function_arg (args_so_far,
4181 VOIDmode, void_type_node,
4182 true);
4184 if (pass == 1 && (return_flags & ERF_RETURNS_ARG))
4186 int arg_nr = return_flags & ERF_RETURN_ARG_MASK;
4187 arg_nr = num_actuals - arg_nr - 1;
4188 if (arg_nr >= 0
4189 && arg_nr < num_actuals
4190 && args[arg_nr].reg
4191 && valreg
4192 && REG_P (valreg)
4193 && GET_MODE (args[arg_nr].reg) == GET_MODE (valreg))
4194 call_fusage
4195 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[arg_nr].tree_value)),
4196 gen_rtx_SET (valreg, args[arg_nr].reg),
4197 call_fusage);
4199 /* All arguments and registers used for the call must be set up by
4200 now! */
4202 /* Stack must be properly aligned now. */
4203 gcc_assert (!pass
4204 || multiple_p (stack_pointer_delta,
4205 preferred_unit_stack_boundary));
4207 /* Generate the actual call instruction. */
4208 emit_call_1 (funexp, exp, fndecl, funtype, unadjusted_args_size,
4209 adjusted_args_size.constant, struct_value_size,
4210 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
4211 flags, args_so_far);
4213 if (flag_ipa_ra)
4215 rtx_call_insn *last;
4216 rtx datum = NULL_RTX;
4217 if (fndecl != NULL_TREE)
4219 datum = XEXP (DECL_RTL (fndecl), 0);
4220 gcc_assert (datum != NULL_RTX
4221 && GET_CODE (datum) == SYMBOL_REF);
4223 last = last_call_insn ();
4224 add_reg_note (last, REG_CALL_DECL, datum);
4227 /* If the call setup or the call itself overlaps with anything
4228 of the argument setup we probably clobbered our call address.
4229 In that case we can't do sibcalls. */
4230 if (pass == 0
4231 && check_sibcall_argument_overlap (after_args, 0, 0))
4232 sibcall_failure = 1;
4234 /* If a non-BLKmode value is returned at the most significant end
4235 of a register, shift the register right by the appropriate amount
4236 and update VALREG accordingly. BLKmode values are handled by the
4237 group load/store machinery below. */
4238 if (!structure_value_addr
4239 && !pcc_struct_value
4240 && TYPE_MODE (rettype) != VOIDmode
4241 && TYPE_MODE (rettype) != BLKmode
4242 && REG_P (valreg)
4243 && targetm.calls.return_in_msb (rettype))
4245 if (shift_return_value (TYPE_MODE (rettype), false, valreg))
4246 sibcall_failure = 1;
4247 valreg = gen_rtx_REG (TYPE_MODE (rettype), REGNO (valreg));
4250 if (pass && (flags & ECF_MALLOC))
4252 rtx temp = gen_reg_rtx (GET_MODE (valreg));
4253 rtx_insn *last, *insns;
4255 /* The return value from a malloc-like function is a pointer. */
4256 if (TREE_CODE (rettype) == POINTER_TYPE)
4257 mark_reg_pointer (temp, MALLOC_ABI_ALIGNMENT);
4259 emit_move_insn (temp, valreg);
4261 /* The return value from a malloc-like function can not alias
4262 anything else. */
4263 last = get_last_insn ();
4264 add_reg_note (last, REG_NOALIAS, temp);
4266 /* Write out the sequence. */
4267 insns = get_insns ();
4268 end_sequence ();
4269 emit_insn (insns);
4270 valreg = temp;
4273 /* For calls to `setjmp', etc., inform
4274 function.c:setjmp_warnings that it should complain if
4275 nonvolatile values are live. For functions that cannot
4276 return, inform flow that control does not fall through. */
4278 if ((flags & ECF_NORETURN) || pass == 0)
4280 /* The barrier must be emitted
4281 immediately after the CALL_INSN. Some ports emit more
4282 than just a CALL_INSN above, so we must search for it here. */
4284 rtx_insn *last = get_last_insn ();
4285 while (!CALL_P (last))
4287 last = PREV_INSN (last);
4288 /* There was no CALL_INSN? */
4289 gcc_assert (last != before_call);
4292 emit_barrier_after (last);
4294 /* Stack adjustments after a noreturn call are dead code.
4295 However when NO_DEFER_POP is in effect, we must preserve
4296 stack_pointer_delta. */
4297 if (inhibit_defer_pop == 0)
4299 stack_pointer_delta = old_stack_allocated;
4300 pending_stack_adjust = 0;
4304 /* If value type not void, return an rtx for the value. */
4306 if (TYPE_MODE (rettype) == VOIDmode
4307 || ignore)
4308 target = const0_rtx;
4309 else if (structure_value_addr)
4311 if (target == 0 || !MEM_P (target))
4313 target
4314 = gen_rtx_MEM (TYPE_MODE (rettype),
4315 memory_address (TYPE_MODE (rettype),
4316 structure_value_addr));
4317 set_mem_attributes (target, rettype, 1);
4320 else if (pcc_struct_value)
4322 /* This is the special C++ case where we need to
4323 know what the true target was. We take care to
4324 never use this value more than once in one expression. */
4325 target = gen_rtx_MEM (TYPE_MODE (rettype),
4326 copy_to_reg (valreg));
4327 set_mem_attributes (target, rettype, 1);
4329 /* Handle calls that return values in multiple non-contiguous locations.
4330 The Irix 6 ABI has examples of this. */
4331 else if (GET_CODE (valreg) == PARALLEL)
4333 if (target == 0)
4334 target = emit_group_move_into_temps (valreg);
4335 else if (rtx_equal_p (target, valreg))
4337 else if (GET_CODE (target) == PARALLEL)
4338 /* Handle the result of a emit_group_move_into_temps
4339 call in the previous pass. */
4340 emit_group_move (target, valreg);
4341 else
4342 emit_group_store (target, valreg, rettype,
4343 int_size_in_bytes (rettype));
4345 else if (target
4346 && GET_MODE (target) == TYPE_MODE (rettype)
4347 && GET_MODE (target) == GET_MODE (valreg))
4349 bool may_overlap = false;
4351 /* We have to copy a return value in a CLASS_LIKELY_SPILLED hard
4352 reg to a plain register. */
4353 if (!REG_P (target) || HARD_REGISTER_P (target))
4354 valreg = avoid_likely_spilled_reg (valreg);
4356 /* If TARGET is a MEM in the argument area, and we have
4357 saved part of the argument area, then we can't store
4358 directly into TARGET as it may get overwritten when we
4359 restore the argument save area below. Don't work too
4360 hard though and simply force TARGET to a register if it
4361 is a MEM; the optimizer is quite likely to sort it out. */
4362 if (ACCUMULATE_OUTGOING_ARGS && pass && MEM_P (target))
4363 for (i = 0; i < num_actuals; i++)
4364 if (args[i].save_area)
4366 may_overlap = true;
4367 break;
4370 if (may_overlap)
4371 target = copy_to_reg (valreg);
4372 else
4374 /* TARGET and VALREG cannot be equal at this point
4375 because the latter would not have
4376 REG_FUNCTION_VALUE_P true, while the former would if
4377 it were referring to the same register.
4379 If they refer to the same register, this move will be
4380 a no-op, except when function inlining is being
4381 done. */
4382 emit_move_insn (target, valreg);
4384 /* If we are setting a MEM, this code must be executed.
4385 Since it is emitted after the call insn, sibcall
4386 optimization cannot be performed in that case. */
4387 if (MEM_P (target))
4388 sibcall_failure = 1;
4391 else
4392 target = copy_to_reg (avoid_likely_spilled_reg (valreg));
4394 /* If we promoted this return value, make the proper SUBREG.
4395 TARGET might be const0_rtx here, so be careful. */
4396 if (REG_P (target)
4397 && TYPE_MODE (rettype) != BLKmode
4398 && GET_MODE (target) != TYPE_MODE (rettype))
4400 tree type = rettype;
4401 int unsignedp = TYPE_UNSIGNED (type);
4402 machine_mode pmode;
4404 /* Ensure we promote as expected, and get the new unsignedness. */
4405 pmode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
4406 funtype, 1);
4407 gcc_assert (GET_MODE (target) == pmode);
4409 poly_uint64 offset = subreg_lowpart_offset (TYPE_MODE (type),
4410 GET_MODE (target));
4411 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
4412 SUBREG_PROMOTED_VAR_P (target) = 1;
4413 SUBREG_PROMOTED_SET (target, unsignedp);
4416 /* If size of args is variable or this was a constructor call for a stack
4417 argument, restore saved stack-pointer value. */
4419 if (old_stack_level)
4421 rtx_insn *prev = get_last_insn ();
4423 emit_stack_restore (SAVE_BLOCK, old_stack_level);
4424 stack_pointer_delta = old_stack_pointer_delta;
4426 fixup_args_size_notes (prev, get_last_insn (), stack_pointer_delta);
4428 pending_stack_adjust = old_pending_adj;
4429 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
4430 stack_arg_under_construction = old_stack_arg_under_construction;
4431 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4432 stack_usage_map = initial_stack_usage_map;
4433 stack_usage_watermark = initial_stack_usage_watermark;
4434 sibcall_failure = 1;
4436 else if (ACCUMULATE_OUTGOING_ARGS && pass)
4438 #ifdef REG_PARM_STACK_SPACE
4439 if (save_area)
4440 restore_fixed_argument_area (save_area, argblock,
4441 high_to_save, low_to_save);
4442 #endif
4444 /* If we saved any argument areas, restore them. */
4445 for (i = 0; i < num_actuals; i++)
4446 if (args[i].save_area)
4448 machine_mode save_mode = GET_MODE (args[i].save_area);
4449 rtx stack_area
4450 = gen_rtx_MEM (save_mode,
4451 memory_address (save_mode,
4452 XEXP (args[i].stack_slot, 0)));
4454 if (save_mode != BLKmode)
4455 emit_move_insn (stack_area, args[i].save_area);
4456 else
4457 emit_block_move (stack_area, args[i].save_area,
4458 (gen_int_mode
4459 (args[i].locate.size.constant, Pmode)),
4460 BLOCK_OP_CALL_PARM);
4463 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4464 stack_usage_map = initial_stack_usage_map;
4465 stack_usage_watermark = initial_stack_usage_watermark;
4468 /* If this was alloca, record the new stack level. */
4469 if (flags & ECF_MAY_BE_ALLOCA)
4470 record_new_stack_level ();
4472 /* Free up storage we no longer need. */
4473 for (i = 0; i < num_actuals; ++i)
4474 free (args[i].aligned_regs);
4476 targetm.calls.end_call_args ();
4478 insns = get_insns ();
4479 end_sequence ();
4481 if (pass == 0)
4483 tail_call_insns = insns;
4485 /* Restore the pending stack adjustment now that we have
4486 finished generating the sibling call sequence. */
4488 restore_pending_stack_adjust (&save);
4490 /* Prepare arg structure for next iteration. */
4491 for (i = 0; i < num_actuals; i++)
4493 args[i].value = 0;
4494 args[i].aligned_regs = 0;
4495 args[i].stack = 0;
4498 sbitmap_free (stored_args_map);
4499 internal_arg_pointer_exp_state.scan_start = NULL;
4500 internal_arg_pointer_exp_state.cache.release ();
4502 else
4504 normal_call_insns = insns;
4506 /* Verify that we've deallocated all the stack we used. */
4507 gcc_assert ((flags & ECF_NORETURN)
4508 || known_eq (old_stack_allocated,
4509 stack_pointer_delta
4510 - pending_stack_adjust));
4513 /* If something prevents making this a sibling call,
4514 zero out the sequence. */
4515 if (sibcall_failure)
4516 tail_call_insns = NULL;
4517 else
4518 break;
4521 /* If tail call production succeeded, we need to remove REG_EQUIV notes on
4522 arguments too, as argument area is now clobbered by the call. */
4523 if (tail_call_insns)
4525 emit_insn (tail_call_insns);
4526 crtl->tail_call_emit = true;
4528 else
4530 emit_insn (normal_call_insns);
4531 if (try_tail_call)
4532 /* Ideally we'd emit a message for all of the ways that it could
4533 have failed. */
4534 maybe_complain_about_tail_call (exp, "tail call production failed");
4537 currently_expanding_call--;
4539 free (stack_usage_map_buf);
4540 free (args);
4542 /* Join result with returned bounds so caller may use them if needed. */
4543 target = chkp_join_splitted_slot (target, valbnd);
4545 return target;
4548 /* A sibling call sequence invalidates any REG_EQUIV notes made for
4549 this function's incoming arguments.
4551 At the start of RTL generation we know the only REG_EQUIV notes
4552 in the rtl chain are those for incoming arguments, so we can look
4553 for REG_EQUIV notes between the start of the function and the
4554 NOTE_INSN_FUNCTION_BEG.
4556 This is (slight) overkill. We could keep track of the highest
4557 argument we clobber and be more selective in removing notes, but it
4558 does not seem to be worth the effort. */
4560 void
4561 fixup_tail_calls (void)
4563 rtx_insn *insn;
4565 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
4567 rtx note;
4569 /* There are never REG_EQUIV notes for the incoming arguments
4570 after the NOTE_INSN_FUNCTION_BEG note, so stop if we see it. */
4571 if (NOTE_P (insn)
4572 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
4573 break;
4575 note = find_reg_note (insn, REG_EQUIV, 0);
4576 if (note)
4577 remove_note (insn, note);
4578 note = find_reg_note (insn, REG_EQUIV, 0);
4579 gcc_assert (!note);
4583 /* Traverse a list of TYPES and expand all complex types into their
4584 components. */
4585 static tree
4586 split_complex_types (tree types)
4588 tree p;
4590 /* Before allocating memory, check for the common case of no complex. */
4591 for (p = types; p; p = TREE_CHAIN (p))
4593 tree type = TREE_VALUE (p);
4594 if (TREE_CODE (type) == COMPLEX_TYPE
4595 && targetm.calls.split_complex_arg (type))
4596 goto found;
4598 return types;
4600 found:
4601 types = copy_list (types);
4603 for (p = types; p; p = TREE_CHAIN (p))
4605 tree complex_type = TREE_VALUE (p);
4607 if (TREE_CODE (complex_type) == COMPLEX_TYPE
4608 && targetm.calls.split_complex_arg (complex_type))
4610 tree next, imag;
4612 /* Rewrite complex type with component type. */
4613 TREE_VALUE (p) = TREE_TYPE (complex_type);
4614 next = TREE_CHAIN (p);
4616 /* Add another component type for the imaginary part. */
4617 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
4618 TREE_CHAIN (p) = imag;
4619 TREE_CHAIN (imag) = next;
4621 /* Skip the newly created node. */
4622 p = TREE_CHAIN (p);
4626 return types;
4629 /* Output a library call to function ORGFUN (a SYMBOL_REF rtx)
4630 for a value of mode OUTMODE,
4631 with NARGS different arguments, passed as ARGS.
4632 Store the return value if RETVAL is nonzero: store it in VALUE if
4633 VALUE is nonnull, otherwise pick a convenient location. In either
4634 case return the location of the stored value.
4636 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for
4637 `const' calls, LCT_PURE for `pure' calls, or another LCT_ value for
4638 other types of library calls. */
4641 emit_library_call_value_1 (int retval, rtx orgfun, rtx value,
4642 enum libcall_type fn_type,
4643 machine_mode outmode, int nargs, rtx_mode_t *args)
4645 /* Total size in bytes of all the stack-parms scanned so far. */
4646 struct args_size args_size;
4647 /* Size of arguments before any adjustments (such as rounding). */
4648 struct args_size original_args_size;
4649 int argnum;
4650 rtx fun;
4651 /* Todo, choose the correct decl type of orgfun. Sadly this information
4652 isn't present here, so we default to native calling abi here. */
4653 tree fndecl ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
4654 tree fntype ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
4655 int count;
4656 rtx argblock = 0;
4657 CUMULATIVE_ARGS args_so_far_v;
4658 cumulative_args_t args_so_far;
4659 struct arg
4661 rtx value;
4662 machine_mode mode;
4663 rtx reg;
4664 int partial;
4665 struct locate_and_pad_arg_data locate;
4666 rtx save_area;
4668 struct arg *argvec;
4669 int old_inhibit_defer_pop = inhibit_defer_pop;
4670 rtx call_fusage = 0;
4671 rtx mem_value = 0;
4672 rtx valreg;
4673 int pcc_struct_value = 0;
4674 int struct_value_size = 0;
4675 int flags;
4676 int reg_parm_stack_space = 0;
4677 poly_int64 needed;
4678 rtx_insn *before_call;
4679 bool have_push_fusage;
4680 tree tfom; /* type_for_mode (outmode, 0) */
4682 #ifdef REG_PARM_STACK_SPACE
4683 /* Define the boundary of the register parm stack space that needs to be
4684 save, if any. */
4685 int low_to_save = 0, high_to_save = 0;
4686 rtx save_area = 0; /* Place that it is saved. */
4687 #endif
4689 /* Size of the stack reserved for parameter registers. */
4690 unsigned int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
4691 char *initial_stack_usage_map = stack_usage_map;
4692 unsigned HOST_WIDE_INT initial_stack_usage_watermark = stack_usage_watermark;
4693 char *stack_usage_map_buf = NULL;
4695 rtx struct_value = targetm.calls.struct_value_rtx (0, 0);
4697 #ifdef REG_PARM_STACK_SPACE
4698 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
4699 #endif
4701 /* By default, library functions cannot throw. */
4702 flags = ECF_NOTHROW;
4704 switch (fn_type)
4706 case LCT_NORMAL:
4707 break;
4708 case LCT_CONST:
4709 flags |= ECF_CONST;
4710 break;
4711 case LCT_PURE:
4712 flags |= ECF_PURE;
4713 break;
4714 case LCT_NORETURN:
4715 flags |= ECF_NORETURN;
4716 break;
4717 case LCT_THROW:
4718 flags &= ~ECF_NOTHROW;
4719 break;
4720 case LCT_RETURNS_TWICE:
4721 flags = ECF_RETURNS_TWICE;
4722 break;
4724 fun = orgfun;
4726 /* Ensure current function's preferred stack boundary is at least
4727 what we need. */
4728 if (crtl->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
4729 crtl->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
4731 /* If this kind of value comes back in memory,
4732 decide where in memory it should come back. */
4733 if (outmode != VOIDmode)
4735 tfom = lang_hooks.types.type_for_mode (outmode, 0);
4736 if (aggregate_value_p (tfom, 0))
4738 #ifdef PCC_STATIC_STRUCT_RETURN
4739 rtx pointer_reg
4740 = hard_function_value (build_pointer_type (tfom), 0, 0, 0);
4741 mem_value = gen_rtx_MEM (outmode, pointer_reg);
4742 pcc_struct_value = 1;
4743 if (value == 0)
4744 value = gen_reg_rtx (outmode);
4745 #else /* not PCC_STATIC_STRUCT_RETURN */
4746 struct_value_size = GET_MODE_SIZE (outmode);
4747 if (value != 0 && MEM_P (value))
4748 mem_value = value;
4749 else
4750 mem_value = assign_temp (tfom, 1, 1);
4751 #endif
4752 /* This call returns a big structure. */
4753 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
4756 else
4757 tfom = void_type_node;
4759 /* ??? Unfinished: must pass the memory address as an argument. */
4761 /* Copy all the libcall-arguments out of the varargs data
4762 and into a vector ARGVEC.
4764 Compute how to pass each argument. We only support a very small subset
4765 of the full argument passing conventions to limit complexity here since
4766 library functions shouldn't have many args. */
4768 argvec = XALLOCAVEC (struct arg, nargs + 1);
4769 memset (argvec, 0, (nargs + 1) * sizeof (struct arg));
4771 #ifdef INIT_CUMULATIVE_LIBCALL_ARGS
4772 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far_v, outmode, fun);
4773 #else
4774 INIT_CUMULATIVE_ARGS (args_so_far_v, NULL_TREE, fun, 0, nargs);
4775 #endif
4776 args_so_far = pack_cumulative_args (&args_so_far_v);
4778 args_size.constant = 0;
4779 args_size.var = 0;
4781 count = 0;
4783 push_temp_slots ();
4785 /* If there's a structure value address to be passed,
4786 either pass it in the special place, or pass it as an extra argument. */
4787 if (mem_value && struct_value == 0 && ! pcc_struct_value)
4789 rtx addr = XEXP (mem_value, 0);
4791 nargs++;
4793 /* Make sure it is a reasonable operand for a move or push insn. */
4794 if (!REG_P (addr) && !MEM_P (addr)
4795 && !(CONSTANT_P (addr)
4796 && targetm.legitimate_constant_p (Pmode, addr)))
4797 addr = force_operand (addr, NULL_RTX);
4799 argvec[count].value = addr;
4800 argvec[count].mode = Pmode;
4801 argvec[count].partial = 0;
4803 argvec[count].reg = targetm.calls.function_arg (args_so_far,
4804 Pmode, NULL_TREE, true);
4805 gcc_assert (targetm.calls.arg_partial_bytes (args_so_far, Pmode,
4806 NULL_TREE, 1) == 0);
4808 locate_and_pad_parm (Pmode, NULL_TREE,
4809 #ifdef STACK_PARMS_IN_REG_PARM_AREA
4811 #else
4812 argvec[count].reg != 0,
4813 #endif
4814 reg_parm_stack_space, 0,
4815 NULL_TREE, &args_size, &argvec[count].locate);
4817 if (argvec[count].reg == 0 || argvec[count].partial != 0
4818 || reg_parm_stack_space > 0)
4819 args_size.constant += argvec[count].locate.size.constant;
4821 targetm.calls.function_arg_advance (args_so_far, Pmode, (tree) 0, true);
4823 count++;
4826 for (unsigned int i = 0; count < nargs; i++, count++)
4828 rtx val = args[i].first;
4829 machine_mode mode = args[i].second;
4830 int unsigned_p = 0;
4832 /* We cannot convert the arg value to the mode the library wants here;
4833 must do it earlier where we know the signedness of the arg. */
4834 gcc_assert (mode != BLKmode
4835 && (GET_MODE (val) == mode || GET_MODE (val) == VOIDmode));
4837 /* Make sure it is a reasonable operand for a move or push insn. */
4838 if (!REG_P (val) && !MEM_P (val)
4839 && !(CONSTANT_P (val) && targetm.legitimate_constant_p (mode, val)))
4840 val = force_operand (val, NULL_RTX);
4842 if (pass_by_reference (&args_so_far_v, mode, NULL_TREE, 1))
4844 rtx slot;
4845 int must_copy
4846 = !reference_callee_copied (&args_so_far_v, mode, NULL_TREE, 1);
4848 /* If this was a CONST function, it is now PURE since it now
4849 reads memory. */
4850 if (flags & ECF_CONST)
4852 flags &= ~ECF_CONST;
4853 flags |= ECF_PURE;
4856 if (MEM_P (val) && !must_copy)
4858 tree val_expr = MEM_EXPR (val);
4859 if (val_expr)
4860 mark_addressable (val_expr);
4861 slot = val;
4863 else
4865 slot = assign_temp (lang_hooks.types.type_for_mode (mode, 0),
4866 1, 1);
4867 emit_move_insn (slot, val);
4870 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
4871 gen_rtx_USE (VOIDmode, slot),
4872 call_fusage);
4873 if (must_copy)
4874 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
4875 gen_rtx_CLOBBER (VOIDmode,
4876 slot),
4877 call_fusage);
4879 mode = Pmode;
4880 val = force_operand (XEXP (slot, 0), NULL_RTX);
4883 mode = promote_function_mode (NULL_TREE, mode, &unsigned_p, NULL_TREE, 0);
4884 argvec[count].mode = mode;
4885 argvec[count].value = convert_modes (mode, GET_MODE (val), val, unsigned_p);
4886 argvec[count].reg = targetm.calls.function_arg (args_so_far, mode,
4887 NULL_TREE, true);
4889 argvec[count].partial
4890 = targetm.calls.arg_partial_bytes (args_so_far, mode, NULL_TREE, 1);
4892 if (argvec[count].reg == 0
4893 || argvec[count].partial != 0
4894 || reg_parm_stack_space > 0)
4896 locate_and_pad_parm (mode, NULL_TREE,
4897 #ifdef STACK_PARMS_IN_REG_PARM_AREA
4899 #else
4900 argvec[count].reg != 0,
4901 #endif
4902 reg_parm_stack_space, argvec[count].partial,
4903 NULL_TREE, &args_size, &argvec[count].locate);
4904 args_size.constant += argvec[count].locate.size.constant;
4905 gcc_assert (!argvec[count].locate.size.var);
4907 #ifdef BLOCK_REG_PADDING
4908 else
4909 /* The argument is passed entirely in registers. See at which
4910 end it should be padded. */
4911 argvec[count].locate.where_pad =
4912 BLOCK_REG_PADDING (mode, NULL_TREE,
4913 GET_MODE_SIZE (mode) <= UNITS_PER_WORD);
4914 #endif
4916 targetm.calls.function_arg_advance (args_so_far, mode, (tree) 0, true);
4919 /* If this machine requires an external definition for library
4920 functions, write one out. */
4921 assemble_external_libcall (fun);
4923 original_args_size = args_size;
4924 args_size.constant = (aligned_upper_bound (args_size.constant
4925 + stack_pointer_delta,
4926 STACK_BYTES)
4927 - stack_pointer_delta);
4929 args_size.constant = upper_bound (args_size.constant,
4930 reg_parm_stack_space);
4932 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
4933 args_size.constant -= reg_parm_stack_space;
4935 crtl->outgoing_args_size = upper_bound (crtl->outgoing_args_size,
4936 args_size.constant);
4938 if (flag_stack_usage_info && !ACCUMULATE_OUTGOING_ARGS)
4940 poly_int64 pushed = args_size.constant + pending_stack_adjust;
4941 current_function_pushed_stack_size
4942 = upper_bound (current_function_pushed_stack_size, pushed);
4945 if (ACCUMULATE_OUTGOING_ARGS)
4947 /* Since the stack pointer will never be pushed, it is possible for
4948 the evaluation of a parm to clobber something we have already
4949 written to the stack. Since most function calls on RISC machines
4950 do not use the stack, this is uncommon, but must work correctly.
4952 Therefore, we save any area of the stack that was already written
4953 and that we are using. Here we set up to do this by making a new
4954 stack usage map from the old one.
4956 Another approach might be to try to reorder the argument
4957 evaluations to avoid this conflicting stack usage. */
4959 needed = args_size.constant;
4961 /* Since we will be writing into the entire argument area, the
4962 map must be allocated for its entire size, not just the part that
4963 is the responsibility of the caller. */
4964 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
4965 needed += reg_parm_stack_space;
4967 poly_int64 limit = needed;
4968 if (ARGS_GROW_DOWNWARD)
4969 limit += 1;
4971 /* For polynomial sizes, this is the maximum possible size needed
4972 for arguments with a constant size and offset. */
4973 HOST_WIDE_INT const_limit = constant_lower_bound (limit);
4974 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
4975 const_limit);
4977 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
4978 stack_usage_map = stack_usage_map_buf;
4980 if (initial_highest_arg_in_use)
4981 memcpy (stack_usage_map, initial_stack_usage_map,
4982 initial_highest_arg_in_use);
4984 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
4985 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
4986 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
4987 needed = 0;
4989 /* We must be careful to use virtual regs before they're instantiated,
4990 and real regs afterwards. Loop optimization, for example, can create
4991 new libcalls after we've instantiated the virtual regs, and if we
4992 use virtuals anyway, they won't match the rtl patterns. */
4994 if (virtuals_instantiated)
4995 argblock = plus_constant (Pmode, stack_pointer_rtx,
4996 STACK_POINTER_OFFSET);
4997 else
4998 argblock = virtual_outgoing_args_rtx;
5000 else
5002 if (!PUSH_ARGS)
5003 argblock = push_block (gen_int_mode (args_size.constant, Pmode), 0, 0);
5006 /* We push args individually in reverse order, perform stack alignment
5007 before the first push (the last arg). */
5008 if (argblock == 0)
5009 anti_adjust_stack (gen_int_mode (args_size.constant
5010 - original_args_size.constant,
5011 Pmode));
5013 argnum = nargs - 1;
5015 #ifdef REG_PARM_STACK_SPACE
5016 if (ACCUMULATE_OUTGOING_ARGS)
5018 /* The argument list is the property of the called routine and it
5019 may clobber it. If the fixed area has been used for previous
5020 parameters, we must save and restore it. */
5021 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
5022 &low_to_save, &high_to_save);
5024 #endif
5026 /* When expanding a normal call, args are stored in push order,
5027 which is the reverse of what we have here. */
5028 bool any_regs = false;
5029 for (int i = nargs; i-- > 0; )
5030 if (argvec[i].reg != NULL_RTX)
5032 targetm.calls.call_args (argvec[i].reg, NULL_TREE);
5033 any_regs = true;
5035 if (!any_regs)
5036 targetm.calls.call_args (pc_rtx, NULL_TREE);
5038 /* Push the args that need to be pushed. */
5040 have_push_fusage = false;
5042 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
5043 are to be pushed. */
5044 for (count = 0; count < nargs; count++, argnum--)
5046 machine_mode mode = argvec[argnum].mode;
5047 rtx val = argvec[argnum].value;
5048 rtx reg = argvec[argnum].reg;
5049 int partial = argvec[argnum].partial;
5050 unsigned int parm_align = argvec[argnum].locate.boundary;
5051 poly_int64 lower_bound = 0, upper_bound = 0;
5053 if (! (reg != 0 && partial == 0))
5055 rtx use;
5057 if (ACCUMULATE_OUTGOING_ARGS)
5059 /* If this is being stored into a pre-allocated, fixed-size,
5060 stack area, save any previous data at that location. */
5062 if (ARGS_GROW_DOWNWARD)
5064 /* stack_slot is negative, but we want to index stack_usage_map
5065 with positive values. */
5066 upper_bound = -argvec[argnum].locate.slot_offset.constant + 1;
5067 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
5069 else
5071 lower_bound = argvec[argnum].locate.slot_offset.constant;
5072 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
5075 if (stack_region_maybe_used_p (lower_bound, upper_bound,
5076 reg_parm_stack_space))
5078 /* We need to make a save area. */
5079 poly_uint64 size
5080 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
5081 machine_mode save_mode
5082 = int_mode_for_size (size, 1).else_blk ();
5083 rtx adr
5084 = plus_constant (Pmode, argblock,
5085 argvec[argnum].locate.offset.constant);
5086 rtx stack_area
5087 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
5089 if (save_mode == BLKmode)
5091 argvec[argnum].save_area
5092 = assign_stack_temp (BLKmode,
5093 argvec[argnum].locate.size.constant
5096 emit_block_move (validize_mem
5097 (copy_rtx (argvec[argnum].save_area)),
5098 stack_area,
5099 (gen_int_mode
5100 (argvec[argnum].locate.size.constant,
5101 Pmode)),
5102 BLOCK_OP_CALL_PARM);
5104 else
5106 argvec[argnum].save_area = gen_reg_rtx (save_mode);
5108 emit_move_insn (argvec[argnum].save_area, stack_area);
5113 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, parm_align,
5114 partial, reg, 0, argblock,
5115 (gen_int_mode
5116 (argvec[argnum].locate.offset.constant, Pmode)),
5117 reg_parm_stack_space,
5118 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad), false);
5120 /* Now mark the segment we just used. */
5121 if (ACCUMULATE_OUTGOING_ARGS)
5122 mark_stack_region_used (lower_bound, upper_bound);
5124 NO_DEFER_POP;
5126 /* Indicate argument access so that alias.c knows that these
5127 values are live. */
5128 if (argblock)
5129 use = plus_constant (Pmode, argblock,
5130 argvec[argnum].locate.offset.constant);
5131 else if (have_push_fusage)
5132 continue;
5133 else
5135 /* When arguments are pushed, trying to tell alias.c where
5136 exactly this argument is won't work, because the
5137 auto-increment causes confusion. So we merely indicate
5138 that we access something with a known mode somewhere on
5139 the stack. */
5140 use = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
5141 gen_rtx_SCRATCH (Pmode));
5142 have_push_fusage = true;
5144 use = gen_rtx_MEM (argvec[argnum].mode, use);
5145 use = gen_rtx_USE (VOIDmode, use);
5146 call_fusage = gen_rtx_EXPR_LIST (VOIDmode, use, call_fusage);
5150 argnum = nargs - 1;
5152 fun = prepare_call_address (NULL, fun, NULL, &call_fusage, 0, 0);
5154 /* Now load any reg parms into their regs. */
5156 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
5157 are to be pushed. */
5158 for (count = 0; count < nargs; count++, argnum--)
5160 machine_mode mode = argvec[argnum].mode;
5161 rtx val = argvec[argnum].value;
5162 rtx reg = argvec[argnum].reg;
5163 int partial = argvec[argnum].partial;
5164 #ifdef BLOCK_REG_PADDING
5165 int size = 0;
5166 #endif
5168 /* Handle calls that pass values in multiple non-contiguous
5169 locations. The PA64 has examples of this for library calls. */
5170 if (reg != 0 && GET_CODE (reg) == PARALLEL)
5171 emit_group_load (reg, val, NULL_TREE, GET_MODE_SIZE (mode));
5172 else if (reg != 0 && partial == 0)
5174 emit_move_insn (reg, val);
5175 #ifdef BLOCK_REG_PADDING
5176 size = GET_MODE_SIZE (argvec[argnum].mode);
5178 /* Copied from load_register_parameters. */
5180 /* Handle case where we have a value that needs shifting
5181 up to the msb. eg. a QImode value and we're padding
5182 upward on a BYTES_BIG_ENDIAN machine. */
5183 if (size < UNITS_PER_WORD
5184 && (argvec[argnum].locate.where_pad
5185 == (BYTES_BIG_ENDIAN ? PAD_UPWARD : PAD_DOWNWARD)))
5187 rtx x;
5188 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
5190 /* Assigning REG here rather than a temp makes CALL_FUSAGE
5191 report the whole reg as used. Strictly speaking, the
5192 call only uses SIZE bytes at the msb end, but it doesn't
5193 seem worth generating rtl to say that. */
5194 reg = gen_rtx_REG (word_mode, REGNO (reg));
5195 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
5196 if (x != reg)
5197 emit_move_insn (reg, x);
5199 #endif
5202 NO_DEFER_POP;
5205 /* Any regs containing parms remain in use through the call. */
5206 for (count = 0; count < nargs; count++)
5208 rtx reg = argvec[count].reg;
5209 if (reg != 0 && GET_CODE (reg) == PARALLEL)
5210 use_group_regs (&call_fusage, reg);
5211 else if (reg != 0)
5213 int partial = argvec[count].partial;
5214 if (partial)
5216 int nregs;
5217 gcc_assert (partial % UNITS_PER_WORD == 0);
5218 nregs = partial / UNITS_PER_WORD;
5219 use_regs (&call_fusage, REGNO (reg), nregs);
5221 else
5222 use_reg (&call_fusage, reg);
5226 /* Pass the function the address in which to return a structure value. */
5227 if (mem_value != 0 && struct_value != 0 && ! pcc_struct_value)
5229 emit_move_insn (struct_value,
5230 force_reg (Pmode,
5231 force_operand (XEXP (mem_value, 0),
5232 NULL_RTX)));
5233 if (REG_P (struct_value))
5234 use_reg (&call_fusage, struct_value);
5237 /* Don't allow popping to be deferred, since then
5238 cse'ing of library calls could delete a call and leave the pop. */
5239 NO_DEFER_POP;
5240 valreg = (mem_value == 0 && outmode != VOIDmode
5241 ? hard_libcall_value (outmode, orgfun) : NULL_RTX);
5243 /* Stack must be properly aligned now. */
5244 gcc_assert (multiple_p (stack_pointer_delta,
5245 PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT));
5247 before_call = get_last_insn ();
5249 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
5250 will set inhibit_defer_pop to that value. */
5251 /* The return type is needed to decide how many bytes the function pops.
5252 Signedness plays no role in that, so for simplicity, we pretend it's
5253 always signed. We also assume that the list of arguments passed has
5254 no impact, so we pretend it is unknown. */
5256 emit_call_1 (fun, NULL,
5257 get_identifier (XSTR (orgfun, 0)),
5258 build_function_type (tfom, NULL_TREE),
5259 original_args_size.constant, args_size.constant,
5260 struct_value_size,
5261 targetm.calls.function_arg (args_so_far,
5262 VOIDmode, void_type_node, true),
5263 valreg,
5264 old_inhibit_defer_pop + 1, call_fusage, flags, args_so_far);
5266 if (flag_ipa_ra)
5268 rtx datum = orgfun;
5269 gcc_assert (GET_CODE (datum) == SYMBOL_REF);
5270 rtx_call_insn *last = last_call_insn ();
5271 add_reg_note (last, REG_CALL_DECL, datum);
5274 /* Right-shift returned value if necessary. */
5275 if (!pcc_struct_value
5276 && TYPE_MODE (tfom) != BLKmode
5277 && targetm.calls.return_in_msb (tfom))
5279 shift_return_value (TYPE_MODE (tfom), false, valreg);
5280 valreg = gen_rtx_REG (TYPE_MODE (tfom), REGNO (valreg));
5283 targetm.calls.end_call_args ();
5285 /* For calls to `setjmp', etc., inform function.c:setjmp_warnings
5286 that it should complain if nonvolatile values are live. For
5287 functions that cannot return, inform flow that control does not
5288 fall through. */
5289 if (flags & ECF_NORETURN)
5291 /* The barrier note must be emitted
5292 immediately after the CALL_INSN. Some ports emit more than
5293 just a CALL_INSN above, so we must search for it here. */
5294 rtx_insn *last = get_last_insn ();
5295 while (!CALL_P (last))
5297 last = PREV_INSN (last);
5298 /* There was no CALL_INSN? */
5299 gcc_assert (last != before_call);
5302 emit_barrier_after (last);
5305 /* Consider that "regular" libcalls, i.e. all of them except for LCT_THROW
5306 and LCT_RETURNS_TWICE, cannot perform non-local gotos. */
5307 if (flags & ECF_NOTHROW)
5309 rtx_insn *last = get_last_insn ();
5310 while (!CALL_P (last))
5312 last = PREV_INSN (last);
5313 /* There was no CALL_INSN? */
5314 gcc_assert (last != before_call);
5317 make_reg_eh_region_note_nothrow_nononlocal (last);
5320 /* Now restore inhibit_defer_pop to its actual original value. */
5321 OK_DEFER_POP;
5323 pop_temp_slots ();
5325 /* Copy the value to the right place. */
5326 if (outmode != VOIDmode && retval)
5328 if (mem_value)
5330 if (value == 0)
5331 value = mem_value;
5332 if (value != mem_value)
5333 emit_move_insn (value, mem_value);
5335 else if (GET_CODE (valreg) == PARALLEL)
5337 if (value == 0)
5338 value = gen_reg_rtx (outmode);
5339 emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode));
5341 else
5343 /* Convert to the proper mode if a promotion has been active. */
5344 if (GET_MODE (valreg) != outmode)
5346 int unsignedp = TYPE_UNSIGNED (tfom);
5348 gcc_assert (promote_function_mode (tfom, outmode, &unsignedp,
5349 fndecl ? TREE_TYPE (fndecl) : fntype, 1)
5350 == GET_MODE (valreg));
5351 valreg = convert_modes (outmode, GET_MODE (valreg), valreg, 0);
5354 if (value != 0)
5355 emit_move_insn (value, valreg);
5356 else
5357 value = valreg;
5361 if (ACCUMULATE_OUTGOING_ARGS)
5363 #ifdef REG_PARM_STACK_SPACE
5364 if (save_area)
5365 restore_fixed_argument_area (save_area, argblock,
5366 high_to_save, low_to_save);
5367 #endif
5369 /* If we saved any argument areas, restore them. */
5370 for (count = 0; count < nargs; count++)
5371 if (argvec[count].save_area)
5373 machine_mode save_mode = GET_MODE (argvec[count].save_area);
5374 rtx adr = plus_constant (Pmode, argblock,
5375 argvec[count].locate.offset.constant);
5376 rtx stack_area = gen_rtx_MEM (save_mode,
5377 memory_address (save_mode, adr));
5379 if (save_mode == BLKmode)
5380 emit_block_move (stack_area,
5381 validize_mem
5382 (copy_rtx (argvec[count].save_area)),
5383 (gen_int_mode
5384 (argvec[count].locate.size.constant, Pmode)),
5385 BLOCK_OP_CALL_PARM);
5386 else
5387 emit_move_insn (stack_area, argvec[count].save_area);
5390 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
5391 stack_usage_map = initial_stack_usage_map;
5392 stack_usage_watermark = initial_stack_usage_watermark;
5395 free (stack_usage_map_buf);
5397 return value;
5402 /* Store pointer bounds argument ARG into Bounds Table entry
5403 associated with PARM. */
5404 static void
5405 store_bounds (struct arg_data *arg, struct arg_data *parm)
5407 rtx slot = NULL, ptr = NULL, addr = NULL;
5409 /* We may pass bounds not associated with any pointer. */
5410 if (!parm)
5412 gcc_assert (arg->special_slot);
5413 slot = arg->special_slot;
5414 ptr = const0_rtx;
5416 /* Find pointer associated with bounds and where it is
5417 passed. */
5418 else
5420 if (!parm->reg)
5422 gcc_assert (!arg->special_slot);
5424 addr = adjust_address (parm->stack, Pmode, arg->pointer_offset);
5426 else if (REG_P (parm->reg))
5428 gcc_assert (arg->special_slot);
5429 slot = arg->special_slot;
5431 if (MEM_P (parm->value))
5432 addr = adjust_address (parm->value, Pmode, arg->pointer_offset);
5433 else if (REG_P (parm->value))
5434 ptr = gen_rtx_SUBREG (Pmode, parm->value, arg->pointer_offset);
5435 else
5437 gcc_assert (!arg->pointer_offset);
5438 ptr = parm->value;
5441 else
5443 gcc_assert (GET_CODE (parm->reg) == PARALLEL);
5445 gcc_assert (arg->special_slot);
5446 slot = arg->special_slot;
5448 if (parm->parallel_value)
5449 ptr = chkp_get_value_with_offs (parm->parallel_value,
5450 GEN_INT (arg->pointer_offset));
5451 else
5452 gcc_unreachable ();
5456 /* Expand bounds. */
5457 if (!arg->value)
5458 arg->value = expand_normal (arg->tree_value);
5460 targetm.calls.store_bounds_for_arg (ptr, addr, arg->value, slot);
5463 /* Store a single argument for a function call
5464 into the register or memory area where it must be passed.
5465 *ARG describes the argument value and where to pass it.
5467 ARGBLOCK is the address of the stack-block for all the arguments,
5468 or 0 on a machine where arguments are pushed individually.
5470 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
5471 so must be careful about how the stack is used.
5473 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
5474 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
5475 that we need not worry about saving and restoring the stack.
5477 FNDECL is the declaration of the function we are calling.
5479 Return nonzero if this arg should cause sibcall failure,
5480 zero otherwise. */
5482 static int
5483 store_one_arg (struct arg_data *arg, rtx argblock, int flags,
5484 int variable_size ATTRIBUTE_UNUSED, int reg_parm_stack_space)
5486 tree pval = arg->tree_value;
5487 rtx reg = 0;
5488 int partial = 0;
5489 poly_int64 used = 0;
5490 poly_int64 lower_bound = 0, upper_bound = 0;
5491 int sibcall_failure = 0;
5493 if (TREE_CODE (pval) == ERROR_MARK)
5494 return 1;
5496 /* Push a new temporary level for any temporaries we make for
5497 this argument. */
5498 push_temp_slots ();
5500 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
5502 /* If this is being stored into a pre-allocated, fixed-size, stack area,
5503 save any previous data at that location. */
5504 if (argblock && ! variable_size && arg->stack)
5506 if (ARGS_GROW_DOWNWARD)
5508 /* stack_slot is negative, but we want to index stack_usage_map
5509 with positive values. */
5510 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
5512 rtx offset = XEXP (XEXP (arg->stack_slot, 0), 1);
5513 upper_bound = -rtx_to_poly_int64 (offset) + 1;
5515 else
5516 upper_bound = 0;
5518 lower_bound = upper_bound - arg->locate.size.constant;
5520 else
5522 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
5524 rtx offset = XEXP (XEXP (arg->stack_slot, 0), 1);
5525 lower_bound = rtx_to_poly_int64 (offset);
5527 else
5528 lower_bound = 0;
5530 upper_bound = lower_bound + arg->locate.size.constant;
5533 if (stack_region_maybe_used_p (lower_bound, upper_bound,
5534 reg_parm_stack_space))
5536 /* We need to make a save area. */
5537 poly_uint64 size = arg->locate.size.constant * BITS_PER_UNIT;
5538 machine_mode save_mode
5539 = int_mode_for_size (size, 1).else_blk ();
5540 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
5541 rtx stack_area = gen_rtx_MEM (save_mode, adr);
5543 if (save_mode == BLKmode)
5545 arg->save_area
5546 = assign_temp (TREE_TYPE (arg->tree_value), 1, 1);
5547 preserve_temp_slots (arg->save_area);
5548 emit_block_move (validize_mem (copy_rtx (arg->save_area)),
5549 stack_area,
5550 (gen_int_mode
5551 (arg->locate.size.constant, Pmode)),
5552 BLOCK_OP_CALL_PARM);
5554 else
5556 arg->save_area = gen_reg_rtx (save_mode);
5557 emit_move_insn (arg->save_area, stack_area);
5563 /* If this isn't going to be placed on both the stack and in registers,
5564 set up the register and number of words. */
5565 if (! arg->pass_on_stack)
5567 if (flags & ECF_SIBCALL)
5568 reg = arg->tail_call_reg;
5569 else
5570 reg = arg->reg;
5571 partial = arg->partial;
5574 /* Being passed entirely in a register. We shouldn't be called in
5575 this case. */
5576 gcc_assert (reg == 0 || partial != 0);
5578 /* If this arg needs special alignment, don't load the registers
5579 here. */
5580 if (arg->n_aligned_regs != 0)
5581 reg = 0;
5583 /* If this is being passed partially in a register, we can't evaluate
5584 it directly into its stack slot. Otherwise, we can. */
5585 if (arg->value == 0)
5587 /* stack_arg_under_construction is nonzero if a function argument is
5588 being evaluated directly into the outgoing argument list and
5589 expand_call must take special action to preserve the argument list
5590 if it is called recursively.
5592 For scalar function arguments stack_usage_map is sufficient to
5593 determine which stack slots must be saved and restored. Scalar
5594 arguments in general have pass_on_stack == 0.
5596 If this argument is initialized by a function which takes the
5597 address of the argument (a C++ constructor or a C function
5598 returning a BLKmode structure), then stack_usage_map is
5599 insufficient and expand_call must push the stack around the
5600 function call. Such arguments have pass_on_stack == 1.
5602 Note that it is always safe to set stack_arg_under_construction,
5603 but this generates suboptimal code if set when not needed. */
5605 if (arg->pass_on_stack)
5606 stack_arg_under_construction++;
5608 arg->value = expand_expr (pval,
5609 (partial
5610 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
5611 ? NULL_RTX : arg->stack,
5612 VOIDmode, EXPAND_STACK_PARM);
5614 /* If we are promoting object (or for any other reason) the mode
5615 doesn't agree, convert the mode. */
5617 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
5618 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
5619 arg->value, arg->unsignedp);
5621 if (arg->pass_on_stack)
5622 stack_arg_under_construction--;
5625 /* Check for overlap with already clobbered argument area. */
5626 if ((flags & ECF_SIBCALL)
5627 && MEM_P (arg->value)
5628 && mem_might_overlap_already_clobbered_arg_p (XEXP (arg->value, 0),
5629 arg->locate.size.constant))
5630 sibcall_failure = 1;
5632 /* Don't allow anything left on stack from computation
5633 of argument to alloca. */
5634 if (flags & ECF_MAY_BE_ALLOCA)
5635 do_pending_stack_adjust ();
5637 if (arg->value == arg->stack)
5638 /* If the value is already in the stack slot, we are done. */
5640 else if (arg->mode != BLKmode)
5642 int size;
5643 unsigned int parm_align;
5645 /* Argument is a scalar, not entirely passed in registers.
5646 (If part is passed in registers, arg->partial says how much
5647 and emit_push_insn will take care of putting it there.)
5649 Push it, and if its size is less than the
5650 amount of space allocated to it,
5651 also bump stack pointer by the additional space.
5652 Note that in C the default argument promotions
5653 will prevent such mismatches. */
5655 if (TYPE_EMPTY_P (TREE_TYPE (pval)))
5656 size = 0;
5657 else
5658 size = GET_MODE_SIZE (arg->mode);
5660 /* Compute how much space the push instruction will push.
5661 On many machines, pushing a byte will advance the stack
5662 pointer by a halfword. */
5663 #ifdef PUSH_ROUNDING
5664 size = PUSH_ROUNDING (size);
5665 #endif
5666 used = size;
5668 /* Compute how much space the argument should get:
5669 round up to a multiple of the alignment for arguments. */
5670 if (targetm.calls.function_arg_padding (arg->mode, TREE_TYPE (pval))
5671 != PAD_NONE)
5672 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
5673 / (PARM_BOUNDARY / BITS_PER_UNIT))
5674 * (PARM_BOUNDARY / BITS_PER_UNIT));
5676 /* Compute the alignment of the pushed argument. */
5677 parm_align = arg->locate.boundary;
5678 if (targetm.calls.function_arg_padding (arg->mode, TREE_TYPE (pval))
5679 == PAD_DOWNWARD)
5681 poly_int64 pad = used - size;
5682 unsigned int pad_align = known_alignment (pad) * BITS_PER_UNIT;
5683 if (pad_align != 0)
5684 parm_align = MIN (parm_align, pad_align);
5687 /* This isn't already where we want it on the stack, so put it there.
5688 This can either be done with push or copy insns. */
5689 if (maybe_ne (used, 0)
5690 && !emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval),
5691 NULL_RTX, parm_align, partial, reg, used - size,
5692 argblock, ARGS_SIZE_RTX (arg->locate.offset),
5693 reg_parm_stack_space,
5694 ARGS_SIZE_RTX (arg->locate.alignment_pad), true))
5695 sibcall_failure = 1;
5697 /* Unless this is a partially-in-register argument, the argument is now
5698 in the stack. */
5699 if (partial == 0)
5700 arg->value = arg->stack;
5702 else
5704 /* BLKmode, at least partly to be pushed. */
5706 unsigned int parm_align;
5707 poly_int64 excess;
5708 rtx size_rtx;
5710 /* Pushing a nonscalar.
5711 If part is passed in registers, PARTIAL says how much
5712 and emit_push_insn will take care of putting it there. */
5714 /* Round its size up to a multiple
5715 of the allocation unit for arguments. */
5717 if (arg->locate.size.var != 0)
5719 excess = 0;
5720 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
5722 else
5724 /* PUSH_ROUNDING has no effect on us, because emit_push_insn
5725 for BLKmode is careful to avoid it. */
5726 excess = (arg->locate.size.constant
5727 - arg_int_size_in_bytes (TREE_TYPE (pval))
5728 + partial);
5729 size_rtx = expand_expr (arg_size_in_bytes (TREE_TYPE (pval)),
5730 NULL_RTX, TYPE_MODE (sizetype),
5731 EXPAND_NORMAL);
5734 parm_align = arg->locate.boundary;
5736 /* When an argument is padded down, the block is aligned to
5737 PARM_BOUNDARY, but the actual argument isn't. */
5738 if (targetm.calls.function_arg_padding (arg->mode, TREE_TYPE (pval))
5739 == PAD_DOWNWARD)
5741 if (arg->locate.size.var)
5742 parm_align = BITS_PER_UNIT;
5743 else
5745 unsigned int excess_align
5746 = known_alignment (excess) * BITS_PER_UNIT;
5747 if (excess_align != 0)
5748 parm_align = MIN (parm_align, excess_align);
5752 if ((flags & ECF_SIBCALL) && MEM_P (arg->value))
5754 /* emit_push_insn might not work properly if arg->value and
5755 argblock + arg->locate.offset areas overlap. */
5756 rtx x = arg->value;
5757 poly_int64 i = 0;
5759 if (XEXP (x, 0) == crtl->args.internal_arg_pointer
5760 || (GET_CODE (XEXP (x, 0)) == PLUS
5761 && XEXP (XEXP (x, 0), 0) ==
5762 crtl->args.internal_arg_pointer
5763 && CONST_INT_P (XEXP (XEXP (x, 0), 1))))
5765 if (XEXP (x, 0) != crtl->args.internal_arg_pointer)
5766 i = rtx_to_poly_int64 (XEXP (XEXP (x, 0), 1));
5768 /* arg.locate doesn't contain the pretend_args_size offset,
5769 it's part of argblock. Ensure we don't count it in I. */
5770 if (STACK_GROWS_DOWNWARD)
5771 i -= crtl->args.pretend_args_size;
5772 else
5773 i += crtl->args.pretend_args_size;
5775 /* expand_call should ensure this. */
5776 gcc_assert (!arg->locate.offset.var
5777 && arg->locate.size.var == 0);
5778 poly_int64 size_val = rtx_to_poly_int64 (size_rtx);
5780 if (known_eq (arg->locate.offset.constant, i))
5782 /* Even though they appear to be at the same location,
5783 if part of the outgoing argument is in registers,
5784 they aren't really at the same location. Check for
5785 this by making sure that the incoming size is the
5786 same as the outgoing size. */
5787 if (maybe_ne (arg->locate.size.constant, size_val))
5788 sibcall_failure = 1;
5790 else if (maybe_in_range_p (arg->locate.offset.constant,
5791 i, size_val))
5792 sibcall_failure = 1;
5793 /* Use arg->locate.size.constant instead of size_rtx
5794 because we only care about the part of the argument
5795 on the stack. */
5796 else if (maybe_in_range_p (i, arg->locate.offset.constant,
5797 arg->locate.size.constant))
5798 sibcall_failure = 1;
5802 if (!CONST_INT_P (size_rtx) || INTVAL (size_rtx) != 0)
5803 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
5804 parm_align, partial, reg, excess, argblock,
5805 ARGS_SIZE_RTX (arg->locate.offset),
5806 reg_parm_stack_space,
5807 ARGS_SIZE_RTX (arg->locate.alignment_pad), false);
5809 /* Unless this is a partially-in-register argument, the argument is now
5810 in the stack.
5812 ??? Unlike the case above, in which we want the actual
5813 address of the data, so that we can load it directly into a
5814 register, here we want the address of the stack slot, so that
5815 it's properly aligned for word-by-word copying or something
5816 like that. It's not clear that this is always correct. */
5817 if (partial == 0)
5818 arg->value = arg->stack_slot;
5821 if (arg->reg && GET_CODE (arg->reg) == PARALLEL)
5823 tree type = TREE_TYPE (arg->tree_value);
5824 arg->parallel_value
5825 = emit_group_load_into_temps (arg->reg, arg->value, type,
5826 int_size_in_bytes (type));
5829 /* Mark all slots this store used. */
5830 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
5831 && argblock && ! variable_size && arg->stack)
5832 mark_stack_region_used (lower_bound, upper_bound);
5834 /* Once we have pushed something, pops can't safely
5835 be deferred during the rest of the arguments. */
5836 NO_DEFER_POP;
5838 /* Free any temporary slots made in processing this argument. */
5839 pop_temp_slots ();
5841 return sibcall_failure;
5844 /* Nonzero if we do not know how to pass TYPE solely in registers. */
5846 bool
5847 must_pass_in_stack_var_size (machine_mode mode ATTRIBUTE_UNUSED,
5848 const_tree type)
5850 if (!type)
5851 return false;
5853 /* If the type has variable size... */
5854 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5855 return true;
5857 /* If the type is marked as addressable (it is required
5858 to be constructed into the stack)... */
5859 if (TREE_ADDRESSABLE (type))
5860 return true;
5862 return false;
5865 /* Another version of the TARGET_MUST_PASS_IN_STACK hook. This one
5866 takes trailing padding of a structure into account. */
5867 /* ??? Should be able to merge these two by examining BLOCK_REG_PADDING. */
5869 bool
5870 must_pass_in_stack_var_size_or_pad (machine_mode mode, const_tree type)
5872 if (!type)
5873 return false;
5875 /* If the type has variable size... */
5876 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5877 return true;
5879 /* If the type is marked as addressable (it is required
5880 to be constructed into the stack)... */
5881 if (TREE_ADDRESSABLE (type))
5882 return true;
5884 if (TYPE_EMPTY_P (type))
5885 return false;
5887 /* If the padding and mode of the type is such that a copy into
5888 a register would put it into the wrong part of the register. */
5889 if (mode == BLKmode
5890 && int_size_in_bytes (type) % (PARM_BOUNDARY / BITS_PER_UNIT)
5891 && (targetm.calls.function_arg_padding (mode, type)
5892 == (BYTES_BIG_ENDIAN ? PAD_UPWARD : PAD_DOWNWARD)))
5893 return true;
5895 return false;
5898 /* Tell the garbage collector about GTY markers in this source file. */
5899 #include "gt-calls.h"