Remove assert in get_def_bb_for_const
[official-gcc.git] / gcc / calls.c
blob587969fcf016ec020fc77faf09b901c87cd5c58e
1 /* Convert function calls to rtl insns, for GNU C compiler.
2 Copyright (C) 1989-2016 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "backend.h"
24 #include "target.h"
25 #include "rtl.h"
26 #include "tree.h"
27 #include "gimple.h"
28 #include "predict.h"
29 #include "tm_p.h"
30 #include "stringpool.h"
31 #include "expmed.h"
32 #include "optabs.h"
33 #include "emit-rtl.h"
34 #include "cgraph.h"
35 #include "diagnostic-core.h"
36 #include "fold-const.h"
37 #include "stor-layout.h"
38 #include "varasm.h"
39 #include "internal-fn.h"
40 #include "dojump.h"
41 #include "explow.h"
42 #include "calls.h"
43 #include "expr.h"
44 #include "output.h"
45 #include "langhooks.h"
46 #include "except.h"
47 #include "dbgcnt.h"
48 #include "rtl-iter.h"
49 #include "tree-chkp.h"
50 #include "rtl-chkp.h"
53 /* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
54 #define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
56 /* Data structure and subroutines used within expand_call. */
58 struct arg_data
60 /* Tree node for this argument. */
61 tree tree_value;
62 /* Mode for value; TYPE_MODE unless promoted. */
63 machine_mode mode;
64 /* Current RTL value for argument, or 0 if it isn't precomputed. */
65 rtx value;
66 /* Initially-compute RTL value for argument; only for const functions. */
67 rtx initial_value;
68 /* Register to pass this argument in, 0 if passed on stack, or an
69 PARALLEL if the arg is to be copied into multiple non-contiguous
70 registers. */
71 rtx reg;
72 /* Register to pass this argument in when generating tail call sequence.
73 This is not the same register as for normal calls on machines with
74 register windows. */
75 rtx tail_call_reg;
76 /* If REG is a PARALLEL, this is a copy of VALUE pulled into the correct
77 form for emit_group_move. */
78 rtx parallel_value;
79 /* If value is passed in neither reg nor stack, this field holds a number
80 of a special slot to be used. */
81 rtx special_slot;
82 /* For pointer bounds hold an index of parm bounds are bound to. -1 if
83 there is no such pointer. */
84 int pointer_arg;
85 /* If pointer_arg refers a structure, then pointer_offset holds an offset
86 of a pointer in this structure. */
87 int pointer_offset;
88 /* If REG was promoted from the actual mode of the argument expression,
89 indicates whether the promotion is sign- or zero-extended. */
90 int unsignedp;
91 /* Number of bytes to put in registers. 0 means put the whole arg
92 in registers. Also 0 if not passed in registers. */
93 int partial;
94 /* Nonzero if argument must be passed on stack.
95 Note that some arguments may be passed on the stack
96 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
97 pass_on_stack identifies arguments that *cannot* go in registers. */
98 int pass_on_stack;
99 /* Some fields packaged up for locate_and_pad_parm. */
100 struct locate_and_pad_arg_data locate;
101 /* Location on the stack at which parameter should be stored. The store
102 has already been done if STACK == VALUE. */
103 rtx stack;
104 /* Location on the stack of the start of this argument slot. This can
105 differ from STACK if this arg pads downward. This location is known
106 to be aligned to TARGET_FUNCTION_ARG_BOUNDARY. */
107 rtx stack_slot;
108 /* Place that this stack area has been saved, if needed. */
109 rtx save_area;
110 /* If an argument's alignment does not permit direct copying into registers,
111 copy in smaller-sized pieces into pseudos. These are stored in a
112 block pointed to by this field. The next field says how many
113 word-sized pseudos we made. */
114 rtx *aligned_regs;
115 int n_aligned_regs;
118 /* A vector of one char per byte of stack space. A byte if nonzero if
119 the corresponding stack location has been used.
120 This vector is used to prevent a function call within an argument from
121 clobbering any stack already set up. */
122 static char *stack_usage_map;
124 /* Size of STACK_USAGE_MAP. */
125 static int highest_outgoing_arg_in_use;
127 /* A bitmap of virtual-incoming stack space. Bit is set if the corresponding
128 stack location's tail call argument has been already stored into the stack.
129 This bitmap is used to prevent sibling call optimization if function tries
130 to use parent's incoming argument slots when they have been already
131 overwritten with tail call arguments. */
132 static sbitmap stored_args_map;
134 /* stack_arg_under_construction is nonzero when an argument may be
135 initialized with a constructor call (including a C function that
136 returns a BLKmode struct) and expand_call must take special action
137 to make sure the object being constructed does not overlap the
138 argument list for the constructor call. */
139 static int stack_arg_under_construction;
141 static void emit_call_1 (rtx, tree, tree, tree, HOST_WIDE_INT, HOST_WIDE_INT,
142 HOST_WIDE_INT, rtx, rtx, int, rtx, int,
143 cumulative_args_t);
144 static void precompute_register_parameters (int, struct arg_data *, int *);
145 static void store_bounds (struct arg_data *, struct arg_data *);
146 static int store_one_arg (struct arg_data *, rtx, int, int, int);
147 static void store_unaligned_arguments_into_pseudos (struct arg_data *, int);
148 static int finalize_must_preallocate (int, int, struct arg_data *,
149 struct args_size *);
150 static void precompute_arguments (int, struct arg_data *);
151 static int compute_argument_block_size (int, struct args_size *, tree, tree, int);
152 static void initialize_argument_information (int, struct arg_data *,
153 struct args_size *, int,
154 tree, tree,
155 tree, tree, cumulative_args_t, int,
156 rtx *, int *, int *, int *,
157 bool *, bool);
158 static void compute_argument_addresses (struct arg_data *, rtx, int);
159 static rtx rtx_for_function_call (tree, tree);
160 static void load_register_parameters (struct arg_data *, int, rtx *, int,
161 int, int *);
162 static rtx emit_library_call_value_1 (int, rtx, rtx, enum libcall_type,
163 machine_mode, int, va_list);
164 static int special_function_p (const_tree, int);
165 static int check_sibcall_argument_overlap_1 (rtx);
166 static int check_sibcall_argument_overlap (rtx_insn *, struct arg_data *, int);
168 static int combine_pending_stack_adjustment_and_call (int, struct args_size *,
169 unsigned int);
170 static tree split_complex_types (tree);
172 #ifdef REG_PARM_STACK_SPACE
173 static rtx save_fixed_argument_area (int, rtx, int *, int *);
174 static void restore_fixed_argument_area (rtx, rtx, int, int);
175 #endif
177 /* Force FUNEXP into a form suitable for the address of a CALL,
178 and return that as an rtx. Also load the static chain register
179 if FNDECL is a nested function.
181 CALL_FUSAGE points to a variable holding the prospective
182 CALL_INSN_FUNCTION_USAGE information. */
185 prepare_call_address (tree fndecl_or_type, rtx funexp, rtx static_chain_value,
186 rtx *call_fusage, int reg_parm_seen, int sibcallp)
188 /* Make a valid memory address and copy constants through pseudo-regs,
189 but not for a constant address if -fno-function-cse. */
190 if (GET_CODE (funexp) != SYMBOL_REF)
191 /* If we are using registers for parameters, force the
192 function address into a register now. */
193 funexp = ((reg_parm_seen
194 && targetm.small_register_classes_for_mode_p (FUNCTION_MODE))
195 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
196 : memory_address (FUNCTION_MODE, funexp));
197 else if (! sibcallp)
199 if (!NO_FUNCTION_CSE && optimize && ! flag_no_function_cse)
200 funexp = force_reg (Pmode, funexp);
203 if (static_chain_value != 0
204 && (TREE_CODE (fndecl_or_type) != FUNCTION_DECL
205 || DECL_STATIC_CHAIN (fndecl_or_type)))
207 rtx chain;
209 chain = targetm.calls.static_chain (fndecl_or_type, false);
210 static_chain_value = convert_memory_address (Pmode, static_chain_value);
212 emit_move_insn (chain, static_chain_value);
213 if (REG_P (chain))
214 use_reg (call_fusage, chain);
217 return funexp;
220 /* Generate instructions to call function FUNEXP,
221 and optionally pop the results.
222 The CALL_INSN is the first insn generated.
224 FNDECL is the declaration node of the function. This is given to the
225 hook TARGET_RETURN_POPS_ARGS to determine whether this function pops
226 its own args.
228 FUNTYPE is the data type of the function. This is given to the hook
229 TARGET_RETURN_POPS_ARGS to determine whether this function pops its
230 own args. We used to allow an identifier for library functions, but
231 that doesn't work when the return type is an aggregate type and the
232 calling convention says that the pointer to this aggregate is to be
233 popped by the callee.
235 STACK_SIZE is the number of bytes of arguments on the stack,
236 ROUNDED_STACK_SIZE is that number rounded up to
237 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
238 both to put into the call insn and to generate explicit popping
239 code if necessary.
241 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
242 It is zero if this call doesn't want a structure value.
244 NEXT_ARG_REG is the rtx that results from executing
245 targetm.calls.function_arg (&args_so_far, VOIDmode, void_type_node, true)
246 just after all the args have had their registers assigned.
247 This could be whatever you like, but normally it is the first
248 arg-register beyond those used for args in this call,
249 or 0 if all the arg-registers are used in this call.
250 It is passed on to `gen_call' so you can put this info in the call insn.
252 VALREG is a hard register in which a value is returned,
253 or 0 if the call does not return a value.
255 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
256 the args to this call were processed.
257 We restore `inhibit_defer_pop' to that value.
259 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
260 denote registers used by the called function. */
262 static void
263 emit_call_1 (rtx funexp, tree fntree ATTRIBUTE_UNUSED, tree fndecl ATTRIBUTE_UNUSED,
264 tree funtype ATTRIBUTE_UNUSED,
265 HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED,
266 HOST_WIDE_INT rounded_stack_size,
267 HOST_WIDE_INT struct_value_size ATTRIBUTE_UNUSED,
268 rtx next_arg_reg ATTRIBUTE_UNUSED, rtx valreg,
269 int old_inhibit_defer_pop, rtx call_fusage, int ecf_flags,
270 cumulative_args_t args_so_far ATTRIBUTE_UNUSED)
272 rtx rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
273 rtx call, funmem, pat;
274 int already_popped = 0;
275 HOST_WIDE_INT n_popped = 0;
277 /* Sibling call patterns never pop arguments (no sibcall(_value)_pop
278 patterns exist). Any popping that the callee does on return will
279 be from our caller's frame rather than ours. */
280 if (!(ecf_flags & ECF_SIBCALL))
282 n_popped += targetm.calls.return_pops_args (fndecl, funtype, stack_size);
284 #ifdef CALL_POPS_ARGS
285 n_popped += CALL_POPS_ARGS (*get_cumulative_args (args_so_far));
286 #endif
289 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
290 and we don't want to load it into a register as an optimization,
291 because prepare_call_address already did it if it should be done. */
292 if (GET_CODE (funexp) != SYMBOL_REF)
293 funexp = memory_address (FUNCTION_MODE, funexp);
295 funmem = gen_rtx_MEM (FUNCTION_MODE, funexp);
296 if (fndecl && TREE_CODE (fndecl) == FUNCTION_DECL)
298 tree t = fndecl;
300 /* Although a built-in FUNCTION_DECL and its non-__builtin
301 counterpart compare equal and get a shared mem_attrs, they
302 produce different dump output in compare-debug compilations,
303 if an entry gets garbage collected in one compilation, then
304 adds a different (but equivalent) entry, while the other
305 doesn't run the garbage collector at the same spot and then
306 shares the mem_attr with the equivalent entry. */
307 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
309 tree t2 = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
310 if (t2)
311 t = t2;
314 set_mem_expr (funmem, t);
316 else if (fntree)
317 set_mem_expr (funmem, build_simple_mem_ref (CALL_EXPR_FN (fntree)));
319 if (ecf_flags & ECF_SIBCALL)
321 if (valreg)
322 pat = targetm.gen_sibcall_value (valreg, funmem,
323 rounded_stack_size_rtx,
324 next_arg_reg, NULL_RTX);
325 else
326 pat = targetm.gen_sibcall (funmem, rounded_stack_size_rtx,
327 next_arg_reg, GEN_INT (struct_value_size));
329 /* If the target has "call" or "call_value" insns, then prefer them
330 if no arguments are actually popped. If the target does not have
331 "call" or "call_value" insns, then we must use the popping versions
332 even if the call has no arguments to pop. */
333 else if (n_popped > 0
334 || !(valreg
335 ? targetm.have_call_value ()
336 : targetm.have_call ()))
338 rtx n_pop = GEN_INT (n_popped);
340 /* If this subroutine pops its own args, record that in the call insn
341 if possible, for the sake of frame pointer elimination. */
343 if (valreg)
344 pat = targetm.gen_call_value_pop (valreg, funmem,
345 rounded_stack_size_rtx,
346 next_arg_reg, n_pop);
347 else
348 pat = targetm.gen_call_pop (funmem, rounded_stack_size_rtx,
349 next_arg_reg, n_pop);
351 already_popped = 1;
353 else
355 if (valreg)
356 pat = targetm.gen_call_value (valreg, funmem, rounded_stack_size_rtx,
357 next_arg_reg, NULL_RTX);
358 else
359 pat = targetm.gen_call (funmem, rounded_stack_size_rtx, next_arg_reg,
360 GEN_INT (struct_value_size));
362 emit_insn (pat);
364 /* Find the call we just emitted. */
365 rtx_call_insn *call_insn = last_call_insn ();
367 /* Some target create a fresh MEM instead of reusing the one provided
368 above. Set its MEM_EXPR. */
369 call = get_call_rtx_from (call_insn);
370 if (call
371 && MEM_EXPR (XEXP (call, 0)) == NULL_TREE
372 && MEM_EXPR (funmem) != NULL_TREE)
373 set_mem_expr (XEXP (call, 0), MEM_EXPR (funmem));
375 /* Mark instrumented calls. */
376 if (call && fntree)
377 CALL_EXPR_WITH_BOUNDS_P (call) = CALL_WITH_BOUNDS_P (fntree);
379 /* Put the register usage information there. */
380 add_function_usage_to (call_insn, call_fusage);
382 /* If this is a const call, then set the insn's unchanging bit. */
383 if (ecf_flags & ECF_CONST)
384 RTL_CONST_CALL_P (call_insn) = 1;
386 /* If this is a pure call, then set the insn's unchanging bit. */
387 if (ecf_flags & ECF_PURE)
388 RTL_PURE_CALL_P (call_insn) = 1;
390 /* If this is a const call, then set the insn's unchanging bit. */
391 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
392 RTL_LOOPING_CONST_OR_PURE_CALL_P (call_insn) = 1;
394 /* Create a nothrow REG_EH_REGION note, if needed. */
395 make_reg_eh_region_note (call_insn, ecf_flags, 0);
397 if (ecf_flags & ECF_NORETURN)
398 add_reg_note (call_insn, REG_NORETURN, const0_rtx);
400 if (ecf_flags & ECF_RETURNS_TWICE)
402 add_reg_note (call_insn, REG_SETJMP, const0_rtx);
403 cfun->calls_setjmp = 1;
406 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
408 /* Restore this now, so that we do defer pops for this call's args
409 if the context of the call as a whole permits. */
410 inhibit_defer_pop = old_inhibit_defer_pop;
412 if (n_popped > 0)
414 if (!already_popped)
415 CALL_INSN_FUNCTION_USAGE (call_insn)
416 = gen_rtx_EXPR_LIST (VOIDmode,
417 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
418 CALL_INSN_FUNCTION_USAGE (call_insn));
419 rounded_stack_size -= n_popped;
420 rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
421 stack_pointer_delta -= n_popped;
423 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
425 /* If popup is needed, stack realign must use DRAP */
426 if (SUPPORTS_STACK_ALIGNMENT)
427 crtl->need_drap = true;
429 /* For noreturn calls when not accumulating outgoing args force
430 REG_ARGS_SIZE note to prevent crossjumping of calls with different
431 args sizes. */
432 else if (!ACCUMULATE_OUTGOING_ARGS && (ecf_flags & ECF_NORETURN) != 0)
433 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
435 if (!ACCUMULATE_OUTGOING_ARGS)
437 /* If returning from the subroutine does not automatically pop the args,
438 we need an instruction to pop them sooner or later.
439 Perhaps do it now; perhaps just record how much space to pop later.
441 If returning from the subroutine does pop the args, indicate that the
442 stack pointer will be changed. */
444 if (rounded_stack_size != 0)
446 if (ecf_flags & ECF_NORETURN)
447 /* Just pretend we did the pop. */
448 stack_pointer_delta -= rounded_stack_size;
449 else if (flag_defer_pop && inhibit_defer_pop == 0
450 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
451 pending_stack_adjust += rounded_stack_size;
452 else
453 adjust_stack (rounded_stack_size_rtx);
456 /* When we accumulate outgoing args, we must avoid any stack manipulations.
457 Restore the stack pointer to its original value now. Usually
458 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
459 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
460 popping variants of functions exist as well.
462 ??? We may optimize similar to defer_pop above, but it is
463 probably not worthwhile.
465 ??? It will be worthwhile to enable combine_stack_adjustments even for
466 such machines. */
467 else if (n_popped)
468 anti_adjust_stack (GEN_INT (n_popped));
471 /* Determine if the function identified by NAME and FNDECL is one with
472 special properties we wish to know about.
474 For example, if the function might return more than one time (setjmp), then
475 set RETURNS_TWICE to a nonzero value.
477 Similarly set NORETURN if the function is in the longjmp family.
479 Set MAY_BE_ALLOCA for any memory allocation function that might allocate
480 space from the stack such as alloca. */
482 static int
483 special_function_p (const_tree fndecl, int flags)
485 tree name_decl = DECL_NAME (fndecl);
487 /* For instrumentation clones we want to derive flags
488 from the original name. */
489 if (cgraph_node::get (fndecl)
490 && cgraph_node::get (fndecl)->instrumentation_clone)
491 name_decl = DECL_NAME (cgraph_node::get (fndecl)->orig_decl);
493 if (fndecl && name_decl
494 && IDENTIFIER_LENGTH (name_decl) <= 17
495 /* Exclude functions not at the file scope, or not `extern',
496 since they are not the magic functions we would otherwise
497 think they are.
498 FIXME: this should be handled with attributes, not with this
499 hacky imitation of DECL_ASSEMBLER_NAME. It's (also) wrong
500 because you can declare fork() inside a function if you
501 wish. */
502 && (DECL_CONTEXT (fndecl) == NULL_TREE
503 || TREE_CODE (DECL_CONTEXT (fndecl)) == TRANSLATION_UNIT_DECL)
504 && TREE_PUBLIC (fndecl))
506 const char *name = IDENTIFIER_POINTER (name_decl);
507 const char *tname = name;
509 /* We assume that alloca will always be called by name. It
510 makes no sense to pass it as a pointer-to-function to
511 anything that does not understand its behavior. */
512 if (IDENTIFIER_LENGTH (name_decl) == 6
513 && name[0] == 'a'
514 && ! strcmp (name, "alloca"))
515 flags |= ECF_MAY_BE_ALLOCA;
517 /* Disregard prefix _, __, __x or __builtin_. */
518 if (name[0] == '_')
520 if (name[1] == '_'
521 && name[2] == 'b'
522 && !strncmp (name + 3, "uiltin_", 7))
523 tname += 10;
524 else if (name[1] == '_' && name[2] == 'x')
525 tname += 3;
526 else if (name[1] == '_')
527 tname += 2;
528 else
529 tname += 1;
532 if (tname[0] == 's')
534 if ((tname[1] == 'e'
535 && (! strcmp (tname, "setjmp")
536 || ! strcmp (tname, "setjmp_syscall")))
537 || (tname[1] == 'i'
538 && ! strcmp (tname, "sigsetjmp"))
539 || (tname[1] == 'a'
540 && ! strcmp (tname, "savectx")))
541 flags |= ECF_RETURNS_TWICE | ECF_LEAF;
543 if (tname[1] == 'i'
544 && ! strcmp (tname, "siglongjmp"))
545 flags |= ECF_NORETURN;
547 else if ((tname[0] == 'q' && tname[1] == 's'
548 && ! strcmp (tname, "qsetjmp"))
549 || (tname[0] == 'v' && tname[1] == 'f'
550 && ! strcmp (tname, "vfork"))
551 || (tname[0] == 'g' && tname[1] == 'e'
552 && !strcmp (tname, "getcontext")))
553 flags |= ECF_RETURNS_TWICE | ECF_LEAF;
555 else if (tname[0] == 'l' && tname[1] == 'o'
556 && ! strcmp (tname, "longjmp"))
557 flags |= ECF_NORETURN;
560 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
561 switch (DECL_FUNCTION_CODE (fndecl))
563 case BUILT_IN_ALLOCA:
564 case BUILT_IN_ALLOCA_WITH_ALIGN:
565 flags |= ECF_MAY_BE_ALLOCA;
566 break;
567 default:
568 break;
571 return flags;
574 /* Similar to special_function_p; return a set of ERF_ flags for the
575 function FNDECL. */
576 static int
577 decl_return_flags (tree fndecl)
579 tree attr;
580 tree type = TREE_TYPE (fndecl);
581 if (!type)
582 return 0;
584 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
585 if (!attr)
586 return 0;
588 attr = TREE_VALUE (TREE_VALUE (attr));
589 if (!attr || TREE_STRING_LENGTH (attr) < 1)
590 return 0;
592 switch (TREE_STRING_POINTER (attr)[0])
594 case '1':
595 case '2':
596 case '3':
597 case '4':
598 return ERF_RETURNS_ARG | (TREE_STRING_POINTER (attr)[0] - '1');
600 case 'm':
601 return ERF_NOALIAS;
603 case '.':
604 default:
605 return 0;
609 /* Return nonzero when FNDECL represents a call to setjmp. */
612 setjmp_call_p (const_tree fndecl)
614 if (DECL_IS_RETURNS_TWICE (fndecl))
615 return ECF_RETURNS_TWICE;
616 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
620 /* Return true if STMT is an alloca call. */
622 bool
623 gimple_alloca_call_p (const gimple *stmt)
625 tree fndecl;
627 if (!is_gimple_call (stmt))
628 return false;
630 fndecl = gimple_call_fndecl (stmt);
631 if (fndecl && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
632 return true;
634 return false;
637 /* Return true when exp contains alloca call. */
639 bool
640 alloca_call_p (const_tree exp)
642 tree fndecl;
643 if (TREE_CODE (exp) == CALL_EXPR
644 && (fndecl = get_callee_fndecl (exp))
645 && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
646 return true;
647 return false;
650 /* Return TRUE if FNDECL is either a TM builtin or a TM cloned
651 function. Return FALSE otherwise. */
653 static bool
654 is_tm_builtin (const_tree fndecl)
656 if (fndecl == NULL)
657 return false;
659 if (decl_is_tm_clone (fndecl))
660 return true;
662 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
664 switch (DECL_FUNCTION_CODE (fndecl))
666 case BUILT_IN_TM_COMMIT:
667 case BUILT_IN_TM_COMMIT_EH:
668 case BUILT_IN_TM_ABORT:
669 case BUILT_IN_TM_IRREVOCABLE:
670 case BUILT_IN_TM_GETTMCLONE_IRR:
671 case BUILT_IN_TM_MEMCPY:
672 case BUILT_IN_TM_MEMMOVE:
673 case BUILT_IN_TM_MEMSET:
674 CASE_BUILT_IN_TM_STORE (1):
675 CASE_BUILT_IN_TM_STORE (2):
676 CASE_BUILT_IN_TM_STORE (4):
677 CASE_BUILT_IN_TM_STORE (8):
678 CASE_BUILT_IN_TM_STORE (FLOAT):
679 CASE_BUILT_IN_TM_STORE (DOUBLE):
680 CASE_BUILT_IN_TM_STORE (LDOUBLE):
681 CASE_BUILT_IN_TM_STORE (M64):
682 CASE_BUILT_IN_TM_STORE (M128):
683 CASE_BUILT_IN_TM_STORE (M256):
684 CASE_BUILT_IN_TM_LOAD (1):
685 CASE_BUILT_IN_TM_LOAD (2):
686 CASE_BUILT_IN_TM_LOAD (4):
687 CASE_BUILT_IN_TM_LOAD (8):
688 CASE_BUILT_IN_TM_LOAD (FLOAT):
689 CASE_BUILT_IN_TM_LOAD (DOUBLE):
690 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
691 CASE_BUILT_IN_TM_LOAD (M64):
692 CASE_BUILT_IN_TM_LOAD (M128):
693 CASE_BUILT_IN_TM_LOAD (M256):
694 case BUILT_IN_TM_LOG:
695 case BUILT_IN_TM_LOG_1:
696 case BUILT_IN_TM_LOG_2:
697 case BUILT_IN_TM_LOG_4:
698 case BUILT_IN_TM_LOG_8:
699 case BUILT_IN_TM_LOG_FLOAT:
700 case BUILT_IN_TM_LOG_DOUBLE:
701 case BUILT_IN_TM_LOG_LDOUBLE:
702 case BUILT_IN_TM_LOG_M64:
703 case BUILT_IN_TM_LOG_M128:
704 case BUILT_IN_TM_LOG_M256:
705 return true;
706 default:
707 break;
710 return false;
713 /* Detect flags (function attributes) from the function decl or type node. */
716 flags_from_decl_or_type (const_tree exp)
718 int flags = 0;
720 if (DECL_P (exp))
722 /* The function exp may have the `malloc' attribute. */
723 if (DECL_IS_MALLOC (exp))
724 flags |= ECF_MALLOC;
726 /* The function exp may have the `returns_twice' attribute. */
727 if (DECL_IS_RETURNS_TWICE (exp))
728 flags |= ECF_RETURNS_TWICE;
730 /* Process the pure and const attributes. */
731 if (TREE_READONLY (exp))
732 flags |= ECF_CONST;
733 if (DECL_PURE_P (exp))
734 flags |= ECF_PURE;
735 if (DECL_LOOPING_CONST_OR_PURE_P (exp))
736 flags |= ECF_LOOPING_CONST_OR_PURE;
738 if (DECL_IS_NOVOPS (exp))
739 flags |= ECF_NOVOPS;
740 if (lookup_attribute ("leaf", DECL_ATTRIBUTES (exp)))
741 flags |= ECF_LEAF;
743 if (TREE_NOTHROW (exp))
744 flags |= ECF_NOTHROW;
746 if (flag_tm)
748 if (is_tm_builtin (exp))
749 flags |= ECF_TM_BUILTIN;
750 else if ((flags & (ECF_CONST|ECF_NOVOPS)) != 0
751 || lookup_attribute ("transaction_pure",
752 TYPE_ATTRIBUTES (TREE_TYPE (exp))))
753 flags |= ECF_TM_PURE;
756 flags = special_function_p (exp, flags);
758 else if (TYPE_P (exp))
760 if (TYPE_READONLY (exp))
761 flags |= ECF_CONST;
763 if (flag_tm
764 && ((flags & ECF_CONST) != 0
765 || lookup_attribute ("transaction_pure", TYPE_ATTRIBUTES (exp))))
766 flags |= ECF_TM_PURE;
768 else
769 gcc_unreachable ();
771 if (TREE_THIS_VOLATILE (exp))
773 flags |= ECF_NORETURN;
774 if (flags & (ECF_CONST|ECF_PURE))
775 flags |= ECF_LOOPING_CONST_OR_PURE;
778 return flags;
781 /* Detect flags from a CALL_EXPR. */
784 call_expr_flags (const_tree t)
786 int flags;
787 tree decl = get_callee_fndecl (t);
789 if (decl)
790 flags = flags_from_decl_or_type (decl);
791 else if (CALL_EXPR_FN (t) == NULL_TREE)
792 flags = internal_fn_flags (CALL_EXPR_IFN (t));
793 else
795 t = TREE_TYPE (CALL_EXPR_FN (t));
796 if (t && TREE_CODE (t) == POINTER_TYPE)
797 flags = flags_from_decl_or_type (TREE_TYPE (t));
798 else
799 flags = 0;
802 return flags;
805 /* Return true if TYPE should be passed by invisible reference. */
807 bool
808 pass_by_reference (CUMULATIVE_ARGS *ca, machine_mode mode,
809 tree type, bool named_arg)
811 if (type)
813 /* If this type contains non-trivial constructors, then it is
814 forbidden for the middle-end to create any new copies. */
815 if (TREE_ADDRESSABLE (type))
816 return true;
818 /* GCC post 3.4 passes *all* variable sized types by reference. */
819 if (!TYPE_SIZE (type) || TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
820 return true;
822 /* If a record type should be passed the same as its first (and only)
823 member, use the type and mode of that member. */
824 if (TREE_CODE (type) == RECORD_TYPE && TYPE_TRANSPARENT_AGGR (type))
826 type = TREE_TYPE (first_field (type));
827 mode = TYPE_MODE (type);
831 return targetm.calls.pass_by_reference (pack_cumulative_args (ca), mode,
832 type, named_arg);
835 /* Return true if TYPE, which is passed by reference, should be callee
836 copied instead of caller copied. */
838 bool
839 reference_callee_copied (CUMULATIVE_ARGS *ca, machine_mode mode,
840 tree type, bool named_arg)
842 if (type && TREE_ADDRESSABLE (type))
843 return false;
844 return targetm.calls.callee_copies (pack_cumulative_args (ca), mode, type,
845 named_arg);
849 /* Precompute all register parameters as described by ARGS, storing values
850 into fields within the ARGS array.
852 NUM_ACTUALS indicates the total number elements in the ARGS array.
854 Set REG_PARM_SEEN if we encounter a register parameter. */
856 static void
857 precompute_register_parameters (int num_actuals, struct arg_data *args,
858 int *reg_parm_seen)
860 int i;
862 *reg_parm_seen = 0;
864 for (i = 0; i < num_actuals; i++)
865 if (args[i].reg != 0 && ! args[i].pass_on_stack)
867 *reg_parm_seen = 1;
869 if (args[i].value == 0)
871 push_temp_slots ();
872 args[i].value = expand_normal (args[i].tree_value);
873 preserve_temp_slots (args[i].value);
874 pop_temp_slots ();
877 /* If we are to promote the function arg to a wider mode,
878 do it now. */
880 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
881 args[i].value
882 = convert_modes (args[i].mode,
883 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
884 args[i].value, args[i].unsignedp);
886 /* If the value is a non-legitimate constant, force it into a
887 pseudo now. TLS symbols sometimes need a call to resolve. */
888 if (CONSTANT_P (args[i].value)
889 && !targetm.legitimate_constant_p (args[i].mode, args[i].value))
890 args[i].value = force_reg (args[i].mode, args[i].value);
892 /* If we're going to have to load the value by parts, pull the
893 parts into pseudos. The part extraction process can involve
894 non-trivial computation. */
895 if (GET_CODE (args[i].reg) == PARALLEL)
897 tree type = TREE_TYPE (args[i].tree_value);
898 args[i].parallel_value
899 = emit_group_load_into_temps (args[i].reg, args[i].value,
900 type, int_size_in_bytes (type));
903 /* If the value is expensive, and we are inside an appropriately
904 short loop, put the value into a pseudo and then put the pseudo
905 into the hard reg.
907 For small register classes, also do this if this call uses
908 register parameters. This is to avoid reload conflicts while
909 loading the parameters registers. */
911 else if ((! (REG_P (args[i].value)
912 || (GET_CODE (args[i].value) == SUBREG
913 && REG_P (SUBREG_REG (args[i].value)))))
914 && args[i].mode != BLKmode
915 && (set_src_cost (args[i].value, args[i].mode,
916 optimize_insn_for_speed_p ())
917 > COSTS_N_INSNS (1))
918 && ((*reg_parm_seen
919 && targetm.small_register_classes_for_mode_p (args[i].mode))
920 || optimize))
921 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
925 #ifdef REG_PARM_STACK_SPACE
927 /* The argument list is the property of the called routine and it
928 may clobber it. If the fixed area has been used for previous
929 parameters, we must save and restore it. */
931 static rtx
932 save_fixed_argument_area (int reg_parm_stack_space, rtx argblock, int *low_to_save, int *high_to_save)
934 int low;
935 int high;
937 /* Compute the boundary of the area that needs to be saved, if any. */
938 high = reg_parm_stack_space;
939 if (ARGS_GROW_DOWNWARD)
940 high += 1;
942 if (high > highest_outgoing_arg_in_use)
943 high = highest_outgoing_arg_in_use;
945 for (low = 0; low < high; low++)
946 if (stack_usage_map[low] != 0)
948 int num_to_save;
949 machine_mode save_mode;
950 int delta;
951 rtx addr;
952 rtx stack_area;
953 rtx save_area;
955 while (stack_usage_map[--high] == 0)
958 *low_to_save = low;
959 *high_to_save = high;
961 num_to_save = high - low + 1;
962 save_mode = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
964 /* If we don't have the required alignment, must do this
965 in BLKmode. */
966 if ((low & (MIN (GET_MODE_SIZE (save_mode),
967 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
968 save_mode = BLKmode;
970 if (ARGS_GROW_DOWNWARD)
971 delta = -high;
972 else
973 delta = low;
975 addr = plus_constant (Pmode, argblock, delta);
976 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
978 set_mem_align (stack_area, PARM_BOUNDARY);
979 if (save_mode == BLKmode)
981 save_area = assign_stack_temp (BLKmode, num_to_save);
982 emit_block_move (validize_mem (save_area), stack_area,
983 GEN_INT (num_to_save), BLOCK_OP_CALL_PARM);
985 else
987 save_area = gen_reg_rtx (save_mode);
988 emit_move_insn (save_area, stack_area);
991 return save_area;
994 return NULL_RTX;
997 static void
998 restore_fixed_argument_area (rtx save_area, rtx argblock, int high_to_save, int low_to_save)
1000 machine_mode save_mode = GET_MODE (save_area);
1001 int delta;
1002 rtx addr, stack_area;
1004 if (ARGS_GROW_DOWNWARD)
1005 delta = -high_to_save;
1006 else
1007 delta = low_to_save;
1009 addr = plus_constant (Pmode, argblock, delta);
1010 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
1011 set_mem_align (stack_area, PARM_BOUNDARY);
1013 if (save_mode != BLKmode)
1014 emit_move_insn (stack_area, save_area);
1015 else
1016 emit_block_move (stack_area, validize_mem (save_area),
1017 GEN_INT (high_to_save - low_to_save + 1),
1018 BLOCK_OP_CALL_PARM);
1020 #endif /* REG_PARM_STACK_SPACE */
1022 /* If any elements in ARGS refer to parameters that are to be passed in
1023 registers, but not in memory, and whose alignment does not permit a
1024 direct copy into registers. Copy the values into a group of pseudos
1025 which we will later copy into the appropriate hard registers.
1027 Pseudos for each unaligned argument will be stored into the array
1028 args[argnum].aligned_regs. The caller is responsible for deallocating
1029 the aligned_regs array if it is nonzero. */
1031 static void
1032 store_unaligned_arguments_into_pseudos (struct arg_data *args, int num_actuals)
1034 int i, j;
1036 for (i = 0; i < num_actuals; i++)
1037 if (args[i].reg != 0 && ! args[i].pass_on_stack
1038 && GET_CODE (args[i].reg) != PARALLEL
1039 && args[i].mode == BLKmode
1040 && MEM_P (args[i].value)
1041 && (MEM_ALIGN (args[i].value)
1042 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
1044 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1045 int endian_correction = 0;
1047 if (args[i].partial)
1049 gcc_assert (args[i].partial % UNITS_PER_WORD == 0);
1050 args[i].n_aligned_regs = args[i].partial / UNITS_PER_WORD;
1052 else
1054 args[i].n_aligned_regs
1055 = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1058 args[i].aligned_regs = XNEWVEC (rtx, args[i].n_aligned_regs);
1060 /* Structures smaller than a word are normally aligned to the
1061 least significant byte. On a BYTES_BIG_ENDIAN machine,
1062 this means we must skip the empty high order bytes when
1063 calculating the bit offset. */
1064 if (bytes < UNITS_PER_WORD
1065 #ifdef BLOCK_REG_PADDING
1066 && (BLOCK_REG_PADDING (args[i].mode,
1067 TREE_TYPE (args[i].tree_value), 1)
1068 == downward)
1069 #else
1070 && BYTES_BIG_ENDIAN
1071 #endif
1073 endian_correction = BITS_PER_WORD - bytes * BITS_PER_UNIT;
1075 for (j = 0; j < args[i].n_aligned_regs; j++)
1077 rtx reg = gen_reg_rtx (word_mode);
1078 rtx word = operand_subword_force (args[i].value, j, BLKmode);
1079 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
1081 args[i].aligned_regs[j] = reg;
1082 word = extract_bit_field (word, bitsize, 0, 1, NULL_RTX,
1083 word_mode, word_mode, false);
1085 /* There is no need to restrict this code to loading items
1086 in TYPE_ALIGN sized hunks. The bitfield instructions can
1087 load up entire word sized registers efficiently.
1089 ??? This may not be needed anymore.
1090 We use to emit a clobber here but that doesn't let later
1091 passes optimize the instructions we emit. By storing 0 into
1092 the register later passes know the first AND to zero out the
1093 bitfield being set in the register is unnecessary. The store
1094 of 0 will be deleted as will at least the first AND. */
1096 emit_move_insn (reg, const0_rtx);
1098 bytes -= bitsize / BITS_PER_UNIT;
1099 store_bit_field (reg, bitsize, endian_correction, 0, 0,
1100 word_mode, word, false);
1105 /* Issue an error if CALL_EXPR was flagged as requiring
1106 tall-call optimization. */
1108 static void
1109 maybe_complain_about_tail_call (tree call_expr, const char *reason)
1111 gcc_assert (TREE_CODE (call_expr) == CALL_EXPR);
1112 if (!CALL_EXPR_MUST_TAIL_CALL (call_expr))
1113 return;
1115 error_at (EXPR_LOCATION (call_expr), "cannot tail-call: %s", reason);
1118 /* Fill in ARGS_SIZE and ARGS array based on the parameters found in
1119 CALL_EXPR EXP.
1121 NUM_ACTUALS is the total number of parameters.
1123 N_NAMED_ARGS is the total number of named arguments.
1125 STRUCT_VALUE_ADDR_VALUE is the implicit argument for a struct return
1126 value, or null.
1128 FNDECL is the tree code for the target of this call (if known)
1130 ARGS_SO_FAR holds state needed by the target to know where to place
1131 the next argument.
1133 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
1134 for arguments which are passed in registers.
1136 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
1137 and may be modified by this routine.
1139 OLD_PENDING_ADJ, MUST_PREALLOCATE and FLAGS are pointers to integer
1140 flags which may be modified by this routine.
1142 MAY_TAILCALL is cleared if we encounter an invisible pass-by-reference
1143 that requires allocation of stack space.
1145 CALL_FROM_THUNK_P is true if this call is the jump from a thunk to
1146 the thunked-to function. */
1148 static void
1149 initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED,
1150 struct arg_data *args,
1151 struct args_size *args_size,
1152 int n_named_args ATTRIBUTE_UNUSED,
1153 tree exp, tree struct_value_addr_value,
1154 tree fndecl, tree fntype,
1155 cumulative_args_t args_so_far,
1156 int reg_parm_stack_space,
1157 rtx *old_stack_level, int *old_pending_adj,
1158 int *must_preallocate, int *ecf_flags,
1159 bool *may_tailcall, bool call_from_thunk_p)
1161 CUMULATIVE_ARGS *args_so_far_pnt = get_cumulative_args (args_so_far);
1162 location_t loc = EXPR_LOCATION (exp);
1164 /* Count arg position in order args appear. */
1165 int argpos;
1167 int i;
1169 args_size->constant = 0;
1170 args_size->var = 0;
1172 bitmap_obstack_initialize (NULL);
1174 /* In this loop, we consider args in the order they are written.
1175 We fill up ARGS from the back. */
1177 i = num_actuals - 1;
1179 int j = i, ptr_arg = -1;
1180 call_expr_arg_iterator iter;
1181 tree arg;
1182 bitmap slots = NULL;
1184 if (struct_value_addr_value)
1186 args[j].tree_value = struct_value_addr_value;
1187 j--;
1189 /* If we pass structure address then we need to
1190 create bounds for it. Since created bounds is
1191 a call statement, we expand it right here to avoid
1192 fixing all other places where it may be expanded. */
1193 if (CALL_WITH_BOUNDS_P (exp))
1195 args[j].value = gen_reg_rtx (targetm.chkp_bound_mode ());
1196 args[j].tree_value
1197 = chkp_make_bounds_for_struct_addr (struct_value_addr_value);
1198 expand_expr_real (args[j].tree_value, args[j].value, VOIDmode,
1199 EXPAND_NORMAL, 0, false);
1200 args[j].pointer_arg = j + 1;
1201 j--;
1204 argpos = 0;
1205 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
1207 tree argtype = TREE_TYPE (arg);
1209 /* Remember last param with pointer and associate it
1210 with following pointer bounds. */
1211 if (CALL_WITH_BOUNDS_P (exp)
1212 && chkp_type_has_pointer (argtype))
1214 if (slots)
1215 BITMAP_FREE (slots);
1216 ptr_arg = j;
1217 if (!BOUNDED_TYPE_P (argtype))
1219 slots = BITMAP_ALLOC (NULL);
1220 chkp_find_bound_slots (argtype, slots);
1223 else if (CALL_WITH_BOUNDS_P (exp)
1224 && pass_by_reference (NULL, TYPE_MODE (argtype), argtype,
1225 argpos < n_named_args))
1227 if (slots)
1228 BITMAP_FREE (slots);
1229 ptr_arg = j;
1231 else if (POINTER_BOUNDS_TYPE_P (argtype))
1233 /* We expect bounds in instrumented calls only.
1234 Otherwise it is a sign we lost flag due to some optimization
1235 and may emit call args incorrectly. */
1236 gcc_assert (CALL_WITH_BOUNDS_P (exp));
1238 /* For structures look for the next available pointer. */
1239 if (ptr_arg != -1 && slots)
1241 unsigned bnd_no = bitmap_first_set_bit (slots);
1242 args[j].pointer_offset =
1243 bnd_no * POINTER_SIZE / BITS_PER_UNIT;
1245 bitmap_clear_bit (slots, bnd_no);
1247 /* Check we have no more pointers in the structure. */
1248 if (bitmap_empty_p (slots))
1249 BITMAP_FREE (slots);
1251 args[j].pointer_arg = ptr_arg;
1253 /* Check we covered all pointers in the previous
1254 non bounds arg. */
1255 if (!slots)
1256 ptr_arg = -1;
1258 else
1259 ptr_arg = -1;
1261 if (targetm.calls.split_complex_arg
1262 && argtype
1263 && TREE_CODE (argtype) == COMPLEX_TYPE
1264 && targetm.calls.split_complex_arg (argtype))
1266 tree subtype = TREE_TYPE (argtype);
1267 args[j].tree_value = build1 (REALPART_EXPR, subtype, arg);
1268 j--;
1269 args[j].tree_value = build1 (IMAGPART_EXPR, subtype, arg);
1271 else
1272 args[j].tree_value = arg;
1273 j--;
1274 argpos++;
1277 if (slots)
1278 BITMAP_FREE (slots);
1281 bitmap_obstack_release (NULL);
1283 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
1284 for (argpos = 0; argpos < num_actuals; i--, argpos++)
1286 tree type = TREE_TYPE (args[i].tree_value);
1287 int unsignedp;
1288 machine_mode mode;
1290 /* Replace erroneous argument with constant zero. */
1291 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
1292 args[i].tree_value = integer_zero_node, type = integer_type_node;
1294 /* If TYPE is a transparent union or record, pass things the way
1295 we would pass the first field of the union or record. We have
1296 already verified that the modes are the same. */
1297 if ((TREE_CODE (type) == UNION_TYPE || TREE_CODE (type) == RECORD_TYPE)
1298 && TYPE_TRANSPARENT_AGGR (type))
1299 type = TREE_TYPE (first_field (type));
1301 /* Decide where to pass this arg.
1303 args[i].reg is nonzero if all or part is passed in registers.
1305 args[i].partial is nonzero if part but not all is passed in registers,
1306 and the exact value says how many bytes are passed in registers.
1308 args[i].pass_on_stack is nonzero if the argument must at least be
1309 computed on the stack. It may then be loaded back into registers
1310 if args[i].reg is nonzero.
1312 These decisions are driven by the FUNCTION_... macros and must agree
1313 with those made by function.c. */
1315 /* See if this argument should be passed by invisible reference. */
1316 if (pass_by_reference (args_so_far_pnt, TYPE_MODE (type),
1317 type, argpos < n_named_args))
1319 bool callee_copies;
1320 tree base = NULL_TREE;
1322 callee_copies
1323 = reference_callee_copied (args_so_far_pnt, TYPE_MODE (type),
1324 type, argpos < n_named_args);
1326 /* If we're compiling a thunk, pass through invisible references
1327 instead of making a copy. */
1328 if (call_from_thunk_p
1329 || (callee_copies
1330 && !TREE_ADDRESSABLE (type)
1331 && (base = get_base_address (args[i].tree_value))
1332 && TREE_CODE (base) != SSA_NAME
1333 && (!DECL_P (base) || MEM_P (DECL_RTL (base)))))
1335 /* We may have turned the parameter value into an SSA name.
1336 Go back to the original parameter so we can take the
1337 address. */
1338 if (TREE_CODE (args[i].tree_value) == SSA_NAME)
1340 gcc_assert (SSA_NAME_IS_DEFAULT_DEF (args[i].tree_value));
1341 args[i].tree_value = SSA_NAME_VAR (args[i].tree_value);
1342 gcc_assert (TREE_CODE (args[i].tree_value) == PARM_DECL);
1344 /* Argument setup code may have copied the value to register. We
1345 revert that optimization now because the tail call code must
1346 use the original location. */
1347 if (TREE_CODE (args[i].tree_value) == PARM_DECL
1348 && !MEM_P (DECL_RTL (args[i].tree_value))
1349 && DECL_INCOMING_RTL (args[i].tree_value)
1350 && MEM_P (DECL_INCOMING_RTL (args[i].tree_value)))
1351 set_decl_rtl (args[i].tree_value,
1352 DECL_INCOMING_RTL (args[i].tree_value));
1354 mark_addressable (args[i].tree_value);
1356 /* We can't use sibcalls if a callee-copied argument is
1357 stored in the current function's frame. */
1358 if (!call_from_thunk_p && DECL_P (base) && !TREE_STATIC (base))
1360 *may_tailcall = false;
1361 maybe_complain_about_tail_call (exp,
1362 "a callee-copied argument is"
1363 " stored in the current "
1364 " function's frame");
1367 args[i].tree_value = build_fold_addr_expr_loc (loc,
1368 args[i].tree_value);
1369 type = TREE_TYPE (args[i].tree_value);
1371 if (*ecf_flags & ECF_CONST)
1372 *ecf_flags &= ~(ECF_CONST | ECF_LOOPING_CONST_OR_PURE);
1374 else
1376 /* We make a copy of the object and pass the address to the
1377 function being called. */
1378 rtx copy;
1380 if (!COMPLETE_TYPE_P (type)
1381 || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST
1382 || (flag_stack_check == GENERIC_STACK_CHECK
1383 && compare_tree_int (TYPE_SIZE_UNIT (type),
1384 STACK_CHECK_MAX_VAR_SIZE) > 0))
1386 /* This is a variable-sized object. Make space on the stack
1387 for it. */
1388 rtx size_rtx = expr_size (args[i].tree_value);
1390 if (*old_stack_level == 0)
1392 emit_stack_save (SAVE_BLOCK, old_stack_level);
1393 *old_pending_adj = pending_stack_adjust;
1394 pending_stack_adjust = 0;
1397 /* We can pass TRUE as the 4th argument because we just
1398 saved the stack pointer and will restore it right after
1399 the call. */
1400 copy = allocate_dynamic_stack_space (size_rtx,
1401 TYPE_ALIGN (type),
1402 TYPE_ALIGN (type),
1403 true);
1404 copy = gen_rtx_MEM (BLKmode, copy);
1405 set_mem_attributes (copy, type, 1);
1407 else
1408 copy = assign_temp (type, 1, 0);
1410 store_expr (args[i].tree_value, copy, 0, false, false);
1412 /* Just change the const function to pure and then let
1413 the next test clear the pure based on
1414 callee_copies. */
1415 if (*ecf_flags & ECF_CONST)
1417 *ecf_flags &= ~ECF_CONST;
1418 *ecf_flags |= ECF_PURE;
1421 if (!callee_copies && *ecf_flags & ECF_PURE)
1422 *ecf_flags &= ~(ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
1424 args[i].tree_value
1425 = build_fold_addr_expr_loc (loc, make_tree (type, copy));
1426 type = TREE_TYPE (args[i].tree_value);
1427 *may_tailcall = false;
1428 maybe_complain_about_tail_call (exp,
1429 "argument must be passed"
1430 " by copying");
1434 unsignedp = TYPE_UNSIGNED (type);
1435 mode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
1436 fndecl ? TREE_TYPE (fndecl) : fntype, 0);
1438 args[i].unsignedp = unsignedp;
1439 args[i].mode = mode;
1441 args[i].reg = targetm.calls.function_arg (args_so_far, mode, type,
1442 argpos < n_named_args);
1444 if (args[i].reg && CONST_INT_P (args[i].reg))
1446 args[i].special_slot = args[i].reg;
1447 args[i].reg = NULL;
1450 /* If this is a sibling call and the machine has register windows, the
1451 register window has to be unwinded before calling the routine, so
1452 arguments have to go into the incoming registers. */
1453 if (targetm.calls.function_incoming_arg != targetm.calls.function_arg)
1454 args[i].tail_call_reg
1455 = targetm.calls.function_incoming_arg (args_so_far, mode, type,
1456 argpos < n_named_args);
1457 else
1458 args[i].tail_call_reg = args[i].reg;
1460 if (args[i].reg)
1461 args[i].partial
1462 = targetm.calls.arg_partial_bytes (args_so_far, mode, type,
1463 argpos < n_named_args);
1465 args[i].pass_on_stack = targetm.calls.must_pass_in_stack (mode, type);
1467 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
1468 it means that we are to pass this arg in the register(s) designated
1469 by the PARALLEL, but also to pass it in the stack. */
1470 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
1471 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
1472 args[i].pass_on_stack = 1;
1474 /* If this is an addressable type, we must preallocate the stack
1475 since we must evaluate the object into its final location.
1477 If this is to be passed in both registers and the stack, it is simpler
1478 to preallocate. */
1479 if (TREE_ADDRESSABLE (type)
1480 || (args[i].pass_on_stack && args[i].reg != 0))
1481 *must_preallocate = 1;
1483 /* No stack allocation and padding for bounds. */
1484 if (POINTER_BOUNDS_P (args[i].tree_value))
1486 /* Compute the stack-size of this argument. */
1487 else if (args[i].reg == 0 || args[i].partial != 0
1488 || reg_parm_stack_space > 0
1489 || args[i].pass_on_stack)
1490 locate_and_pad_parm (mode, type,
1491 #ifdef STACK_PARMS_IN_REG_PARM_AREA
1493 #else
1494 args[i].reg != 0,
1495 #endif
1496 reg_parm_stack_space,
1497 args[i].pass_on_stack ? 0 : args[i].partial,
1498 fndecl, args_size, &args[i].locate);
1499 #ifdef BLOCK_REG_PADDING
1500 else
1501 /* The argument is passed entirely in registers. See at which
1502 end it should be padded. */
1503 args[i].locate.where_pad =
1504 BLOCK_REG_PADDING (mode, type,
1505 int_size_in_bytes (type) <= UNITS_PER_WORD);
1506 #endif
1508 /* Update ARGS_SIZE, the total stack space for args so far. */
1510 args_size->constant += args[i].locate.size.constant;
1511 if (args[i].locate.size.var)
1512 ADD_PARM_SIZE (*args_size, args[i].locate.size.var);
1514 /* Increment ARGS_SO_FAR, which has info about which arg-registers
1515 have been used, etc. */
1517 targetm.calls.function_arg_advance (args_so_far, TYPE_MODE (type),
1518 type, argpos < n_named_args);
1522 /* Update ARGS_SIZE to contain the total size for the argument block.
1523 Return the original constant component of the argument block's size.
1525 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
1526 for arguments passed in registers. */
1528 static int
1529 compute_argument_block_size (int reg_parm_stack_space,
1530 struct args_size *args_size,
1531 tree fndecl ATTRIBUTE_UNUSED,
1532 tree fntype ATTRIBUTE_UNUSED,
1533 int preferred_stack_boundary ATTRIBUTE_UNUSED)
1535 int unadjusted_args_size = args_size->constant;
1537 /* For accumulate outgoing args mode we don't need to align, since the frame
1538 will be already aligned. Align to STACK_BOUNDARY in order to prevent
1539 backends from generating misaligned frame sizes. */
1540 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
1541 preferred_stack_boundary = STACK_BOUNDARY;
1543 /* Compute the actual size of the argument block required. The variable
1544 and constant sizes must be combined, the size may have to be rounded,
1545 and there may be a minimum required size. */
1547 if (args_size->var)
1549 args_size->var = ARGS_SIZE_TREE (*args_size);
1550 args_size->constant = 0;
1552 preferred_stack_boundary /= BITS_PER_UNIT;
1553 if (preferred_stack_boundary > 1)
1555 /* We don't handle this case yet. To handle it correctly we have
1556 to add the delta, round and subtract the delta.
1557 Currently no machine description requires this support. */
1558 gcc_assert (!(stack_pointer_delta & (preferred_stack_boundary - 1)));
1559 args_size->var = round_up (args_size->var, preferred_stack_boundary);
1562 if (reg_parm_stack_space > 0)
1564 args_size->var
1565 = size_binop (MAX_EXPR, args_size->var,
1566 ssize_int (reg_parm_stack_space));
1568 /* The area corresponding to register parameters is not to count in
1569 the size of the block we need. So make the adjustment. */
1570 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1571 args_size->var
1572 = size_binop (MINUS_EXPR, args_size->var,
1573 ssize_int (reg_parm_stack_space));
1576 else
1578 preferred_stack_boundary /= BITS_PER_UNIT;
1579 if (preferred_stack_boundary < 1)
1580 preferred_stack_boundary = 1;
1581 args_size->constant = (((args_size->constant
1582 + stack_pointer_delta
1583 + preferred_stack_boundary - 1)
1584 / preferred_stack_boundary
1585 * preferred_stack_boundary)
1586 - stack_pointer_delta);
1588 args_size->constant = MAX (args_size->constant,
1589 reg_parm_stack_space);
1591 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1592 args_size->constant -= reg_parm_stack_space;
1594 return unadjusted_args_size;
1597 /* Precompute parameters as needed for a function call.
1599 FLAGS is mask of ECF_* constants.
1601 NUM_ACTUALS is the number of arguments.
1603 ARGS is an array containing information for each argument; this
1604 routine fills in the INITIAL_VALUE and VALUE fields for each
1605 precomputed argument. */
1607 static void
1608 precompute_arguments (int num_actuals, struct arg_data *args)
1610 int i;
1612 /* If this is a libcall, then precompute all arguments so that we do not
1613 get extraneous instructions emitted as part of the libcall sequence. */
1615 /* If we preallocated the stack space, and some arguments must be passed
1616 on the stack, then we must precompute any parameter which contains a
1617 function call which will store arguments on the stack.
1618 Otherwise, evaluating the parameter may clobber previous parameters
1619 which have already been stored into the stack. (we have code to avoid
1620 such case by saving the outgoing stack arguments, but it results in
1621 worse code) */
1622 if (!ACCUMULATE_OUTGOING_ARGS)
1623 return;
1625 for (i = 0; i < num_actuals; i++)
1627 tree type;
1628 machine_mode mode;
1630 if (TREE_CODE (args[i].tree_value) != CALL_EXPR)
1631 continue;
1633 /* If this is an addressable type, we cannot pre-evaluate it. */
1634 type = TREE_TYPE (args[i].tree_value);
1635 gcc_assert (!TREE_ADDRESSABLE (type));
1637 args[i].initial_value = args[i].value
1638 = expand_normal (args[i].tree_value);
1640 mode = TYPE_MODE (type);
1641 if (mode != args[i].mode)
1643 int unsignedp = args[i].unsignedp;
1644 args[i].value
1645 = convert_modes (args[i].mode, mode,
1646 args[i].value, args[i].unsignedp);
1648 /* CSE will replace this only if it contains args[i].value
1649 pseudo, so convert it down to the declared mode using
1650 a SUBREG. */
1651 if (REG_P (args[i].value)
1652 && GET_MODE_CLASS (args[i].mode) == MODE_INT
1653 && promote_mode (type, mode, &unsignedp) != args[i].mode)
1655 args[i].initial_value
1656 = gen_lowpart_SUBREG (mode, args[i].value);
1657 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
1658 SUBREG_PROMOTED_SET (args[i].initial_value, args[i].unsignedp);
1664 /* Given the current state of MUST_PREALLOCATE and information about
1665 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
1666 compute and return the final value for MUST_PREALLOCATE. */
1668 static int
1669 finalize_must_preallocate (int must_preallocate, int num_actuals,
1670 struct arg_data *args, struct args_size *args_size)
1672 /* See if we have or want to preallocate stack space.
1674 If we would have to push a partially-in-regs parm
1675 before other stack parms, preallocate stack space instead.
1677 If the size of some parm is not a multiple of the required stack
1678 alignment, we must preallocate.
1680 If the total size of arguments that would otherwise create a copy in
1681 a temporary (such as a CALL) is more than half the total argument list
1682 size, preallocation is faster.
1684 Another reason to preallocate is if we have a machine (like the m88k)
1685 where stack alignment is required to be maintained between every
1686 pair of insns, not just when the call is made. However, we assume here
1687 that such machines either do not have push insns (and hence preallocation
1688 would occur anyway) or the problem is taken care of with
1689 PUSH_ROUNDING. */
1691 if (! must_preallocate)
1693 int partial_seen = 0;
1694 int copy_to_evaluate_size = 0;
1695 int i;
1697 for (i = 0; i < num_actuals && ! must_preallocate; i++)
1699 if (args[i].partial > 0 && ! args[i].pass_on_stack)
1700 partial_seen = 1;
1701 else if (partial_seen && args[i].reg == 0)
1702 must_preallocate = 1;
1703 /* We preallocate in case there are bounds passed
1704 in the bounds table to have precomputed address
1705 for bounds association. */
1706 else if (POINTER_BOUNDS_P (args[i].tree_value)
1707 && !args[i].reg)
1708 must_preallocate = 1;
1710 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1711 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
1712 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
1713 || TREE_CODE (args[i].tree_value) == COND_EXPR
1714 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
1715 copy_to_evaluate_size
1716 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1719 if (copy_to_evaluate_size * 2 >= args_size->constant
1720 && args_size->constant > 0)
1721 must_preallocate = 1;
1723 return must_preallocate;
1726 /* If we preallocated stack space, compute the address of each argument
1727 and store it into the ARGS array.
1729 We need not ensure it is a valid memory address here; it will be
1730 validized when it is used.
1732 ARGBLOCK is an rtx for the address of the outgoing arguments. */
1734 static void
1735 compute_argument_addresses (struct arg_data *args, rtx argblock, int num_actuals)
1737 if (argblock)
1739 rtx arg_reg = argblock;
1740 int i, arg_offset = 0;
1742 if (GET_CODE (argblock) == PLUS)
1743 arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
1745 for (i = 0; i < num_actuals; i++)
1747 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
1748 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
1749 rtx addr;
1750 unsigned int align, boundary;
1751 unsigned int units_on_stack = 0;
1752 machine_mode partial_mode = VOIDmode;
1754 /* Skip this parm if it will not be passed on the stack. */
1755 if (! args[i].pass_on_stack
1756 && args[i].reg != 0
1757 && args[i].partial == 0)
1758 continue;
1760 /* Pointer Bounds are never passed on the stack. */
1761 if (POINTER_BOUNDS_P (args[i].tree_value))
1762 continue;
1764 if (CONST_INT_P (offset))
1765 addr = plus_constant (Pmode, arg_reg, INTVAL (offset));
1766 else
1767 addr = gen_rtx_PLUS (Pmode, arg_reg, offset);
1769 addr = plus_constant (Pmode, addr, arg_offset);
1771 if (args[i].partial != 0)
1773 /* Only part of the parameter is being passed on the stack.
1774 Generate a simple memory reference of the correct size. */
1775 units_on_stack = args[i].locate.size.constant;
1776 partial_mode = mode_for_size (units_on_stack * BITS_PER_UNIT,
1777 MODE_INT, 1);
1778 args[i].stack = gen_rtx_MEM (partial_mode, addr);
1779 set_mem_size (args[i].stack, units_on_stack);
1781 else
1783 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
1784 set_mem_attributes (args[i].stack,
1785 TREE_TYPE (args[i].tree_value), 1);
1787 align = BITS_PER_UNIT;
1788 boundary = args[i].locate.boundary;
1789 if (args[i].locate.where_pad != downward)
1790 align = boundary;
1791 else if (CONST_INT_P (offset))
1793 align = INTVAL (offset) * BITS_PER_UNIT | boundary;
1794 align = align & -align;
1796 set_mem_align (args[i].stack, align);
1798 if (CONST_INT_P (slot_offset))
1799 addr = plus_constant (Pmode, arg_reg, INTVAL (slot_offset));
1800 else
1801 addr = gen_rtx_PLUS (Pmode, arg_reg, slot_offset);
1803 addr = plus_constant (Pmode, addr, arg_offset);
1805 if (args[i].partial != 0)
1807 /* Only part of the parameter is being passed on the stack.
1808 Generate a simple memory reference of the correct size.
1810 args[i].stack_slot = gen_rtx_MEM (partial_mode, addr);
1811 set_mem_size (args[i].stack_slot, units_on_stack);
1813 else
1815 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
1816 set_mem_attributes (args[i].stack_slot,
1817 TREE_TYPE (args[i].tree_value), 1);
1819 set_mem_align (args[i].stack_slot, args[i].locate.boundary);
1821 /* Function incoming arguments may overlap with sibling call
1822 outgoing arguments and we cannot allow reordering of reads
1823 from function arguments with stores to outgoing arguments
1824 of sibling calls. */
1825 set_mem_alias_set (args[i].stack, 0);
1826 set_mem_alias_set (args[i].stack_slot, 0);
1831 /* Given a FNDECL and EXP, return an rtx suitable for use as a target address
1832 in a call instruction.
1834 FNDECL is the tree node for the target function. For an indirect call
1835 FNDECL will be NULL_TREE.
1837 ADDR is the operand 0 of CALL_EXPR for this call. */
1839 static rtx
1840 rtx_for_function_call (tree fndecl, tree addr)
1842 rtx funexp;
1844 /* Get the function to call, in the form of RTL. */
1845 if (fndecl)
1847 if (!TREE_USED (fndecl) && fndecl != current_function_decl)
1848 TREE_USED (fndecl) = 1;
1850 /* Get a SYMBOL_REF rtx for the function address. */
1851 funexp = XEXP (DECL_RTL (fndecl), 0);
1853 else
1854 /* Generate an rtx (probably a pseudo-register) for the address. */
1856 push_temp_slots ();
1857 funexp = expand_normal (addr);
1858 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
1860 return funexp;
1863 /* Internal state for internal_arg_pointer_based_exp and its helpers. */
1864 static struct
1866 /* Last insn that has been scanned by internal_arg_pointer_based_exp_scan,
1867 or NULL_RTX if none has been scanned yet. */
1868 rtx_insn *scan_start;
1869 /* Vector indexed by REGNO - FIRST_PSEUDO_REGISTER, recording if a pseudo is
1870 based on crtl->args.internal_arg_pointer. The element is NULL_RTX if the
1871 pseudo isn't based on it, a CONST_INT offset if the pseudo is based on it
1872 with fixed offset, or PC if this is with variable or unknown offset. */
1873 vec<rtx> cache;
1874 } internal_arg_pointer_exp_state;
1876 static rtx internal_arg_pointer_based_exp (const_rtx, bool);
1878 /* Helper function for internal_arg_pointer_based_exp. Scan insns in
1879 the tail call sequence, starting with first insn that hasn't been
1880 scanned yet, and note for each pseudo on the LHS whether it is based
1881 on crtl->args.internal_arg_pointer or not, and what offset from that
1882 that pointer it has. */
1884 static void
1885 internal_arg_pointer_based_exp_scan (void)
1887 rtx_insn *insn, *scan_start = internal_arg_pointer_exp_state.scan_start;
1889 if (scan_start == NULL_RTX)
1890 insn = get_insns ();
1891 else
1892 insn = NEXT_INSN (scan_start);
1894 while (insn)
1896 rtx set = single_set (insn);
1897 if (set && REG_P (SET_DEST (set)) && !HARD_REGISTER_P (SET_DEST (set)))
1899 rtx val = NULL_RTX;
1900 unsigned int idx = REGNO (SET_DEST (set)) - FIRST_PSEUDO_REGISTER;
1901 /* Punt on pseudos set multiple times. */
1902 if (idx < internal_arg_pointer_exp_state.cache.length ()
1903 && (internal_arg_pointer_exp_state.cache[idx]
1904 != NULL_RTX))
1905 val = pc_rtx;
1906 else
1907 val = internal_arg_pointer_based_exp (SET_SRC (set), false);
1908 if (val != NULL_RTX)
1910 if (idx >= internal_arg_pointer_exp_state.cache.length ())
1911 internal_arg_pointer_exp_state.cache
1912 .safe_grow_cleared (idx + 1);
1913 internal_arg_pointer_exp_state.cache[idx] = val;
1916 if (NEXT_INSN (insn) == NULL_RTX)
1917 scan_start = insn;
1918 insn = NEXT_INSN (insn);
1921 internal_arg_pointer_exp_state.scan_start = scan_start;
1924 /* Compute whether RTL is based on crtl->args.internal_arg_pointer. Return
1925 NULL_RTX if RTL isn't based on it, a CONST_INT offset if RTL is based on
1926 it with fixed offset, or PC if this is with variable or unknown offset.
1927 TOPLEVEL is true if the function is invoked at the topmost level. */
1929 static rtx
1930 internal_arg_pointer_based_exp (const_rtx rtl, bool toplevel)
1932 if (CONSTANT_P (rtl))
1933 return NULL_RTX;
1935 if (rtl == crtl->args.internal_arg_pointer)
1936 return const0_rtx;
1938 if (REG_P (rtl) && HARD_REGISTER_P (rtl))
1939 return NULL_RTX;
1941 if (GET_CODE (rtl) == PLUS && CONST_INT_P (XEXP (rtl, 1)))
1943 rtx val = internal_arg_pointer_based_exp (XEXP (rtl, 0), toplevel);
1944 if (val == NULL_RTX || val == pc_rtx)
1945 return val;
1946 return plus_constant (Pmode, val, INTVAL (XEXP (rtl, 1)));
1949 /* When called at the topmost level, scan pseudo assignments in between the
1950 last scanned instruction in the tail call sequence and the latest insn
1951 in that sequence. */
1952 if (toplevel)
1953 internal_arg_pointer_based_exp_scan ();
1955 if (REG_P (rtl))
1957 unsigned int idx = REGNO (rtl) - FIRST_PSEUDO_REGISTER;
1958 if (idx < internal_arg_pointer_exp_state.cache.length ())
1959 return internal_arg_pointer_exp_state.cache[idx];
1961 return NULL_RTX;
1964 subrtx_iterator::array_type array;
1965 FOR_EACH_SUBRTX (iter, array, rtl, NONCONST)
1967 const_rtx x = *iter;
1968 if (REG_P (x) && internal_arg_pointer_based_exp (x, false) != NULL_RTX)
1969 return pc_rtx;
1970 if (MEM_P (x))
1971 iter.skip_subrtxes ();
1974 return NULL_RTX;
1977 /* Return true if and only if SIZE storage units (usually bytes)
1978 starting from address ADDR overlap with already clobbered argument
1979 area. This function is used to determine if we should give up a
1980 sibcall. */
1982 static bool
1983 mem_overlaps_already_clobbered_arg_p (rtx addr, unsigned HOST_WIDE_INT size)
1985 HOST_WIDE_INT i;
1986 rtx val;
1988 if (bitmap_empty_p (stored_args_map))
1989 return false;
1990 val = internal_arg_pointer_based_exp (addr, true);
1991 if (val == NULL_RTX)
1992 return false;
1993 else if (val == pc_rtx)
1994 return true;
1995 else
1996 i = INTVAL (val);
1998 if (STACK_GROWS_DOWNWARD)
1999 i -= crtl->args.pretend_args_size;
2000 else
2001 i += crtl->args.pretend_args_size;
2004 if (ARGS_GROW_DOWNWARD)
2005 i = -i - size;
2007 if (size > 0)
2009 unsigned HOST_WIDE_INT k;
2011 for (k = 0; k < size; k++)
2012 if (i + k < SBITMAP_SIZE (stored_args_map)
2013 && bitmap_bit_p (stored_args_map, i + k))
2014 return true;
2017 return false;
2020 /* Do the register loads required for any wholly-register parms or any
2021 parms which are passed both on the stack and in a register. Their
2022 expressions were already evaluated.
2024 Mark all register-parms as living through the call, putting these USE
2025 insns in the CALL_INSN_FUNCTION_USAGE field.
2027 When IS_SIBCALL, perform the check_sibcall_argument_overlap
2028 checking, setting *SIBCALL_FAILURE if appropriate. */
2030 static void
2031 load_register_parameters (struct arg_data *args, int num_actuals,
2032 rtx *call_fusage, int flags, int is_sibcall,
2033 int *sibcall_failure)
2035 int i, j;
2037 for (i = 0; i < num_actuals; i++)
2039 rtx reg = ((flags & ECF_SIBCALL)
2040 ? args[i].tail_call_reg : args[i].reg);
2041 if (reg)
2043 int partial = args[i].partial;
2044 int nregs;
2045 int size = 0;
2046 rtx_insn *before_arg = get_last_insn ();
2047 /* Set non-negative if we must move a word at a time, even if
2048 just one word (e.g, partial == 4 && mode == DFmode). Set
2049 to -1 if we just use a normal move insn. This value can be
2050 zero if the argument is a zero size structure. */
2051 nregs = -1;
2052 if (GET_CODE (reg) == PARALLEL)
2054 else if (partial)
2056 gcc_assert (partial % UNITS_PER_WORD == 0);
2057 nregs = partial / UNITS_PER_WORD;
2059 else if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode)
2061 size = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
2062 nregs = (size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
2064 else
2065 size = GET_MODE_SIZE (args[i].mode);
2067 /* Handle calls that pass values in multiple non-contiguous
2068 locations. The Irix 6 ABI has examples of this. */
2070 if (GET_CODE (reg) == PARALLEL)
2071 emit_group_move (reg, args[i].parallel_value);
2073 /* If simple case, just do move. If normal partial, store_one_arg
2074 has already loaded the register for us. In all other cases,
2075 load the register(s) from memory. */
2077 else if (nregs == -1)
2079 emit_move_insn (reg, args[i].value);
2080 #ifdef BLOCK_REG_PADDING
2081 /* Handle case where we have a value that needs shifting
2082 up to the msb. eg. a QImode value and we're padding
2083 upward on a BYTES_BIG_ENDIAN machine. */
2084 if (size < UNITS_PER_WORD
2085 && (args[i].locate.where_pad
2086 == (BYTES_BIG_ENDIAN ? upward : downward)))
2088 rtx x;
2089 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2091 /* Assigning REG here rather than a temp makes CALL_FUSAGE
2092 report the whole reg as used. Strictly speaking, the
2093 call only uses SIZE bytes at the msb end, but it doesn't
2094 seem worth generating rtl to say that. */
2095 reg = gen_rtx_REG (word_mode, REGNO (reg));
2096 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
2097 if (x != reg)
2098 emit_move_insn (reg, x);
2100 #endif
2103 /* If we have pre-computed the values to put in the registers in
2104 the case of non-aligned structures, copy them in now. */
2106 else if (args[i].n_aligned_regs != 0)
2107 for (j = 0; j < args[i].n_aligned_regs; j++)
2108 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
2109 args[i].aligned_regs[j]);
2111 else if (partial == 0 || args[i].pass_on_stack)
2113 rtx mem = validize_mem (copy_rtx (args[i].value));
2115 /* Check for overlap with already clobbered argument area,
2116 providing that this has non-zero size. */
2117 if (is_sibcall
2118 && size != 0
2119 && (mem_overlaps_already_clobbered_arg_p
2120 (XEXP (args[i].value, 0), size)))
2121 *sibcall_failure = 1;
2123 if (size % UNITS_PER_WORD == 0
2124 || MEM_ALIGN (mem) % BITS_PER_WORD == 0)
2125 move_block_to_reg (REGNO (reg), mem, nregs, args[i].mode);
2126 else
2128 if (nregs > 1)
2129 move_block_to_reg (REGNO (reg), mem, nregs - 1,
2130 args[i].mode);
2131 rtx dest = gen_rtx_REG (word_mode, REGNO (reg) + nregs - 1);
2132 unsigned int bitoff = (nregs - 1) * BITS_PER_WORD;
2133 unsigned int bitsize = size * BITS_PER_UNIT - bitoff;
2134 rtx x = extract_bit_field (mem, bitsize, bitoff, 1, dest,
2135 word_mode, word_mode, false);
2136 if (BYTES_BIG_ENDIAN)
2137 x = expand_shift (LSHIFT_EXPR, word_mode, x,
2138 BITS_PER_WORD - bitsize, dest, 1);
2139 if (x != dest)
2140 emit_move_insn (dest, x);
2143 /* Handle a BLKmode that needs shifting. */
2144 if (nregs == 1 && size < UNITS_PER_WORD
2145 #ifdef BLOCK_REG_PADDING
2146 && args[i].locate.where_pad == downward
2147 #else
2148 && BYTES_BIG_ENDIAN
2149 #endif
2152 rtx dest = gen_rtx_REG (word_mode, REGNO (reg));
2153 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2154 enum tree_code dir = (BYTES_BIG_ENDIAN
2155 ? RSHIFT_EXPR : LSHIFT_EXPR);
2156 rtx x;
2158 x = expand_shift (dir, word_mode, dest, shift, dest, 1);
2159 if (x != dest)
2160 emit_move_insn (dest, x);
2164 /* When a parameter is a block, and perhaps in other cases, it is
2165 possible that it did a load from an argument slot that was
2166 already clobbered. */
2167 if (is_sibcall
2168 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
2169 *sibcall_failure = 1;
2171 /* Handle calls that pass values in multiple non-contiguous
2172 locations. The Irix 6 ABI has examples of this. */
2173 if (GET_CODE (reg) == PARALLEL)
2174 use_group_regs (call_fusage, reg);
2175 else if (nregs == -1)
2176 use_reg_mode (call_fusage, reg,
2177 TYPE_MODE (TREE_TYPE (args[i].tree_value)));
2178 else if (nregs > 0)
2179 use_regs (call_fusage, REGNO (reg), nregs);
2184 /* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
2185 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
2186 bytes, then we would need to push some additional bytes to pad the
2187 arguments. So, we compute an adjust to the stack pointer for an
2188 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
2189 bytes. Then, when the arguments are pushed the stack will be perfectly
2190 aligned. ARGS_SIZE->CONSTANT is set to the number of bytes that should
2191 be popped after the call. Returns the adjustment. */
2193 static int
2194 combine_pending_stack_adjustment_and_call (int unadjusted_args_size,
2195 struct args_size *args_size,
2196 unsigned int preferred_unit_stack_boundary)
2198 /* The number of bytes to pop so that the stack will be
2199 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
2200 HOST_WIDE_INT adjustment;
2201 /* The alignment of the stack after the arguments are pushed, if we
2202 just pushed the arguments without adjust the stack here. */
2203 unsigned HOST_WIDE_INT unadjusted_alignment;
2205 unadjusted_alignment
2206 = ((stack_pointer_delta + unadjusted_args_size)
2207 % preferred_unit_stack_boundary);
2209 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
2210 as possible -- leaving just enough left to cancel out the
2211 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
2212 PENDING_STACK_ADJUST is non-negative, and congruent to
2213 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
2215 /* Begin by trying to pop all the bytes. */
2216 unadjusted_alignment
2217 = (unadjusted_alignment
2218 - (pending_stack_adjust % preferred_unit_stack_boundary));
2219 adjustment = pending_stack_adjust;
2220 /* Push enough additional bytes that the stack will be aligned
2221 after the arguments are pushed. */
2222 if (preferred_unit_stack_boundary > 1)
2224 if (unadjusted_alignment > 0)
2225 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
2226 else
2227 adjustment += unadjusted_alignment;
2230 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
2231 bytes after the call. The right number is the entire
2232 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
2233 by the arguments in the first place. */
2234 args_size->constant
2235 = pending_stack_adjust - adjustment + unadjusted_args_size;
2237 return adjustment;
2240 /* Scan X expression if it does not dereference any argument slots
2241 we already clobbered by tail call arguments (as noted in stored_args_map
2242 bitmap).
2243 Return nonzero if X expression dereferences such argument slots,
2244 zero otherwise. */
2246 static int
2247 check_sibcall_argument_overlap_1 (rtx x)
2249 RTX_CODE code;
2250 int i, j;
2251 const char *fmt;
2253 if (x == NULL_RTX)
2254 return 0;
2256 code = GET_CODE (x);
2258 /* We need not check the operands of the CALL expression itself. */
2259 if (code == CALL)
2260 return 0;
2262 if (code == MEM)
2263 return mem_overlaps_already_clobbered_arg_p (XEXP (x, 0),
2264 GET_MODE_SIZE (GET_MODE (x)));
2266 /* Scan all subexpressions. */
2267 fmt = GET_RTX_FORMAT (code);
2268 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2270 if (*fmt == 'e')
2272 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
2273 return 1;
2275 else if (*fmt == 'E')
2277 for (j = 0; j < XVECLEN (x, i); j++)
2278 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
2279 return 1;
2282 return 0;
2285 /* Scan sequence after INSN if it does not dereference any argument slots
2286 we already clobbered by tail call arguments (as noted in stored_args_map
2287 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
2288 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
2289 should be 0). Return nonzero if sequence after INSN dereferences such argument
2290 slots, zero otherwise. */
2292 static int
2293 check_sibcall_argument_overlap (rtx_insn *insn, struct arg_data *arg,
2294 int mark_stored_args_map)
2296 int low, high;
2298 if (insn == NULL_RTX)
2299 insn = get_insns ();
2300 else
2301 insn = NEXT_INSN (insn);
2303 for (; insn; insn = NEXT_INSN (insn))
2304 if (INSN_P (insn)
2305 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
2306 break;
2308 if (mark_stored_args_map)
2310 if (ARGS_GROW_DOWNWARD)
2311 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
2312 else
2313 low = arg->locate.slot_offset.constant;
2315 for (high = low + arg->locate.size.constant; low < high; low++)
2316 bitmap_set_bit (stored_args_map, low);
2318 return insn != NULL_RTX;
2321 /* Given that a function returns a value of mode MODE at the most
2322 significant end of hard register VALUE, shift VALUE left or right
2323 as specified by LEFT_P. Return true if some action was needed. */
2325 bool
2326 shift_return_value (machine_mode mode, bool left_p, rtx value)
2328 HOST_WIDE_INT shift;
2330 gcc_assert (REG_P (value) && HARD_REGISTER_P (value));
2331 shift = GET_MODE_BITSIZE (GET_MODE (value)) - GET_MODE_BITSIZE (mode);
2332 if (shift == 0)
2333 return false;
2335 /* Use ashr rather than lshr for right shifts. This is for the benefit
2336 of the MIPS port, which requires SImode values to be sign-extended
2337 when stored in 64-bit registers. */
2338 if (!force_expand_binop (GET_MODE (value), left_p ? ashl_optab : ashr_optab,
2339 value, GEN_INT (shift), value, 1, OPTAB_WIDEN))
2340 gcc_unreachable ();
2341 return true;
2344 /* If X is a likely-spilled register value, copy it to a pseudo
2345 register and return that register. Return X otherwise. */
2347 static rtx
2348 avoid_likely_spilled_reg (rtx x)
2350 rtx new_rtx;
2352 if (REG_P (x)
2353 && HARD_REGISTER_P (x)
2354 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (x))))
2356 /* Make sure that we generate a REG rather than a CONCAT.
2357 Moves into CONCATs can need nontrivial instructions,
2358 and the whole point of this function is to avoid
2359 using the hard register directly in such a situation. */
2360 generating_concat_p = 0;
2361 new_rtx = gen_reg_rtx (GET_MODE (x));
2362 generating_concat_p = 1;
2363 emit_move_insn (new_rtx, x);
2364 return new_rtx;
2366 return x;
2369 /* Helper function for expand_call.
2370 Return false is EXP is not implementable as a sibling call. */
2372 static bool
2373 can_implement_as_sibling_call_p (tree exp,
2374 rtx structure_value_addr,
2375 tree funtype,
2376 int reg_parm_stack_space ATTRIBUTE_UNUSED,
2377 tree fndecl,
2378 int flags,
2379 tree addr,
2380 const args_size &args_size)
2382 if (!targetm.have_sibcall_epilogue ())
2384 maybe_complain_about_tail_call
2385 (exp,
2386 "machine description does not have"
2387 " a sibcall_epilogue instruction pattern");
2388 return false;
2391 /* Doing sibling call optimization needs some work, since
2392 structure_value_addr can be allocated on the stack.
2393 It does not seem worth the effort since few optimizable
2394 sibling calls will return a structure. */
2395 if (structure_value_addr != NULL_RTX)
2397 maybe_complain_about_tail_call (exp, "callee returns a structure");
2398 return false;
2401 #ifdef REG_PARM_STACK_SPACE
2402 /* If outgoing reg parm stack space changes, we can not do sibcall. */
2403 if (OUTGOING_REG_PARM_STACK_SPACE (funtype)
2404 != OUTGOING_REG_PARM_STACK_SPACE (TREE_TYPE (current_function_decl))
2405 || (reg_parm_stack_space != REG_PARM_STACK_SPACE (current_function_decl)))
2407 maybe_complain_about_tail_call (exp,
2408 "inconsistent size of stack space"
2409 " allocated for arguments which are"
2410 " passed in registers");
2411 return false;
2413 #endif
2415 /* Check whether the target is able to optimize the call
2416 into a sibcall. */
2417 if (!targetm.function_ok_for_sibcall (fndecl, exp))
2419 maybe_complain_about_tail_call (exp,
2420 "target is not able to optimize the"
2421 " call into a sibling call");
2422 return false;
2425 /* Functions that do not return exactly once may not be sibcall
2426 optimized. */
2427 if (flags & ECF_RETURNS_TWICE)
2429 maybe_complain_about_tail_call (exp, "callee returns twice");
2430 return false;
2432 if (flags & ECF_NORETURN)
2434 maybe_complain_about_tail_call (exp, "callee does not return");
2435 return false;
2438 if (TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr))))
2440 maybe_complain_about_tail_call (exp, "volatile function type");
2441 return false;
2444 /* If the called function is nested in the current one, it might access
2445 some of the caller's arguments, but could clobber them beforehand if
2446 the argument areas are shared. */
2447 if (fndecl && decl_function_context (fndecl) == current_function_decl)
2449 maybe_complain_about_tail_call (exp, "nested function");
2450 return false;
2453 /* If this function requires more stack slots than the current
2454 function, we cannot change it into a sibling call.
2455 crtl->args.pretend_args_size is not part of the
2456 stack allocated by our caller. */
2457 if (args_size.constant > (crtl->args.size - crtl->args.pretend_args_size))
2459 maybe_complain_about_tail_call (exp,
2460 "callee required more stack slots"
2461 " than the caller");
2462 return false;
2465 /* If the callee pops its own arguments, then it must pop exactly
2466 the same number of arguments as the current function. */
2467 if (targetm.calls.return_pops_args (fndecl, funtype, args_size.constant)
2468 != targetm.calls.return_pops_args (current_function_decl,
2469 TREE_TYPE (current_function_decl),
2470 crtl->args.size))
2472 maybe_complain_about_tail_call (exp,
2473 "inconsistent number of"
2474 " popped arguments");
2475 return false;
2478 if (!lang_hooks.decls.ok_for_sibcall (fndecl))
2480 maybe_complain_about_tail_call (exp, "frontend does not support"
2481 " sibling call");
2482 return false;
2485 /* All checks passed. */
2486 return true;
2489 /* Generate all the code for a CALL_EXPR exp
2490 and return an rtx for its value.
2491 Store the value in TARGET (specified as an rtx) if convenient.
2492 If the value is stored in TARGET then TARGET is returned.
2493 If IGNORE is nonzero, then we ignore the value of the function call. */
2496 expand_call (tree exp, rtx target, int ignore)
2498 /* Nonzero if we are currently expanding a call. */
2499 static int currently_expanding_call = 0;
2501 /* RTX for the function to be called. */
2502 rtx funexp;
2503 /* Sequence of insns to perform a normal "call". */
2504 rtx_insn *normal_call_insns = NULL;
2505 /* Sequence of insns to perform a tail "call". */
2506 rtx_insn *tail_call_insns = NULL;
2507 /* Data type of the function. */
2508 tree funtype;
2509 tree type_arg_types;
2510 tree rettype;
2511 /* Declaration of the function being called,
2512 or 0 if the function is computed (not known by name). */
2513 tree fndecl = 0;
2514 /* The type of the function being called. */
2515 tree fntype;
2516 bool try_tail_call = CALL_EXPR_TAILCALL (exp);
2517 bool must_tail_call = CALL_EXPR_MUST_TAIL_CALL (exp);
2518 int pass;
2520 /* Register in which non-BLKmode value will be returned,
2521 or 0 if no value or if value is BLKmode. */
2522 rtx valreg;
2523 /* Register(s) in which bounds are returned. */
2524 rtx valbnd = NULL;
2525 /* Address where we should return a BLKmode value;
2526 0 if value not BLKmode. */
2527 rtx structure_value_addr = 0;
2528 /* Nonzero if that address is being passed by treating it as
2529 an extra, implicit first parameter. Otherwise,
2530 it is passed by being copied directly into struct_value_rtx. */
2531 int structure_value_addr_parm = 0;
2532 /* Holds the value of implicit argument for the struct value. */
2533 tree structure_value_addr_value = NULL_TREE;
2534 /* Size of aggregate value wanted, or zero if none wanted
2535 or if we are using the non-reentrant PCC calling convention
2536 or expecting the value in registers. */
2537 HOST_WIDE_INT struct_value_size = 0;
2538 /* Nonzero if called function returns an aggregate in memory PCC style,
2539 by returning the address of where to find it. */
2540 int pcc_struct_value = 0;
2541 rtx struct_value = 0;
2543 /* Number of actual parameters in this call, including struct value addr. */
2544 int num_actuals;
2545 /* Number of named args. Args after this are anonymous ones
2546 and they must all go on the stack. */
2547 int n_named_args;
2548 /* Number of complex actual arguments that need to be split. */
2549 int num_complex_actuals = 0;
2551 /* Vector of information about each argument.
2552 Arguments are numbered in the order they will be pushed,
2553 not the order they are written. */
2554 struct arg_data *args;
2556 /* Total size in bytes of all the stack-parms scanned so far. */
2557 struct args_size args_size;
2558 struct args_size adjusted_args_size;
2559 /* Size of arguments before any adjustments (such as rounding). */
2560 int unadjusted_args_size;
2561 /* Data on reg parms scanned so far. */
2562 CUMULATIVE_ARGS args_so_far_v;
2563 cumulative_args_t args_so_far;
2564 /* Nonzero if a reg parm has been scanned. */
2565 int reg_parm_seen;
2566 /* Nonzero if this is an indirect function call. */
2568 /* Nonzero if we must avoid push-insns in the args for this call.
2569 If stack space is allocated for register parameters, but not by the
2570 caller, then it is preallocated in the fixed part of the stack frame.
2571 So the entire argument block must then be preallocated (i.e., we
2572 ignore PUSH_ROUNDING in that case). */
2574 int must_preallocate = !PUSH_ARGS;
2576 /* Size of the stack reserved for parameter registers. */
2577 int reg_parm_stack_space = 0;
2579 /* Address of space preallocated for stack parms
2580 (on machines that lack push insns), or 0 if space not preallocated. */
2581 rtx argblock = 0;
2583 /* Mask of ECF_ and ERF_ flags. */
2584 int flags = 0;
2585 int return_flags = 0;
2586 #ifdef REG_PARM_STACK_SPACE
2587 /* Define the boundary of the register parm stack space that needs to be
2588 saved, if any. */
2589 int low_to_save, high_to_save;
2590 rtx save_area = 0; /* Place that it is saved */
2591 #endif
2593 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
2594 char *initial_stack_usage_map = stack_usage_map;
2595 char *stack_usage_map_buf = NULL;
2597 int old_stack_allocated;
2599 /* State variables to track stack modifications. */
2600 rtx old_stack_level = 0;
2601 int old_stack_arg_under_construction = 0;
2602 int old_pending_adj = 0;
2603 int old_inhibit_defer_pop = inhibit_defer_pop;
2605 /* Some stack pointer alterations we make are performed via
2606 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
2607 which we then also need to save/restore along the way. */
2608 int old_stack_pointer_delta = 0;
2610 rtx call_fusage;
2611 tree addr = CALL_EXPR_FN (exp);
2612 int i;
2613 /* The alignment of the stack, in bits. */
2614 unsigned HOST_WIDE_INT preferred_stack_boundary;
2615 /* The alignment of the stack, in bytes. */
2616 unsigned HOST_WIDE_INT preferred_unit_stack_boundary;
2617 /* The static chain value to use for this call. */
2618 rtx static_chain_value;
2619 /* See if this is "nothrow" function call. */
2620 if (TREE_NOTHROW (exp))
2621 flags |= ECF_NOTHROW;
2623 /* See if we can find a DECL-node for the actual function, and get the
2624 function attributes (flags) from the function decl or type node. */
2625 fndecl = get_callee_fndecl (exp);
2626 if (fndecl)
2628 fntype = TREE_TYPE (fndecl);
2629 flags |= flags_from_decl_or_type (fndecl);
2630 return_flags |= decl_return_flags (fndecl);
2632 else
2634 fntype = TREE_TYPE (TREE_TYPE (addr));
2635 flags |= flags_from_decl_or_type (fntype);
2637 rettype = TREE_TYPE (exp);
2639 struct_value = targetm.calls.struct_value_rtx (fntype, 0);
2641 /* Warn if this value is an aggregate type,
2642 regardless of which calling convention we are using for it. */
2643 if (AGGREGATE_TYPE_P (rettype))
2644 warning (OPT_Waggregate_return, "function call has aggregate value");
2646 /* If the result of a non looping pure or const function call is
2647 ignored (or void), and none of its arguments are volatile, we can
2648 avoid expanding the call and just evaluate the arguments for
2649 side-effects. */
2650 if ((flags & (ECF_CONST | ECF_PURE))
2651 && (!(flags & ECF_LOOPING_CONST_OR_PURE))
2652 && (ignore || target == const0_rtx
2653 || TYPE_MODE (rettype) == VOIDmode))
2655 bool volatilep = false;
2656 tree arg;
2657 call_expr_arg_iterator iter;
2659 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2660 if (TREE_THIS_VOLATILE (arg))
2662 volatilep = true;
2663 break;
2666 if (! volatilep)
2668 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2669 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
2670 return const0_rtx;
2674 #ifdef REG_PARM_STACK_SPACE
2675 reg_parm_stack_space = REG_PARM_STACK_SPACE (!fndecl ? fntype : fndecl);
2676 #endif
2678 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
2679 && reg_parm_stack_space > 0 && PUSH_ARGS)
2680 must_preallocate = 1;
2682 /* Set up a place to return a structure. */
2684 /* Cater to broken compilers. */
2685 if (aggregate_value_p (exp, fntype))
2687 /* This call returns a big structure. */
2688 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
2690 #ifdef PCC_STATIC_STRUCT_RETURN
2692 pcc_struct_value = 1;
2694 #else /* not PCC_STATIC_STRUCT_RETURN */
2696 struct_value_size = int_size_in_bytes (rettype);
2698 /* Even if it is semantically safe to use the target as the return
2699 slot, it may be not sufficiently aligned for the return type. */
2700 if (CALL_EXPR_RETURN_SLOT_OPT (exp)
2701 && target
2702 && MEM_P (target)
2703 && !(MEM_ALIGN (target) < TYPE_ALIGN (rettype)
2704 && SLOW_UNALIGNED_ACCESS (TYPE_MODE (rettype),
2705 MEM_ALIGN (target))))
2706 structure_value_addr = XEXP (target, 0);
2707 else
2709 /* For variable-sized objects, we must be called with a target
2710 specified. If we were to allocate space on the stack here,
2711 we would have no way of knowing when to free it. */
2712 rtx d = assign_temp (rettype, 1, 1);
2713 structure_value_addr = XEXP (d, 0);
2714 target = 0;
2717 #endif /* not PCC_STATIC_STRUCT_RETURN */
2720 /* Figure out the amount to which the stack should be aligned. */
2721 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
2722 if (fndecl)
2724 struct cgraph_rtl_info *i = cgraph_node::rtl_info (fndecl);
2725 /* Without automatic stack alignment, we can't increase preferred
2726 stack boundary. With automatic stack alignment, it is
2727 unnecessary since unless we can guarantee that all callers will
2728 align the outgoing stack properly, callee has to align its
2729 stack anyway. */
2730 if (i
2731 && i->preferred_incoming_stack_boundary
2732 && i->preferred_incoming_stack_boundary < preferred_stack_boundary)
2733 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
2736 /* Operand 0 is a pointer-to-function; get the type of the function. */
2737 funtype = TREE_TYPE (addr);
2738 gcc_assert (POINTER_TYPE_P (funtype));
2739 funtype = TREE_TYPE (funtype);
2741 /* Count whether there are actual complex arguments that need to be split
2742 into their real and imaginary parts. Munge the type_arg_types
2743 appropriately here as well. */
2744 if (targetm.calls.split_complex_arg)
2746 call_expr_arg_iterator iter;
2747 tree arg;
2748 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2750 tree type = TREE_TYPE (arg);
2751 if (type && TREE_CODE (type) == COMPLEX_TYPE
2752 && targetm.calls.split_complex_arg (type))
2753 num_complex_actuals++;
2755 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
2757 else
2758 type_arg_types = TYPE_ARG_TYPES (funtype);
2760 if (flags & ECF_MAY_BE_ALLOCA)
2761 cfun->calls_alloca = 1;
2763 /* If struct_value_rtx is 0, it means pass the address
2764 as if it were an extra parameter. Put the argument expression
2765 in structure_value_addr_value. */
2766 if (structure_value_addr && struct_value == 0)
2768 /* If structure_value_addr is a REG other than
2769 virtual_outgoing_args_rtx, we can use always use it. If it
2770 is not a REG, we must always copy it into a register.
2771 If it is virtual_outgoing_args_rtx, we must copy it to another
2772 register in some cases. */
2773 rtx temp = (!REG_P (structure_value_addr)
2774 || (ACCUMULATE_OUTGOING_ARGS
2775 && stack_arg_under_construction
2776 && structure_value_addr == virtual_outgoing_args_rtx)
2777 ? copy_addr_to_reg (convert_memory_address
2778 (Pmode, structure_value_addr))
2779 : structure_value_addr);
2781 structure_value_addr_value =
2782 make_tree (build_pointer_type (TREE_TYPE (funtype)), temp);
2783 structure_value_addr_parm = CALL_WITH_BOUNDS_P (exp) ? 2 : 1;
2786 /* Count the arguments and set NUM_ACTUALS. */
2787 num_actuals =
2788 call_expr_nargs (exp) + num_complex_actuals + structure_value_addr_parm;
2790 /* Compute number of named args.
2791 First, do a raw count of the args for INIT_CUMULATIVE_ARGS. */
2793 if (type_arg_types != 0)
2794 n_named_args
2795 = (list_length (type_arg_types)
2796 /* Count the struct value address, if it is passed as a parm. */
2797 + structure_value_addr_parm);
2798 else
2799 /* If we know nothing, treat all args as named. */
2800 n_named_args = num_actuals;
2802 /* Start updating where the next arg would go.
2804 On some machines (such as the PA) indirect calls have a different
2805 calling convention than normal calls. The fourth argument in
2806 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
2807 or not. */
2808 INIT_CUMULATIVE_ARGS (args_so_far_v, funtype, NULL_RTX, fndecl, n_named_args);
2809 args_so_far = pack_cumulative_args (&args_so_far_v);
2811 /* Now possibly adjust the number of named args.
2812 Normally, don't include the last named arg if anonymous args follow.
2813 We do include the last named arg if
2814 targetm.calls.strict_argument_naming() returns nonzero.
2815 (If no anonymous args follow, the result of list_length is actually
2816 one too large. This is harmless.)
2818 If targetm.calls.pretend_outgoing_varargs_named() returns
2819 nonzero, and targetm.calls.strict_argument_naming() returns zero,
2820 this machine will be able to place unnamed args that were passed
2821 in registers into the stack. So treat all args as named. This
2822 allows the insns emitting for a specific argument list to be
2823 independent of the function declaration.
2825 If targetm.calls.pretend_outgoing_varargs_named() returns zero,
2826 we do not have any reliable way to pass unnamed args in
2827 registers, so we must force them into memory. */
2829 if (type_arg_types != 0
2830 && targetm.calls.strict_argument_naming (args_so_far))
2832 else if (type_arg_types != 0
2833 && ! targetm.calls.pretend_outgoing_varargs_named (args_so_far))
2834 /* Don't include the last named arg. */
2835 --n_named_args;
2836 else
2837 /* Treat all args as named. */
2838 n_named_args = num_actuals;
2840 /* Make a vector to hold all the information about each arg. */
2841 args = XALLOCAVEC (struct arg_data, num_actuals);
2842 memset (args, 0, num_actuals * sizeof (struct arg_data));
2844 /* Build up entries in the ARGS array, compute the size of the
2845 arguments into ARGS_SIZE, etc. */
2846 initialize_argument_information (num_actuals, args, &args_size,
2847 n_named_args, exp,
2848 structure_value_addr_value, fndecl, fntype,
2849 args_so_far, reg_parm_stack_space,
2850 &old_stack_level, &old_pending_adj,
2851 &must_preallocate, &flags,
2852 &try_tail_call, CALL_FROM_THUNK_P (exp));
2854 if (args_size.var)
2855 must_preallocate = 1;
2857 /* Now make final decision about preallocating stack space. */
2858 must_preallocate = finalize_must_preallocate (must_preallocate,
2859 num_actuals, args,
2860 &args_size);
2862 /* If the structure value address will reference the stack pointer, we
2863 must stabilize it. We don't need to do this if we know that we are
2864 not going to adjust the stack pointer in processing this call. */
2866 if (structure_value_addr
2867 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
2868 || reg_mentioned_p (virtual_outgoing_args_rtx,
2869 structure_value_addr))
2870 && (args_size.var
2871 || (!ACCUMULATE_OUTGOING_ARGS && args_size.constant)))
2872 structure_value_addr = copy_to_reg (structure_value_addr);
2874 /* Tail calls can make things harder to debug, and we've traditionally
2875 pushed these optimizations into -O2. Don't try if we're already
2876 expanding a call, as that means we're an argument. Don't try if
2877 there's cleanups, as we know there's code to follow the call. */
2879 if (currently_expanding_call++ != 0
2880 || !flag_optimize_sibling_calls
2881 || args_size.var
2882 || dbg_cnt (tail_call) == false)
2883 try_tail_call = 0;
2885 /* If the user has marked the function as requiring tail-call
2886 optimization, attempt it. */
2887 if (must_tail_call)
2888 try_tail_call = 1;
2890 /* Rest of purposes for tail call optimizations to fail. */
2891 if (try_tail_call)
2892 try_tail_call = can_implement_as_sibling_call_p (exp,
2893 structure_value_addr,
2894 funtype,
2895 reg_parm_stack_space,
2896 fndecl,
2897 flags, addr, args_size);
2899 /* Check if caller and callee disagree in promotion of function
2900 return value. */
2901 if (try_tail_call)
2903 machine_mode caller_mode, caller_promoted_mode;
2904 machine_mode callee_mode, callee_promoted_mode;
2905 int caller_unsignedp, callee_unsignedp;
2906 tree caller_res = DECL_RESULT (current_function_decl);
2908 caller_unsignedp = TYPE_UNSIGNED (TREE_TYPE (caller_res));
2909 caller_mode = DECL_MODE (caller_res);
2910 callee_unsignedp = TYPE_UNSIGNED (TREE_TYPE (funtype));
2911 callee_mode = TYPE_MODE (TREE_TYPE (funtype));
2912 caller_promoted_mode
2913 = promote_function_mode (TREE_TYPE (caller_res), caller_mode,
2914 &caller_unsignedp,
2915 TREE_TYPE (current_function_decl), 1);
2916 callee_promoted_mode
2917 = promote_function_mode (TREE_TYPE (funtype), callee_mode,
2918 &callee_unsignedp,
2919 funtype, 1);
2920 if (caller_mode != VOIDmode
2921 && (caller_promoted_mode != callee_promoted_mode
2922 || ((caller_mode != caller_promoted_mode
2923 || callee_mode != callee_promoted_mode)
2924 && (caller_unsignedp != callee_unsignedp
2925 || GET_MODE_BITSIZE (caller_mode)
2926 < GET_MODE_BITSIZE (callee_mode)))))
2928 try_tail_call = 0;
2929 maybe_complain_about_tail_call (exp,
2930 "caller and callee disagree in"
2931 " promotion of function"
2932 " return value");
2936 /* Ensure current function's preferred stack boundary is at least
2937 what we need. Stack alignment may also increase preferred stack
2938 boundary. */
2939 if (crtl->preferred_stack_boundary < preferred_stack_boundary)
2940 crtl->preferred_stack_boundary = preferred_stack_boundary;
2941 else
2942 preferred_stack_boundary = crtl->preferred_stack_boundary;
2944 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
2946 /* We want to make two insn chains; one for a sibling call, the other
2947 for a normal call. We will select one of the two chains after
2948 initial RTL generation is complete. */
2949 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
2951 int sibcall_failure = 0;
2952 /* We want to emit any pending stack adjustments before the tail
2953 recursion "call". That way we know any adjustment after the tail
2954 recursion call can be ignored if we indeed use the tail
2955 call expansion. */
2956 saved_pending_stack_adjust save;
2957 rtx_insn *insns, *before_call, *after_args;
2958 rtx next_arg_reg;
2960 if (pass == 0)
2962 /* State variables we need to save and restore between
2963 iterations. */
2964 save_pending_stack_adjust (&save);
2966 if (pass)
2967 flags &= ~ECF_SIBCALL;
2968 else
2969 flags |= ECF_SIBCALL;
2971 /* Other state variables that we must reinitialize each time
2972 through the loop (that are not initialized by the loop itself). */
2973 argblock = 0;
2974 call_fusage = 0;
2976 /* Start a new sequence for the normal call case.
2978 From this point on, if the sibling call fails, we want to set
2979 sibcall_failure instead of continuing the loop. */
2980 start_sequence ();
2982 /* Don't let pending stack adjusts add up to too much.
2983 Also, do all pending adjustments now if there is any chance
2984 this might be a call to alloca or if we are expanding a sibling
2985 call sequence.
2986 Also do the adjustments before a throwing call, otherwise
2987 exception handling can fail; PR 19225. */
2988 if (pending_stack_adjust >= 32
2989 || (pending_stack_adjust > 0
2990 && (flags & ECF_MAY_BE_ALLOCA))
2991 || (pending_stack_adjust > 0
2992 && flag_exceptions && !(flags & ECF_NOTHROW))
2993 || pass == 0)
2994 do_pending_stack_adjust ();
2996 /* Precompute any arguments as needed. */
2997 if (pass)
2998 precompute_arguments (num_actuals, args);
3000 /* Now we are about to start emitting insns that can be deleted
3001 if a libcall is deleted. */
3002 if (pass && (flags & ECF_MALLOC))
3003 start_sequence ();
3005 if (pass == 0 && crtl->stack_protect_guard)
3006 stack_protect_epilogue ();
3008 adjusted_args_size = args_size;
3009 /* Compute the actual size of the argument block required. The variable
3010 and constant sizes must be combined, the size may have to be rounded,
3011 and there may be a minimum required size. When generating a sibcall
3012 pattern, do not round up, since we'll be re-using whatever space our
3013 caller provided. */
3014 unadjusted_args_size
3015 = compute_argument_block_size (reg_parm_stack_space,
3016 &adjusted_args_size,
3017 fndecl, fntype,
3018 (pass == 0 ? 0
3019 : preferred_stack_boundary));
3021 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
3023 /* The argument block when performing a sibling call is the
3024 incoming argument block. */
3025 if (pass == 0)
3027 argblock = crtl->args.internal_arg_pointer;
3028 if (STACK_GROWS_DOWNWARD)
3029 argblock
3030 = plus_constant (Pmode, argblock, crtl->args.pretend_args_size);
3031 else
3032 argblock
3033 = plus_constant (Pmode, argblock, -crtl->args.pretend_args_size);
3035 stored_args_map = sbitmap_alloc (args_size.constant);
3036 bitmap_clear (stored_args_map);
3039 /* If we have no actual push instructions, or shouldn't use them,
3040 make space for all args right now. */
3041 else if (adjusted_args_size.var != 0)
3043 if (old_stack_level == 0)
3045 emit_stack_save (SAVE_BLOCK, &old_stack_level);
3046 old_stack_pointer_delta = stack_pointer_delta;
3047 old_pending_adj = pending_stack_adjust;
3048 pending_stack_adjust = 0;
3049 /* stack_arg_under_construction says whether a stack arg is
3050 being constructed at the old stack level. Pushing the stack
3051 gets a clean outgoing argument block. */
3052 old_stack_arg_under_construction = stack_arg_under_construction;
3053 stack_arg_under_construction = 0;
3055 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
3056 if (flag_stack_usage_info)
3057 current_function_has_unbounded_dynamic_stack_size = 1;
3059 else
3061 /* Note that we must go through the motions of allocating an argument
3062 block even if the size is zero because we may be storing args
3063 in the area reserved for register arguments, which may be part of
3064 the stack frame. */
3066 int needed = adjusted_args_size.constant;
3068 /* Store the maximum argument space used. It will be pushed by
3069 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
3070 checking). */
3072 if (needed > crtl->outgoing_args_size)
3073 crtl->outgoing_args_size = needed;
3075 if (must_preallocate)
3077 if (ACCUMULATE_OUTGOING_ARGS)
3079 /* Since the stack pointer will never be pushed, it is
3080 possible for the evaluation of a parm to clobber
3081 something we have already written to the stack.
3082 Since most function calls on RISC machines do not use
3083 the stack, this is uncommon, but must work correctly.
3085 Therefore, we save any area of the stack that was already
3086 written and that we are using. Here we set up to do this
3087 by making a new stack usage map from the old one. The
3088 actual save will be done by store_one_arg.
3090 Another approach might be to try to reorder the argument
3091 evaluations to avoid this conflicting stack usage. */
3093 /* Since we will be writing into the entire argument area,
3094 the map must be allocated for its entire size, not just
3095 the part that is the responsibility of the caller. */
3096 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
3097 needed += reg_parm_stack_space;
3099 if (ARGS_GROW_DOWNWARD)
3100 highest_outgoing_arg_in_use
3101 = MAX (initial_highest_arg_in_use, needed + 1);
3102 else
3103 highest_outgoing_arg_in_use
3104 = MAX (initial_highest_arg_in_use, needed);
3106 free (stack_usage_map_buf);
3107 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
3108 stack_usage_map = stack_usage_map_buf;
3110 if (initial_highest_arg_in_use)
3111 memcpy (stack_usage_map, initial_stack_usage_map,
3112 initial_highest_arg_in_use);
3114 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3115 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
3116 (highest_outgoing_arg_in_use
3117 - initial_highest_arg_in_use));
3118 needed = 0;
3120 /* The address of the outgoing argument list must not be
3121 copied to a register here, because argblock would be left
3122 pointing to the wrong place after the call to
3123 allocate_dynamic_stack_space below. */
3125 argblock = virtual_outgoing_args_rtx;
3127 else
3129 if (inhibit_defer_pop == 0)
3131 /* Try to reuse some or all of the pending_stack_adjust
3132 to get this space. */
3133 needed
3134 = (combine_pending_stack_adjustment_and_call
3135 (unadjusted_args_size,
3136 &adjusted_args_size,
3137 preferred_unit_stack_boundary));
3139 /* combine_pending_stack_adjustment_and_call computes
3140 an adjustment before the arguments are allocated.
3141 Account for them and see whether or not the stack
3142 needs to go up or down. */
3143 needed = unadjusted_args_size - needed;
3145 if (needed < 0)
3147 /* We're releasing stack space. */
3148 /* ??? We can avoid any adjustment at all if we're
3149 already aligned. FIXME. */
3150 pending_stack_adjust = -needed;
3151 do_pending_stack_adjust ();
3152 needed = 0;
3154 else
3155 /* We need to allocate space. We'll do that in
3156 push_block below. */
3157 pending_stack_adjust = 0;
3160 /* Special case this because overhead of `push_block' in
3161 this case is non-trivial. */
3162 if (needed == 0)
3163 argblock = virtual_outgoing_args_rtx;
3164 else
3166 argblock = push_block (GEN_INT (needed), 0, 0);
3167 if (ARGS_GROW_DOWNWARD)
3168 argblock = plus_constant (Pmode, argblock, needed);
3171 /* We only really need to call `copy_to_reg' in the case
3172 where push insns are going to be used to pass ARGBLOCK
3173 to a function call in ARGS. In that case, the stack
3174 pointer changes value from the allocation point to the
3175 call point, and hence the value of
3176 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
3177 as well always do it. */
3178 argblock = copy_to_reg (argblock);
3183 if (ACCUMULATE_OUTGOING_ARGS)
3185 /* The save/restore code in store_one_arg handles all
3186 cases except one: a constructor call (including a C
3187 function returning a BLKmode struct) to initialize
3188 an argument. */
3189 if (stack_arg_under_construction)
3191 rtx push_size
3192 = GEN_INT (adjusted_args_size.constant
3193 + (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype
3194 : TREE_TYPE (fndecl))) ? 0
3195 : reg_parm_stack_space));
3196 if (old_stack_level == 0)
3198 emit_stack_save (SAVE_BLOCK, &old_stack_level);
3199 old_stack_pointer_delta = stack_pointer_delta;
3200 old_pending_adj = pending_stack_adjust;
3201 pending_stack_adjust = 0;
3202 /* stack_arg_under_construction says whether a stack
3203 arg is being constructed at the old stack level.
3204 Pushing the stack gets a clean outgoing argument
3205 block. */
3206 old_stack_arg_under_construction
3207 = stack_arg_under_construction;
3208 stack_arg_under_construction = 0;
3209 /* Make a new map for the new argument list. */
3210 free (stack_usage_map_buf);
3211 stack_usage_map_buf = XCNEWVEC (char, highest_outgoing_arg_in_use);
3212 stack_usage_map = stack_usage_map_buf;
3213 highest_outgoing_arg_in_use = 0;
3215 /* We can pass TRUE as the 4th argument because we just
3216 saved the stack pointer and will restore it right after
3217 the call. */
3218 allocate_dynamic_stack_space (push_size, 0,
3219 BIGGEST_ALIGNMENT, true);
3222 /* If argument evaluation might modify the stack pointer,
3223 copy the address of the argument list to a register. */
3224 for (i = 0; i < num_actuals; i++)
3225 if (args[i].pass_on_stack)
3227 argblock = copy_addr_to_reg (argblock);
3228 break;
3232 compute_argument_addresses (args, argblock, num_actuals);
3234 /* Stack is properly aligned, pops can't safely be deferred during
3235 the evaluation of the arguments. */
3236 NO_DEFER_POP;
3238 /* Precompute all register parameters. It isn't safe to compute
3239 anything once we have started filling any specific hard regs.
3240 TLS symbols sometimes need a call to resolve. Precompute
3241 register parameters before any stack pointer manipulation
3242 to avoid unaligned stack in the called function. */
3243 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
3245 OK_DEFER_POP;
3247 /* Perform stack alignment before the first push (the last arg). */
3248 if (argblock == 0
3249 && adjusted_args_size.constant > reg_parm_stack_space
3250 && adjusted_args_size.constant != unadjusted_args_size)
3252 /* When the stack adjustment is pending, we get better code
3253 by combining the adjustments. */
3254 if (pending_stack_adjust
3255 && ! inhibit_defer_pop)
3257 pending_stack_adjust
3258 = (combine_pending_stack_adjustment_and_call
3259 (unadjusted_args_size,
3260 &adjusted_args_size,
3261 preferred_unit_stack_boundary));
3262 do_pending_stack_adjust ();
3264 else if (argblock == 0)
3265 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
3266 - unadjusted_args_size));
3268 /* Now that the stack is properly aligned, pops can't safely
3269 be deferred during the evaluation of the arguments. */
3270 NO_DEFER_POP;
3272 /* Record the maximum pushed stack space size. We need to delay
3273 doing it this far to take into account the optimization done
3274 by combine_pending_stack_adjustment_and_call. */
3275 if (flag_stack_usage_info
3276 && !ACCUMULATE_OUTGOING_ARGS
3277 && pass
3278 && adjusted_args_size.var == 0)
3280 int pushed = adjusted_args_size.constant + pending_stack_adjust;
3281 if (pushed > current_function_pushed_stack_size)
3282 current_function_pushed_stack_size = pushed;
3285 funexp = rtx_for_function_call (fndecl, addr);
3287 if (CALL_EXPR_STATIC_CHAIN (exp))
3288 static_chain_value = expand_normal (CALL_EXPR_STATIC_CHAIN (exp));
3289 else
3290 static_chain_value = 0;
3292 #ifdef REG_PARM_STACK_SPACE
3293 /* Save the fixed argument area if it's part of the caller's frame and
3294 is clobbered by argument setup for this call. */
3295 if (ACCUMULATE_OUTGOING_ARGS && pass)
3296 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3297 &low_to_save, &high_to_save);
3298 #endif
3300 /* Now store (and compute if necessary) all non-register parms.
3301 These come before register parms, since they can require block-moves,
3302 which could clobber the registers used for register parms.
3303 Parms which have partial registers are not stored here,
3304 but we do preallocate space here if they want that. */
3306 for (i = 0; i < num_actuals; i++)
3308 /* Delay bounds until all other args are stored. */
3309 if (POINTER_BOUNDS_P (args[i].tree_value))
3310 continue;
3311 else if (args[i].reg == 0 || args[i].pass_on_stack)
3313 rtx_insn *before_arg = get_last_insn ();
3315 /* We don't allow passing huge (> 2^30 B) arguments
3316 by value. It would cause an overflow later on. */
3317 if (adjusted_args_size.constant
3318 >= (1 << (HOST_BITS_PER_INT - 2)))
3320 sorry ("passing too large argument on stack");
3321 continue;
3324 if (store_one_arg (&args[i], argblock, flags,
3325 adjusted_args_size.var != 0,
3326 reg_parm_stack_space)
3327 || (pass == 0
3328 && check_sibcall_argument_overlap (before_arg,
3329 &args[i], 1)))
3330 sibcall_failure = 1;
3333 if (args[i].stack)
3334 call_fusage
3335 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
3336 gen_rtx_USE (VOIDmode, args[i].stack),
3337 call_fusage);
3340 /* If we have a parm that is passed in registers but not in memory
3341 and whose alignment does not permit a direct copy into registers,
3342 make a group of pseudos that correspond to each register that we
3343 will later fill. */
3344 if (STRICT_ALIGNMENT)
3345 store_unaligned_arguments_into_pseudos (args, num_actuals);
3347 /* Now store any partially-in-registers parm.
3348 This is the last place a block-move can happen. */
3349 if (reg_parm_seen)
3350 for (i = 0; i < num_actuals; i++)
3351 if (args[i].partial != 0 && ! args[i].pass_on_stack)
3353 rtx_insn *before_arg = get_last_insn ();
3355 /* On targets with weird calling conventions (e.g. PA) it's
3356 hard to ensure that all cases of argument overlap between
3357 stack and registers work. Play it safe and bail out. */
3358 if (ARGS_GROW_DOWNWARD && !STACK_GROWS_DOWNWARD)
3360 sibcall_failure = 1;
3361 break;
3364 if (store_one_arg (&args[i], argblock, flags,
3365 adjusted_args_size.var != 0,
3366 reg_parm_stack_space)
3367 || (pass == 0
3368 && check_sibcall_argument_overlap (before_arg,
3369 &args[i], 1)))
3370 sibcall_failure = 1;
3373 bool any_regs = false;
3374 for (i = 0; i < num_actuals; i++)
3375 if (args[i].reg != NULL_RTX)
3377 any_regs = true;
3378 targetm.calls.call_args (args[i].reg, funtype);
3380 if (!any_regs)
3381 targetm.calls.call_args (pc_rtx, funtype);
3383 /* Figure out the register where the value, if any, will come back. */
3384 valreg = 0;
3385 valbnd = 0;
3386 if (TYPE_MODE (rettype) != VOIDmode
3387 && ! structure_value_addr)
3389 if (pcc_struct_value)
3391 valreg = hard_function_value (build_pointer_type (rettype),
3392 fndecl, NULL, (pass == 0));
3393 if (CALL_WITH_BOUNDS_P (exp))
3394 valbnd = targetm.calls.
3395 chkp_function_value_bounds (build_pointer_type (rettype),
3396 fndecl, (pass == 0));
3398 else
3400 valreg = hard_function_value (rettype, fndecl, fntype,
3401 (pass == 0));
3402 if (CALL_WITH_BOUNDS_P (exp))
3403 valbnd = targetm.calls.chkp_function_value_bounds (rettype,
3404 fndecl,
3405 (pass == 0));
3408 /* If VALREG is a PARALLEL whose first member has a zero
3409 offset, use that. This is for targets such as m68k that
3410 return the same value in multiple places. */
3411 if (GET_CODE (valreg) == PARALLEL)
3413 rtx elem = XVECEXP (valreg, 0, 0);
3414 rtx where = XEXP (elem, 0);
3415 rtx offset = XEXP (elem, 1);
3416 if (offset == const0_rtx
3417 && GET_MODE (where) == GET_MODE (valreg))
3418 valreg = where;
3422 /* Store all bounds not passed in registers. */
3423 for (i = 0; i < num_actuals; i++)
3425 if (POINTER_BOUNDS_P (args[i].tree_value)
3426 && !args[i].reg)
3427 store_bounds (&args[i],
3428 args[i].pointer_arg == -1
3429 ? NULL
3430 : &args[args[i].pointer_arg]);
3433 /* If register arguments require space on the stack and stack space
3434 was not preallocated, allocate stack space here for arguments
3435 passed in registers. */
3436 if (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
3437 && !ACCUMULATE_OUTGOING_ARGS
3438 && must_preallocate == 0 && reg_parm_stack_space > 0)
3439 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
3441 /* Pass the function the address in which to return a
3442 structure value. */
3443 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
3445 structure_value_addr
3446 = convert_memory_address (Pmode, structure_value_addr);
3447 emit_move_insn (struct_value,
3448 force_reg (Pmode,
3449 force_operand (structure_value_addr,
3450 NULL_RTX)));
3452 if (REG_P (struct_value))
3453 use_reg (&call_fusage, struct_value);
3456 after_args = get_last_insn ();
3457 funexp = prepare_call_address (fndecl ? fndecl : fntype, funexp,
3458 static_chain_value, &call_fusage,
3459 reg_parm_seen, pass == 0);
3461 load_register_parameters (args, num_actuals, &call_fusage, flags,
3462 pass == 0, &sibcall_failure);
3464 /* Save a pointer to the last insn before the call, so that we can
3465 later safely search backwards to find the CALL_INSN. */
3466 before_call = get_last_insn ();
3468 /* Set up next argument register. For sibling calls on machines
3469 with register windows this should be the incoming register. */
3470 if (pass == 0)
3471 next_arg_reg = targetm.calls.function_incoming_arg (args_so_far,
3472 VOIDmode,
3473 void_type_node,
3474 true);
3475 else
3476 next_arg_reg = targetm.calls.function_arg (args_so_far,
3477 VOIDmode, void_type_node,
3478 true);
3480 if (pass == 1 && (return_flags & ERF_RETURNS_ARG))
3482 int arg_nr = return_flags & ERF_RETURN_ARG_MASK;
3483 arg_nr = num_actuals - arg_nr - 1;
3484 if (arg_nr >= 0
3485 && arg_nr < num_actuals
3486 && args[arg_nr].reg
3487 && valreg
3488 && REG_P (valreg)
3489 && GET_MODE (args[arg_nr].reg) == GET_MODE (valreg))
3490 call_fusage
3491 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[arg_nr].tree_value)),
3492 gen_rtx_SET (valreg, args[arg_nr].reg),
3493 call_fusage);
3495 /* All arguments and registers used for the call must be set up by
3496 now! */
3498 /* Stack must be properly aligned now. */
3499 gcc_assert (!pass
3500 || !(stack_pointer_delta % preferred_unit_stack_boundary));
3502 /* Generate the actual call instruction. */
3503 emit_call_1 (funexp, exp, fndecl, funtype, unadjusted_args_size,
3504 adjusted_args_size.constant, struct_value_size,
3505 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
3506 flags, args_so_far);
3508 if (flag_ipa_ra)
3510 rtx_call_insn *last;
3511 rtx datum = NULL_RTX;
3512 if (fndecl != NULL_TREE)
3514 datum = XEXP (DECL_RTL (fndecl), 0);
3515 gcc_assert (datum != NULL_RTX
3516 && GET_CODE (datum) == SYMBOL_REF);
3518 last = last_call_insn ();
3519 add_reg_note (last, REG_CALL_DECL, datum);
3522 /* If the call setup or the call itself overlaps with anything
3523 of the argument setup we probably clobbered our call address.
3524 In that case we can't do sibcalls. */
3525 if (pass == 0
3526 && check_sibcall_argument_overlap (after_args, 0, 0))
3527 sibcall_failure = 1;
3529 /* If a non-BLKmode value is returned at the most significant end
3530 of a register, shift the register right by the appropriate amount
3531 and update VALREG accordingly. BLKmode values are handled by the
3532 group load/store machinery below. */
3533 if (!structure_value_addr
3534 && !pcc_struct_value
3535 && TYPE_MODE (rettype) != VOIDmode
3536 && TYPE_MODE (rettype) != BLKmode
3537 && REG_P (valreg)
3538 && targetm.calls.return_in_msb (rettype))
3540 if (shift_return_value (TYPE_MODE (rettype), false, valreg))
3541 sibcall_failure = 1;
3542 valreg = gen_rtx_REG (TYPE_MODE (rettype), REGNO (valreg));
3545 if (pass && (flags & ECF_MALLOC))
3547 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3548 rtx_insn *last, *insns;
3550 /* The return value from a malloc-like function is a pointer. */
3551 if (TREE_CODE (rettype) == POINTER_TYPE)
3552 mark_reg_pointer (temp, MALLOC_ABI_ALIGNMENT);
3554 emit_move_insn (temp, valreg);
3556 /* The return value from a malloc-like function can not alias
3557 anything else. */
3558 last = get_last_insn ();
3559 add_reg_note (last, REG_NOALIAS, temp);
3561 /* Write out the sequence. */
3562 insns = get_insns ();
3563 end_sequence ();
3564 emit_insn (insns);
3565 valreg = temp;
3568 /* For calls to `setjmp', etc., inform
3569 function.c:setjmp_warnings that it should complain if
3570 nonvolatile values are live. For functions that cannot
3571 return, inform flow that control does not fall through. */
3573 if ((flags & ECF_NORETURN) || pass == 0)
3575 /* The barrier must be emitted
3576 immediately after the CALL_INSN. Some ports emit more
3577 than just a CALL_INSN above, so we must search for it here. */
3579 rtx_insn *last = get_last_insn ();
3580 while (!CALL_P (last))
3582 last = PREV_INSN (last);
3583 /* There was no CALL_INSN? */
3584 gcc_assert (last != before_call);
3587 emit_barrier_after (last);
3589 /* Stack adjustments after a noreturn call are dead code.
3590 However when NO_DEFER_POP is in effect, we must preserve
3591 stack_pointer_delta. */
3592 if (inhibit_defer_pop == 0)
3594 stack_pointer_delta = old_stack_allocated;
3595 pending_stack_adjust = 0;
3599 /* If value type not void, return an rtx for the value. */
3601 if (TYPE_MODE (rettype) == VOIDmode
3602 || ignore)
3603 target = const0_rtx;
3604 else if (structure_value_addr)
3606 if (target == 0 || !MEM_P (target))
3608 target
3609 = gen_rtx_MEM (TYPE_MODE (rettype),
3610 memory_address (TYPE_MODE (rettype),
3611 structure_value_addr));
3612 set_mem_attributes (target, rettype, 1);
3615 else if (pcc_struct_value)
3617 /* This is the special C++ case where we need to
3618 know what the true target was. We take care to
3619 never use this value more than once in one expression. */
3620 target = gen_rtx_MEM (TYPE_MODE (rettype),
3621 copy_to_reg (valreg));
3622 set_mem_attributes (target, rettype, 1);
3624 /* Handle calls that return values in multiple non-contiguous locations.
3625 The Irix 6 ABI has examples of this. */
3626 else if (GET_CODE (valreg) == PARALLEL)
3628 if (target == 0)
3629 target = emit_group_move_into_temps (valreg);
3630 else if (rtx_equal_p (target, valreg))
3632 else if (GET_CODE (target) == PARALLEL)
3633 /* Handle the result of a emit_group_move_into_temps
3634 call in the previous pass. */
3635 emit_group_move (target, valreg);
3636 else
3637 emit_group_store (target, valreg, rettype,
3638 int_size_in_bytes (rettype));
3640 else if (target
3641 && GET_MODE (target) == TYPE_MODE (rettype)
3642 && GET_MODE (target) == GET_MODE (valreg))
3644 bool may_overlap = false;
3646 /* We have to copy a return value in a CLASS_LIKELY_SPILLED hard
3647 reg to a plain register. */
3648 if (!REG_P (target) || HARD_REGISTER_P (target))
3649 valreg = avoid_likely_spilled_reg (valreg);
3651 /* If TARGET is a MEM in the argument area, and we have
3652 saved part of the argument area, then we can't store
3653 directly into TARGET as it may get overwritten when we
3654 restore the argument save area below. Don't work too
3655 hard though and simply force TARGET to a register if it
3656 is a MEM; the optimizer is quite likely to sort it out. */
3657 if (ACCUMULATE_OUTGOING_ARGS && pass && MEM_P (target))
3658 for (i = 0; i < num_actuals; i++)
3659 if (args[i].save_area)
3661 may_overlap = true;
3662 break;
3665 if (may_overlap)
3666 target = copy_to_reg (valreg);
3667 else
3669 /* TARGET and VALREG cannot be equal at this point
3670 because the latter would not have
3671 REG_FUNCTION_VALUE_P true, while the former would if
3672 it were referring to the same register.
3674 If they refer to the same register, this move will be
3675 a no-op, except when function inlining is being
3676 done. */
3677 emit_move_insn (target, valreg);
3679 /* If we are setting a MEM, this code must be executed.
3680 Since it is emitted after the call insn, sibcall
3681 optimization cannot be performed in that case. */
3682 if (MEM_P (target))
3683 sibcall_failure = 1;
3686 else
3687 target = copy_to_reg (avoid_likely_spilled_reg (valreg));
3689 /* If we promoted this return value, make the proper SUBREG.
3690 TARGET might be const0_rtx here, so be careful. */
3691 if (REG_P (target)
3692 && TYPE_MODE (rettype) != BLKmode
3693 && GET_MODE (target) != TYPE_MODE (rettype))
3695 tree type = rettype;
3696 int unsignedp = TYPE_UNSIGNED (type);
3697 int offset = 0;
3698 machine_mode pmode;
3700 /* Ensure we promote as expected, and get the new unsignedness. */
3701 pmode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
3702 funtype, 1);
3703 gcc_assert (GET_MODE (target) == pmode);
3705 if ((WORDS_BIG_ENDIAN || BYTES_BIG_ENDIAN)
3706 && (GET_MODE_SIZE (GET_MODE (target))
3707 > GET_MODE_SIZE (TYPE_MODE (type))))
3709 offset = GET_MODE_SIZE (GET_MODE (target))
3710 - GET_MODE_SIZE (TYPE_MODE (type));
3711 if (! BYTES_BIG_ENDIAN)
3712 offset = (offset / UNITS_PER_WORD) * UNITS_PER_WORD;
3713 else if (! WORDS_BIG_ENDIAN)
3714 offset %= UNITS_PER_WORD;
3717 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
3718 SUBREG_PROMOTED_VAR_P (target) = 1;
3719 SUBREG_PROMOTED_SET (target, unsignedp);
3722 /* If size of args is variable or this was a constructor call for a stack
3723 argument, restore saved stack-pointer value. */
3725 if (old_stack_level)
3727 rtx_insn *prev = get_last_insn ();
3729 emit_stack_restore (SAVE_BLOCK, old_stack_level);
3730 stack_pointer_delta = old_stack_pointer_delta;
3732 fixup_args_size_notes (prev, get_last_insn (), stack_pointer_delta);
3734 pending_stack_adjust = old_pending_adj;
3735 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
3736 stack_arg_under_construction = old_stack_arg_under_construction;
3737 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3738 stack_usage_map = initial_stack_usage_map;
3739 sibcall_failure = 1;
3741 else if (ACCUMULATE_OUTGOING_ARGS && pass)
3743 #ifdef REG_PARM_STACK_SPACE
3744 if (save_area)
3745 restore_fixed_argument_area (save_area, argblock,
3746 high_to_save, low_to_save);
3747 #endif
3749 /* If we saved any argument areas, restore them. */
3750 for (i = 0; i < num_actuals; i++)
3751 if (args[i].save_area)
3753 machine_mode save_mode = GET_MODE (args[i].save_area);
3754 rtx stack_area
3755 = gen_rtx_MEM (save_mode,
3756 memory_address (save_mode,
3757 XEXP (args[i].stack_slot, 0)));
3759 if (save_mode != BLKmode)
3760 emit_move_insn (stack_area, args[i].save_area);
3761 else
3762 emit_block_move (stack_area, args[i].save_area,
3763 GEN_INT (args[i].locate.size.constant),
3764 BLOCK_OP_CALL_PARM);
3767 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3768 stack_usage_map = initial_stack_usage_map;
3771 /* If this was alloca, record the new stack level. */
3772 if (flags & ECF_MAY_BE_ALLOCA)
3773 record_new_stack_level ();
3775 /* Free up storage we no longer need. */
3776 for (i = 0; i < num_actuals; ++i)
3777 free (args[i].aligned_regs);
3779 targetm.calls.end_call_args ();
3781 insns = get_insns ();
3782 end_sequence ();
3784 if (pass == 0)
3786 tail_call_insns = insns;
3788 /* Restore the pending stack adjustment now that we have
3789 finished generating the sibling call sequence. */
3791 restore_pending_stack_adjust (&save);
3793 /* Prepare arg structure for next iteration. */
3794 for (i = 0; i < num_actuals; i++)
3796 args[i].value = 0;
3797 args[i].aligned_regs = 0;
3798 args[i].stack = 0;
3801 sbitmap_free (stored_args_map);
3802 internal_arg_pointer_exp_state.scan_start = NULL;
3803 internal_arg_pointer_exp_state.cache.release ();
3805 else
3807 normal_call_insns = insns;
3809 /* Verify that we've deallocated all the stack we used. */
3810 gcc_assert ((flags & ECF_NORETURN)
3811 || (old_stack_allocated
3812 == stack_pointer_delta - pending_stack_adjust));
3815 /* If something prevents making this a sibling call,
3816 zero out the sequence. */
3817 if (sibcall_failure)
3818 tail_call_insns = NULL;
3819 else
3820 break;
3823 /* If tail call production succeeded, we need to remove REG_EQUIV notes on
3824 arguments too, as argument area is now clobbered by the call. */
3825 if (tail_call_insns)
3827 emit_insn (tail_call_insns);
3828 crtl->tail_call_emit = true;
3830 else
3832 emit_insn (normal_call_insns);
3833 if (try_tail_call)
3834 /* Ideally we'd emit a message for all of the ways that it could
3835 have failed. */
3836 maybe_complain_about_tail_call (exp, "tail call production failed");
3839 currently_expanding_call--;
3841 free (stack_usage_map_buf);
3843 /* Join result with returned bounds so caller may use them if needed. */
3844 target = chkp_join_splitted_slot (target, valbnd);
3846 return target;
3849 /* A sibling call sequence invalidates any REG_EQUIV notes made for
3850 this function's incoming arguments.
3852 At the start of RTL generation we know the only REG_EQUIV notes
3853 in the rtl chain are those for incoming arguments, so we can look
3854 for REG_EQUIV notes between the start of the function and the
3855 NOTE_INSN_FUNCTION_BEG.
3857 This is (slight) overkill. We could keep track of the highest
3858 argument we clobber and be more selective in removing notes, but it
3859 does not seem to be worth the effort. */
3861 void
3862 fixup_tail_calls (void)
3864 rtx_insn *insn;
3866 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3868 rtx note;
3870 /* There are never REG_EQUIV notes for the incoming arguments
3871 after the NOTE_INSN_FUNCTION_BEG note, so stop if we see it. */
3872 if (NOTE_P (insn)
3873 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
3874 break;
3876 note = find_reg_note (insn, REG_EQUIV, 0);
3877 if (note)
3878 remove_note (insn, note);
3879 note = find_reg_note (insn, REG_EQUIV, 0);
3880 gcc_assert (!note);
3884 /* Traverse a list of TYPES and expand all complex types into their
3885 components. */
3886 static tree
3887 split_complex_types (tree types)
3889 tree p;
3891 /* Before allocating memory, check for the common case of no complex. */
3892 for (p = types; p; p = TREE_CHAIN (p))
3894 tree type = TREE_VALUE (p);
3895 if (TREE_CODE (type) == COMPLEX_TYPE
3896 && targetm.calls.split_complex_arg (type))
3897 goto found;
3899 return types;
3901 found:
3902 types = copy_list (types);
3904 for (p = types; p; p = TREE_CHAIN (p))
3906 tree complex_type = TREE_VALUE (p);
3908 if (TREE_CODE (complex_type) == COMPLEX_TYPE
3909 && targetm.calls.split_complex_arg (complex_type))
3911 tree next, imag;
3913 /* Rewrite complex type with component type. */
3914 TREE_VALUE (p) = TREE_TYPE (complex_type);
3915 next = TREE_CHAIN (p);
3917 /* Add another component type for the imaginary part. */
3918 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
3919 TREE_CHAIN (p) = imag;
3920 TREE_CHAIN (imag) = next;
3922 /* Skip the newly created node. */
3923 p = TREE_CHAIN (p);
3927 return types;
3930 /* Output a library call to function FUN (a SYMBOL_REF rtx).
3931 The RETVAL parameter specifies whether return value needs to be saved, other
3932 parameters are documented in the emit_library_call function below. */
3934 static rtx
3935 emit_library_call_value_1 (int retval, rtx orgfun, rtx value,
3936 enum libcall_type fn_type,
3937 machine_mode outmode, int nargs, va_list p)
3939 /* Total size in bytes of all the stack-parms scanned so far. */
3940 struct args_size args_size;
3941 /* Size of arguments before any adjustments (such as rounding). */
3942 struct args_size original_args_size;
3943 int argnum;
3944 rtx fun;
3945 /* Todo, choose the correct decl type of orgfun. Sadly this information
3946 isn't present here, so we default to native calling abi here. */
3947 tree fndecl ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3948 tree fntype ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3949 int count;
3950 rtx argblock = 0;
3951 CUMULATIVE_ARGS args_so_far_v;
3952 cumulative_args_t args_so_far;
3953 struct arg
3955 rtx value;
3956 machine_mode mode;
3957 rtx reg;
3958 int partial;
3959 struct locate_and_pad_arg_data locate;
3960 rtx save_area;
3962 struct arg *argvec;
3963 int old_inhibit_defer_pop = inhibit_defer_pop;
3964 rtx call_fusage = 0;
3965 rtx mem_value = 0;
3966 rtx valreg;
3967 int pcc_struct_value = 0;
3968 int struct_value_size = 0;
3969 int flags;
3970 int reg_parm_stack_space = 0;
3971 int needed;
3972 rtx_insn *before_call;
3973 bool have_push_fusage;
3974 tree tfom; /* type_for_mode (outmode, 0) */
3976 #ifdef REG_PARM_STACK_SPACE
3977 /* Define the boundary of the register parm stack space that needs to be
3978 save, if any. */
3979 int low_to_save = 0, high_to_save = 0;
3980 rtx save_area = 0; /* Place that it is saved. */
3981 #endif
3983 /* Size of the stack reserved for parameter registers. */
3984 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3985 char *initial_stack_usage_map = stack_usage_map;
3986 char *stack_usage_map_buf = NULL;
3988 rtx struct_value = targetm.calls.struct_value_rtx (0, 0);
3990 #ifdef REG_PARM_STACK_SPACE
3991 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
3992 #endif
3994 /* By default, library functions cannot throw. */
3995 flags = ECF_NOTHROW;
3997 switch (fn_type)
3999 case LCT_NORMAL:
4000 break;
4001 case LCT_CONST:
4002 flags |= ECF_CONST;
4003 break;
4004 case LCT_PURE:
4005 flags |= ECF_PURE;
4006 break;
4007 case LCT_NORETURN:
4008 flags |= ECF_NORETURN;
4009 break;
4010 case LCT_THROW:
4011 flags &= ~ECF_NOTHROW;
4012 break;
4013 case LCT_RETURNS_TWICE:
4014 flags = ECF_RETURNS_TWICE;
4015 break;
4017 fun = orgfun;
4019 /* Ensure current function's preferred stack boundary is at least
4020 what we need. */
4021 if (crtl->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
4022 crtl->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
4024 /* If this kind of value comes back in memory,
4025 decide where in memory it should come back. */
4026 if (outmode != VOIDmode)
4028 tfom = lang_hooks.types.type_for_mode (outmode, 0);
4029 if (aggregate_value_p (tfom, 0))
4031 #ifdef PCC_STATIC_STRUCT_RETURN
4032 rtx pointer_reg
4033 = hard_function_value (build_pointer_type (tfom), 0, 0, 0);
4034 mem_value = gen_rtx_MEM (outmode, pointer_reg);
4035 pcc_struct_value = 1;
4036 if (value == 0)
4037 value = gen_reg_rtx (outmode);
4038 #else /* not PCC_STATIC_STRUCT_RETURN */
4039 struct_value_size = GET_MODE_SIZE (outmode);
4040 if (value != 0 && MEM_P (value))
4041 mem_value = value;
4042 else
4043 mem_value = assign_temp (tfom, 1, 1);
4044 #endif
4045 /* This call returns a big structure. */
4046 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
4049 else
4050 tfom = void_type_node;
4052 /* ??? Unfinished: must pass the memory address as an argument. */
4054 /* Copy all the libcall-arguments out of the varargs data
4055 and into a vector ARGVEC.
4057 Compute how to pass each argument. We only support a very small subset
4058 of the full argument passing conventions to limit complexity here since
4059 library functions shouldn't have many args. */
4061 argvec = XALLOCAVEC (struct arg, nargs + 1);
4062 memset (argvec, 0, (nargs + 1) * sizeof (struct arg));
4064 #ifdef INIT_CUMULATIVE_LIBCALL_ARGS
4065 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far_v, outmode, fun);
4066 #else
4067 INIT_CUMULATIVE_ARGS (args_so_far_v, NULL_TREE, fun, 0, nargs);
4068 #endif
4069 args_so_far = pack_cumulative_args (&args_so_far_v);
4071 args_size.constant = 0;
4072 args_size.var = 0;
4074 count = 0;
4076 push_temp_slots ();
4078 /* If there's a structure value address to be passed,
4079 either pass it in the special place, or pass it as an extra argument. */
4080 if (mem_value && struct_value == 0 && ! pcc_struct_value)
4082 rtx addr = XEXP (mem_value, 0);
4084 nargs++;
4086 /* Make sure it is a reasonable operand for a move or push insn. */
4087 if (!REG_P (addr) && !MEM_P (addr)
4088 && !(CONSTANT_P (addr)
4089 && targetm.legitimate_constant_p (Pmode, addr)))
4090 addr = force_operand (addr, NULL_RTX);
4092 argvec[count].value = addr;
4093 argvec[count].mode = Pmode;
4094 argvec[count].partial = 0;
4096 argvec[count].reg = targetm.calls.function_arg (args_so_far,
4097 Pmode, NULL_TREE, true);
4098 gcc_assert (targetm.calls.arg_partial_bytes (args_so_far, Pmode,
4099 NULL_TREE, 1) == 0);
4101 locate_and_pad_parm (Pmode, NULL_TREE,
4102 #ifdef STACK_PARMS_IN_REG_PARM_AREA
4104 #else
4105 argvec[count].reg != 0,
4106 #endif
4107 reg_parm_stack_space, 0,
4108 NULL_TREE, &args_size, &argvec[count].locate);
4110 if (argvec[count].reg == 0 || argvec[count].partial != 0
4111 || reg_parm_stack_space > 0)
4112 args_size.constant += argvec[count].locate.size.constant;
4114 targetm.calls.function_arg_advance (args_so_far, Pmode, (tree) 0, true);
4116 count++;
4119 for (; count < nargs; count++)
4121 rtx val = va_arg (p, rtx);
4122 machine_mode mode = (machine_mode) va_arg (p, int);
4123 int unsigned_p = 0;
4125 /* We cannot convert the arg value to the mode the library wants here;
4126 must do it earlier where we know the signedness of the arg. */
4127 gcc_assert (mode != BLKmode
4128 && (GET_MODE (val) == mode || GET_MODE (val) == VOIDmode));
4130 /* Make sure it is a reasonable operand for a move or push insn. */
4131 if (!REG_P (val) && !MEM_P (val)
4132 && !(CONSTANT_P (val) && targetm.legitimate_constant_p (mode, val)))
4133 val = force_operand (val, NULL_RTX);
4135 if (pass_by_reference (&args_so_far_v, mode, NULL_TREE, 1))
4137 rtx slot;
4138 int must_copy
4139 = !reference_callee_copied (&args_so_far_v, mode, NULL_TREE, 1);
4141 /* If this was a CONST function, it is now PURE since it now
4142 reads memory. */
4143 if (flags & ECF_CONST)
4145 flags &= ~ECF_CONST;
4146 flags |= ECF_PURE;
4149 if (MEM_P (val) && !must_copy)
4151 tree val_expr = MEM_EXPR (val);
4152 if (val_expr)
4153 mark_addressable (val_expr);
4154 slot = val;
4156 else
4158 slot = assign_temp (lang_hooks.types.type_for_mode (mode, 0),
4159 1, 1);
4160 emit_move_insn (slot, val);
4163 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
4164 gen_rtx_USE (VOIDmode, slot),
4165 call_fusage);
4166 if (must_copy)
4167 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
4168 gen_rtx_CLOBBER (VOIDmode,
4169 slot),
4170 call_fusage);
4172 mode = Pmode;
4173 val = force_operand (XEXP (slot, 0), NULL_RTX);
4176 mode = promote_function_mode (NULL_TREE, mode, &unsigned_p, NULL_TREE, 0);
4177 argvec[count].mode = mode;
4178 argvec[count].value = convert_modes (mode, GET_MODE (val), val, unsigned_p);
4179 argvec[count].reg = targetm.calls.function_arg (args_so_far, mode,
4180 NULL_TREE, true);
4182 argvec[count].partial
4183 = targetm.calls.arg_partial_bytes (args_so_far, mode, NULL_TREE, 1);
4185 if (argvec[count].reg == 0
4186 || argvec[count].partial != 0
4187 || reg_parm_stack_space > 0)
4189 locate_and_pad_parm (mode, NULL_TREE,
4190 #ifdef STACK_PARMS_IN_REG_PARM_AREA
4192 #else
4193 argvec[count].reg != 0,
4194 #endif
4195 reg_parm_stack_space, argvec[count].partial,
4196 NULL_TREE, &args_size, &argvec[count].locate);
4197 args_size.constant += argvec[count].locate.size.constant;
4198 gcc_assert (!argvec[count].locate.size.var);
4200 #ifdef BLOCK_REG_PADDING
4201 else
4202 /* The argument is passed entirely in registers. See at which
4203 end it should be padded. */
4204 argvec[count].locate.where_pad =
4205 BLOCK_REG_PADDING (mode, NULL_TREE,
4206 GET_MODE_SIZE (mode) <= UNITS_PER_WORD);
4207 #endif
4209 targetm.calls.function_arg_advance (args_so_far, mode, (tree) 0, true);
4212 /* If this machine requires an external definition for library
4213 functions, write one out. */
4214 assemble_external_libcall (fun);
4216 original_args_size = args_size;
4217 args_size.constant = (((args_size.constant
4218 + stack_pointer_delta
4219 + STACK_BYTES - 1)
4220 / STACK_BYTES
4221 * STACK_BYTES)
4222 - stack_pointer_delta);
4224 args_size.constant = MAX (args_size.constant,
4225 reg_parm_stack_space);
4227 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
4228 args_size.constant -= reg_parm_stack_space;
4230 if (args_size.constant > crtl->outgoing_args_size)
4231 crtl->outgoing_args_size = args_size.constant;
4233 if (flag_stack_usage_info && !ACCUMULATE_OUTGOING_ARGS)
4235 int pushed = args_size.constant + pending_stack_adjust;
4236 if (pushed > current_function_pushed_stack_size)
4237 current_function_pushed_stack_size = pushed;
4240 if (ACCUMULATE_OUTGOING_ARGS)
4242 /* Since the stack pointer will never be pushed, it is possible for
4243 the evaluation of a parm to clobber something we have already
4244 written to the stack. Since most function calls on RISC machines
4245 do not use the stack, this is uncommon, but must work correctly.
4247 Therefore, we save any area of the stack that was already written
4248 and that we are using. Here we set up to do this by making a new
4249 stack usage map from the old one.
4251 Another approach might be to try to reorder the argument
4252 evaluations to avoid this conflicting stack usage. */
4254 needed = args_size.constant;
4256 /* Since we will be writing into the entire argument area, the
4257 map must be allocated for its entire size, not just the part that
4258 is the responsibility of the caller. */
4259 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
4260 needed += reg_parm_stack_space;
4262 if (ARGS_GROW_DOWNWARD)
4263 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
4264 needed + 1);
4265 else
4266 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use, needed);
4268 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
4269 stack_usage_map = stack_usage_map_buf;
4271 if (initial_highest_arg_in_use)
4272 memcpy (stack_usage_map, initial_stack_usage_map,
4273 initial_highest_arg_in_use);
4275 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
4276 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
4277 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
4278 needed = 0;
4280 /* We must be careful to use virtual regs before they're instantiated,
4281 and real regs afterwards. Loop optimization, for example, can create
4282 new libcalls after we've instantiated the virtual regs, and if we
4283 use virtuals anyway, they won't match the rtl patterns. */
4285 if (virtuals_instantiated)
4286 argblock = plus_constant (Pmode, stack_pointer_rtx,
4287 STACK_POINTER_OFFSET);
4288 else
4289 argblock = virtual_outgoing_args_rtx;
4291 else
4293 if (!PUSH_ARGS)
4294 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
4297 /* We push args individually in reverse order, perform stack alignment
4298 before the first push (the last arg). */
4299 if (argblock == 0)
4300 anti_adjust_stack (GEN_INT (args_size.constant
4301 - original_args_size.constant));
4303 argnum = nargs - 1;
4305 #ifdef REG_PARM_STACK_SPACE
4306 if (ACCUMULATE_OUTGOING_ARGS)
4308 /* The argument list is the property of the called routine and it
4309 may clobber it. If the fixed area has been used for previous
4310 parameters, we must save and restore it. */
4311 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
4312 &low_to_save, &high_to_save);
4314 #endif
4316 /* When expanding a normal call, args are stored in push order,
4317 which is the reverse of what we have here. */
4318 bool any_regs = false;
4319 for (int i = nargs; i-- > 0; )
4320 if (argvec[i].reg != NULL_RTX)
4322 targetm.calls.call_args (argvec[i].reg, NULL_TREE);
4323 any_regs = true;
4325 if (!any_regs)
4326 targetm.calls.call_args (pc_rtx, NULL_TREE);
4328 /* Push the args that need to be pushed. */
4330 have_push_fusage = false;
4332 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4333 are to be pushed. */
4334 for (count = 0; count < nargs; count++, argnum--)
4336 machine_mode mode = argvec[argnum].mode;
4337 rtx val = argvec[argnum].value;
4338 rtx reg = argvec[argnum].reg;
4339 int partial = argvec[argnum].partial;
4340 unsigned int parm_align = argvec[argnum].locate.boundary;
4341 int lower_bound = 0, upper_bound = 0, i;
4343 if (! (reg != 0 && partial == 0))
4345 rtx use;
4347 if (ACCUMULATE_OUTGOING_ARGS)
4349 /* If this is being stored into a pre-allocated, fixed-size,
4350 stack area, save any previous data at that location. */
4352 if (ARGS_GROW_DOWNWARD)
4354 /* stack_slot is negative, but we want to index stack_usage_map
4355 with positive values. */
4356 upper_bound = -argvec[argnum].locate.slot_offset.constant + 1;
4357 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
4359 else
4361 lower_bound = argvec[argnum].locate.slot_offset.constant;
4362 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
4365 i = lower_bound;
4366 /* Don't worry about things in the fixed argument area;
4367 it has already been saved. */
4368 if (i < reg_parm_stack_space)
4369 i = reg_parm_stack_space;
4370 while (i < upper_bound && stack_usage_map[i] == 0)
4371 i++;
4373 if (i < upper_bound)
4375 /* We need to make a save area. */
4376 unsigned int size
4377 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
4378 machine_mode save_mode
4379 = mode_for_size (size, MODE_INT, 1);
4380 rtx adr
4381 = plus_constant (Pmode, argblock,
4382 argvec[argnum].locate.offset.constant);
4383 rtx stack_area
4384 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
4386 if (save_mode == BLKmode)
4388 argvec[argnum].save_area
4389 = assign_stack_temp (BLKmode,
4390 argvec[argnum].locate.size.constant
4393 emit_block_move (validize_mem
4394 (copy_rtx (argvec[argnum].save_area)),
4395 stack_area,
4396 GEN_INT (argvec[argnum].locate.size.constant),
4397 BLOCK_OP_CALL_PARM);
4399 else
4401 argvec[argnum].save_area = gen_reg_rtx (save_mode);
4403 emit_move_insn (argvec[argnum].save_area, stack_area);
4408 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, parm_align,
4409 partial, reg, 0, argblock,
4410 GEN_INT (argvec[argnum].locate.offset.constant),
4411 reg_parm_stack_space,
4412 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad), false);
4414 /* Now mark the segment we just used. */
4415 if (ACCUMULATE_OUTGOING_ARGS)
4416 for (i = lower_bound; i < upper_bound; i++)
4417 stack_usage_map[i] = 1;
4419 NO_DEFER_POP;
4421 /* Indicate argument access so that alias.c knows that these
4422 values are live. */
4423 if (argblock)
4424 use = plus_constant (Pmode, argblock,
4425 argvec[argnum].locate.offset.constant);
4426 else if (have_push_fusage)
4427 continue;
4428 else
4430 /* When arguments are pushed, trying to tell alias.c where
4431 exactly this argument is won't work, because the
4432 auto-increment causes confusion. So we merely indicate
4433 that we access something with a known mode somewhere on
4434 the stack. */
4435 use = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
4436 gen_rtx_SCRATCH (Pmode));
4437 have_push_fusage = true;
4439 use = gen_rtx_MEM (argvec[argnum].mode, use);
4440 use = gen_rtx_USE (VOIDmode, use);
4441 call_fusage = gen_rtx_EXPR_LIST (VOIDmode, use, call_fusage);
4445 argnum = nargs - 1;
4447 fun = prepare_call_address (NULL, fun, NULL, &call_fusage, 0, 0);
4449 /* Now load any reg parms into their regs. */
4451 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4452 are to be pushed. */
4453 for (count = 0; count < nargs; count++, argnum--)
4455 machine_mode mode = argvec[argnum].mode;
4456 rtx val = argvec[argnum].value;
4457 rtx reg = argvec[argnum].reg;
4458 int partial = argvec[argnum].partial;
4459 #ifdef BLOCK_REG_PADDING
4460 int size = 0;
4461 #endif
4463 /* Handle calls that pass values in multiple non-contiguous
4464 locations. The PA64 has examples of this for library calls. */
4465 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4466 emit_group_load (reg, val, NULL_TREE, GET_MODE_SIZE (mode));
4467 else if (reg != 0 && partial == 0)
4469 emit_move_insn (reg, val);
4470 #ifdef BLOCK_REG_PADDING
4471 size = GET_MODE_SIZE (argvec[argnum].mode);
4473 /* Copied from load_register_parameters. */
4475 /* Handle case where we have a value that needs shifting
4476 up to the msb. eg. a QImode value and we're padding
4477 upward on a BYTES_BIG_ENDIAN machine. */
4478 if (size < UNITS_PER_WORD
4479 && (argvec[argnum].locate.where_pad
4480 == (BYTES_BIG_ENDIAN ? upward : downward)))
4482 rtx x;
4483 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
4485 /* Assigning REG here rather than a temp makes CALL_FUSAGE
4486 report the whole reg as used. Strictly speaking, the
4487 call only uses SIZE bytes at the msb end, but it doesn't
4488 seem worth generating rtl to say that. */
4489 reg = gen_rtx_REG (word_mode, REGNO (reg));
4490 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
4491 if (x != reg)
4492 emit_move_insn (reg, x);
4494 #endif
4497 NO_DEFER_POP;
4500 /* Any regs containing parms remain in use through the call. */
4501 for (count = 0; count < nargs; count++)
4503 rtx reg = argvec[count].reg;
4504 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4505 use_group_regs (&call_fusage, reg);
4506 else if (reg != 0)
4508 int partial = argvec[count].partial;
4509 if (partial)
4511 int nregs;
4512 gcc_assert (partial % UNITS_PER_WORD == 0);
4513 nregs = partial / UNITS_PER_WORD;
4514 use_regs (&call_fusage, REGNO (reg), nregs);
4516 else
4517 use_reg (&call_fusage, reg);
4521 /* Pass the function the address in which to return a structure value. */
4522 if (mem_value != 0 && struct_value != 0 && ! pcc_struct_value)
4524 emit_move_insn (struct_value,
4525 force_reg (Pmode,
4526 force_operand (XEXP (mem_value, 0),
4527 NULL_RTX)));
4528 if (REG_P (struct_value))
4529 use_reg (&call_fusage, struct_value);
4532 /* Don't allow popping to be deferred, since then
4533 cse'ing of library calls could delete a call and leave the pop. */
4534 NO_DEFER_POP;
4535 valreg = (mem_value == 0 && outmode != VOIDmode
4536 ? hard_libcall_value (outmode, orgfun) : NULL_RTX);
4538 /* Stack must be properly aligned now. */
4539 gcc_assert (!(stack_pointer_delta
4540 & (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1)));
4542 before_call = get_last_insn ();
4544 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
4545 will set inhibit_defer_pop to that value. */
4546 /* The return type is needed to decide how many bytes the function pops.
4547 Signedness plays no role in that, so for simplicity, we pretend it's
4548 always signed. We also assume that the list of arguments passed has
4549 no impact, so we pretend it is unknown. */
4551 emit_call_1 (fun, NULL,
4552 get_identifier (XSTR (orgfun, 0)),
4553 build_function_type (tfom, NULL_TREE),
4554 original_args_size.constant, args_size.constant,
4555 struct_value_size,
4556 targetm.calls.function_arg (args_so_far,
4557 VOIDmode, void_type_node, true),
4558 valreg,
4559 old_inhibit_defer_pop + 1, call_fusage, flags, args_so_far);
4561 if (flag_ipa_ra)
4563 rtx datum = orgfun;
4564 gcc_assert (GET_CODE (datum) == SYMBOL_REF);
4565 rtx_call_insn *last = last_call_insn ();
4566 add_reg_note (last, REG_CALL_DECL, datum);
4569 /* Right-shift returned value if necessary. */
4570 if (!pcc_struct_value
4571 && TYPE_MODE (tfom) != BLKmode
4572 && targetm.calls.return_in_msb (tfom))
4574 shift_return_value (TYPE_MODE (tfom), false, valreg);
4575 valreg = gen_rtx_REG (TYPE_MODE (tfom), REGNO (valreg));
4578 targetm.calls.end_call_args ();
4580 /* For calls to `setjmp', etc., inform function.c:setjmp_warnings
4581 that it should complain if nonvolatile values are live. For
4582 functions that cannot return, inform flow that control does not
4583 fall through. */
4584 if (flags & ECF_NORETURN)
4586 /* The barrier note must be emitted
4587 immediately after the CALL_INSN. Some ports emit more than
4588 just a CALL_INSN above, so we must search for it here. */
4589 rtx_insn *last = get_last_insn ();
4590 while (!CALL_P (last))
4592 last = PREV_INSN (last);
4593 /* There was no CALL_INSN? */
4594 gcc_assert (last != before_call);
4597 emit_barrier_after (last);
4600 /* Consider that "regular" libcalls, i.e. all of them except for LCT_THROW
4601 and LCT_RETURNS_TWICE, cannot perform non-local gotos. */
4602 if (flags & ECF_NOTHROW)
4604 rtx_insn *last = get_last_insn ();
4605 while (!CALL_P (last))
4607 last = PREV_INSN (last);
4608 /* There was no CALL_INSN? */
4609 gcc_assert (last != before_call);
4612 make_reg_eh_region_note_nothrow_nononlocal (last);
4615 /* Now restore inhibit_defer_pop to its actual original value. */
4616 OK_DEFER_POP;
4618 pop_temp_slots ();
4620 /* Copy the value to the right place. */
4621 if (outmode != VOIDmode && retval)
4623 if (mem_value)
4625 if (value == 0)
4626 value = mem_value;
4627 if (value != mem_value)
4628 emit_move_insn (value, mem_value);
4630 else if (GET_CODE (valreg) == PARALLEL)
4632 if (value == 0)
4633 value = gen_reg_rtx (outmode);
4634 emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode));
4636 else
4638 /* Convert to the proper mode if a promotion has been active. */
4639 if (GET_MODE (valreg) != outmode)
4641 int unsignedp = TYPE_UNSIGNED (tfom);
4643 gcc_assert (promote_function_mode (tfom, outmode, &unsignedp,
4644 fndecl ? TREE_TYPE (fndecl) : fntype, 1)
4645 == GET_MODE (valreg));
4646 valreg = convert_modes (outmode, GET_MODE (valreg), valreg, 0);
4649 if (value != 0)
4650 emit_move_insn (value, valreg);
4651 else
4652 value = valreg;
4656 if (ACCUMULATE_OUTGOING_ARGS)
4658 #ifdef REG_PARM_STACK_SPACE
4659 if (save_area)
4660 restore_fixed_argument_area (save_area, argblock,
4661 high_to_save, low_to_save);
4662 #endif
4664 /* If we saved any argument areas, restore them. */
4665 for (count = 0; count < nargs; count++)
4666 if (argvec[count].save_area)
4668 machine_mode save_mode = GET_MODE (argvec[count].save_area);
4669 rtx adr = plus_constant (Pmode, argblock,
4670 argvec[count].locate.offset.constant);
4671 rtx stack_area = gen_rtx_MEM (save_mode,
4672 memory_address (save_mode, adr));
4674 if (save_mode == BLKmode)
4675 emit_block_move (stack_area,
4676 validize_mem
4677 (copy_rtx (argvec[count].save_area)),
4678 GEN_INT (argvec[count].locate.size.constant),
4679 BLOCK_OP_CALL_PARM);
4680 else
4681 emit_move_insn (stack_area, argvec[count].save_area);
4684 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4685 stack_usage_map = initial_stack_usage_map;
4688 free (stack_usage_map_buf);
4690 return value;
4694 /* Output a library call to function FUN (a SYMBOL_REF rtx)
4695 (emitting the queue unless NO_QUEUE is nonzero),
4696 for a value of mode OUTMODE,
4697 with NARGS different arguments, passed as alternating rtx values
4698 and machine_modes to convert them to.
4700 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for
4701 `const' calls, LCT_PURE for `pure' calls, or other LCT_ value for
4702 other types of library calls. */
4704 void
4705 emit_library_call (rtx orgfun, enum libcall_type fn_type,
4706 machine_mode outmode, int nargs, ...)
4708 va_list p;
4710 va_start (p, nargs);
4711 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
4712 va_end (p);
4715 /* Like emit_library_call except that an extra argument, VALUE,
4716 comes second and says where to store the result.
4717 (If VALUE is zero, this function chooses a convenient way
4718 to return the value.
4720 This function returns an rtx for where the value is to be found.
4721 If VALUE is nonzero, VALUE is returned. */
4724 emit_library_call_value (rtx orgfun, rtx value,
4725 enum libcall_type fn_type,
4726 machine_mode outmode, int nargs, ...)
4728 rtx result;
4729 va_list p;
4731 va_start (p, nargs);
4732 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode,
4733 nargs, p);
4734 va_end (p);
4736 return result;
4740 /* Store pointer bounds argument ARG into Bounds Table entry
4741 associated with PARM. */
4742 static void
4743 store_bounds (struct arg_data *arg, struct arg_data *parm)
4745 rtx slot = NULL, ptr = NULL, addr = NULL;
4747 /* We may pass bounds not associated with any pointer. */
4748 if (!parm)
4750 gcc_assert (arg->special_slot);
4751 slot = arg->special_slot;
4752 ptr = const0_rtx;
4754 /* Find pointer associated with bounds and where it is
4755 passed. */
4756 else
4758 if (!parm->reg)
4760 gcc_assert (!arg->special_slot);
4762 addr = adjust_address (parm->stack, Pmode, arg->pointer_offset);
4764 else if (REG_P (parm->reg))
4766 gcc_assert (arg->special_slot);
4767 slot = arg->special_slot;
4769 if (MEM_P (parm->value))
4770 addr = adjust_address (parm->value, Pmode, arg->pointer_offset);
4771 else if (REG_P (parm->value))
4772 ptr = gen_rtx_SUBREG (Pmode, parm->value, arg->pointer_offset);
4773 else
4775 gcc_assert (!arg->pointer_offset);
4776 ptr = parm->value;
4779 else
4781 gcc_assert (GET_CODE (parm->reg) == PARALLEL);
4783 gcc_assert (arg->special_slot);
4784 slot = arg->special_slot;
4786 if (parm->parallel_value)
4787 ptr = chkp_get_value_with_offs (parm->parallel_value,
4788 GEN_INT (arg->pointer_offset));
4789 else
4790 gcc_unreachable ();
4794 /* Expand bounds. */
4795 if (!arg->value)
4796 arg->value = expand_normal (arg->tree_value);
4798 targetm.calls.store_bounds_for_arg (ptr, addr, arg->value, slot);
4801 /* Store a single argument for a function call
4802 into the register or memory area where it must be passed.
4803 *ARG describes the argument value and where to pass it.
4805 ARGBLOCK is the address of the stack-block for all the arguments,
4806 or 0 on a machine where arguments are pushed individually.
4808 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
4809 so must be careful about how the stack is used.
4811 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
4812 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
4813 that we need not worry about saving and restoring the stack.
4815 FNDECL is the declaration of the function we are calling.
4817 Return nonzero if this arg should cause sibcall failure,
4818 zero otherwise. */
4820 static int
4821 store_one_arg (struct arg_data *arg, rtx argblock, int flags,
4822 int variable_size ATTRIBUTE_UNUSED, int reg_parm_stack_space)
4824 tree pval = arg->tree_value;
4825 rtx reg = 0;
4826 int partial = 0;
4827 int used = 0;
4828 int i, lower_bound = 0, upper_bound = 0;
4829 int sibcall_failure = 0;
4831 if (TREE_CODE (pval) == ERROR_MARK)
4832 return 1;
4834 /* Push a new temporary level for any temporaries we make for
4835 this argument. */
4836 push_temp_slots ();
4838 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
4840 /* If this is being stored into a pre-allocated, fixed-size, stack area,
4841 save any previous data at that location. */
4842 if (argblock && ! variable_size && arg->stack)
4844 if (ARGS_GROW_DOWNWARD)
4846 /* stack_slot is negative, but we want to index stack_usage_map
4847 with positive values. */
4848 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4849 upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
4850 else
4851 upper_bound = 0;
4853 lower_bound = upper_bound - arg->locate.size.constant;
4855 else
4857 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4858 lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
4859 else
4860 lower_bound = 0;
4862 upper_bound = lower_bound + arg->locate.size.constant;
4865 i = lower_bound;
4866 /* Don't worry about things in the fixed argument area;
4867 it has already been saved. */
4868 if (i < reg_parm_stack_space)
4869 i = reg_parm_stack_space;
4870 while (i < upper_bound && stack_usage_map[i] == 0)
4871 i++;
4873 if (i < upper_bound)
4875 /* We need to make a save area. */
4876 unsigned int size = arg->locate.size.constant * BITS_PER_UNIT;
4877 machine_mode save_mode = mode_for_size (size, MODE_INT, 1);
4878 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
4879 rtx stack_area = gen_rtx_MEM (save_mode, adr);
4881 if (save_mode == BLKmode)
4883 arg->save_area
4884 = assign_temp (TREE_TYPE (arg->tree_value), 1, 1);
4885 preserve_temp_slots (arg->save_area);
4886 emit_block_move (validize_mem (copy_rtx (arg->save_area)),
4887 stack_area,
4888 GEN_INT (arg->locate.size.constant),
4889 BLOCK_OP_CALL_PARM);
4891 else
4893 arg->save_area = gen_reg_rtx (save_mode);
4894 emit_move_insn (arg->save_area, stack_area);
4900 /* If this isn't going to be placed on both the stack and in registers,
4901 set up the register and number of words. */
4902 if (! arg->pass_on_stack)
4904 if (flags & ECF_SIBCALL)
4905 reg = arg->tail_call_reg;
4906 else
4907 reg = arg->reg;
4908 partial = arg->partial;
4911 /* Being passed entirely in a register. We shouldn't be called in
4912 this case. */
4913 gcc_assert (reg == 0 || partial != 0);
4915 /* If this arg needs special alignment, don't load the registers
4916 here. */
4917 if (arg->n_aligned_regs != 0)
4918 reg = 0;
4920 /* If this is being passed partially in a register, we can't evaluate
4921 it directly into its stack slot. Otherwise, we can. */
4922 if (arg->value == 0)
4924 /* stack_arg_under_construction is nonzero if a function argument is
4925 being evaluated directly into the outgoing argument list and
4926 expand_call must take special action to preserve the argument list
4927 if it is called recursively.
4929 For scalar function arguments stack_usage_map is sufficient to
4930 determine which stack slots must be saved and restored. Scalar
4931 arguments in general have pass_on_stack == 0.
4933 If this argument is initialized by a function which takes the
4934 address of the argument (a C++ constructor or a C function
4935 returning a BLKmode structure), then stack_usage_map is
4936 insufficient and expand_call must push the stack around the
4937 function call. Such arguments have pass_on_stack == 1.
4939 Note that it is always safe to set stack_arg_under_construction,
4940 but this generates suboptimal code if set when not needed. */
4942 if (arg->pass_on_stack)
4943 stack_arg_under_construction++;
4945 arg->value = expand_expr (pval,
4946 (partial
4947 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
4948 ? NULL_RTX : arg->stack,
4949 VOIDmode, EXPAND_STACK_PARM);
4951 /* If we are promoting object (or for any other reason) the mode
4952 doesn't agree, convert the mode. */
4954 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
4955 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
4956 arg->value, arg->unsignedp);
4958 if (arg->pass_on_stack)
4959 stack_arg_under_construction--;
4962 /* Check for overlap with already clobbered argument area. */
4963 if ((flags & ECF_SIBCALL)
4964 && MEM_P (arg->value)
4965 && mem_overlaps_already_clobbered_arg_p (XEXP (arg->value, 0),
4966 arg->locate.size.constant))
4967 sibcall_failure = 1;
4969 /* Don't allow anything left on stack from computation
4970 of argument to alloca. */
4971 if (flags & ECF_MAY_BE_ALLOCA)
4972 do_pending_stack_adjust ();
4974 if (arg->value == arg->stack)
4975 /* If the value is already in the stack slot, we are done. */
4977 else if (arg->mode != BLKmode)
4979 int size;
4980 unsigned int parm_align;
4982 /* Argument is a scalar, not entirely passed in registers.
4983 (If part is passed in registers, arg->partial says how much
4984 and emit_push_insn will take care of putting it there.)
4986 Push it, and if its size is less than the
4987 amount of space allocated to it,
4988 also bump stack pointer by the additional space.
4989 Note that in C the default argument promotions
4990 will prevent such mismatches. */
4992 size = GET_MODE_SIZE (arg->mode);
4993 /* Compute how much space the push instruction will push.
4994 On many machines, pushing a byte will advance the stack
4995 pointer by a halfword. */
4996 #ifdef PUSH_ROUNDING
4997 size = PUSH_ROUNDING (size);
4998 #endif
4999 used = size;
5001 /* Compute how much space the argument should get:
5002 round up to a multiple of the alignment for arguments. */
5003 if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
5004 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
5005 / (PARM_BOUNDARY / BITS_PER_UNIT))
5006 * (PARM_BOUNDARY / BITS_PER_UNIT));
5008 /* Compute the alignment of the pushed argument. */
5009 parm_align = arg->locate.boundary;
5010 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
5012 int pad = used - size;
5013 if (pad)
5015 unsigned int pad_align = (pad & -pad) * BITS_PER_UNIT;
5016 parm_align = MIN (parm_align, pad_align);
5020 /* This isn't already where we want it on the stack, so put it there.
5021 This can either be done with push or copy insns. */
5022 if (!emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX,
5023 parm_align, partial, reg, used - size, argblock,
5024 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
5025 ARGS_SIZE_RTX (arg->locate.alignment_pad), true))
5026 sibcall_failure = 1;
5028 /* Unless this is a partially-in-register argument, the argument is now
5029 in the stack. */
5030 if (partial == 0)
5031 arg->value = arg->stack;
5033 else
5035 /* BLKmode, at least partly to be pushed. */
5037 unsigned int parm_align;
5038 int excess;
5039 rtx size_rtx;
5041 /* Pushing a nonscalar.
5042 If part is passed in registers, PARTIAL says how much
5043 and emit_push_insn will take care of putting it there. */
5045 /* Round its size up to a multiple
5046 of the allocation unit for arguments. */
5048 if (arg->locate.size.var != 0)
5050 excess = 0;
5051 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
5053 else
5055 /* PUSH_ROUNDING has no effect on us, because emit_push_insn
5056 for BLKmode is careful to avoid it. */
5057 excess = (arg->locate.size.constant
5058 - int_size_in_bytes (TREE_TYPE (pval))
5059 + partial);
5060 size_rtx = expand_expr (size_in_bytes (TREE_TYPE (pval)),
5061 NULL_RTX, TYPE_MODE (sizetype),
5062 EXPAND_NORMAL);
5065 parm_align = arg->locate.boundary;
5067 /* When an argument is padded down, the block is aligned to
5068 PARM_BOUNDARY, but the actual argument isn't. */
5069 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
5071 if (arg->locate.size.var)
5072 parm_align = BITS_PER_UNIT;
5073 else if (excess)
5075 unsigned int excess_align = (excess & -excess) * BITS_PER_UNIT;
5076 parm_align = MIN (parm_align, excess_align);
5080 if ((flags & ECF_SIBCALL) && MEM_P (arg->value))
5082 /* emit_push_insn might not work properly if arg->value and
5083 argblock + arg->locate.offset areas overlap. */
5084 rtx x = arg->value;
5085 int i = 0;
5087 if (XEXP (x, 0) == crtl->args.internal_arg_pointer
5088 || (GET_CODE (XEXP (x, 0)) == PLUS
5089 && XEXP (XEXP (x, 0), 0) ==
5090 crtl->args.internal_arg_pointer
5091 && CONST_INT_P (XEXP (XEXP (x, 0), 1))))
5093 if (XEXP (x, 0) != crtl->args.internal_arg_pointer)
5094 i = INTVAL (XEXP (XEXP (x, 0), 1));
5096 /* arg.locate doesn't contain the pretend_args_size offset,
5097 it's part of argblock. Ensure we don't count it in I. */
5098 if (STACK_GROWS_DOWNWARD)
5099 i -= crtl->args.pretend_args_size;
5100 else
5101 i += crtl->args.pretend_args_size;
5103 /* expand_call should ensure this. */
5104 gcc_assert (!arg->locate.offset.var
5105 && arg->locate.size.var == 0
5106 && CONST_INT_P (size_rtx));
5108 if (arg->locate.offset.constant > i)
5110 if (arg->locate.offset.constant < i + INTVAL (size_rtx))
5111 sibcall_failure = 1;
5113 else if (arg->locate.offset.constant < i)
5115 /* Use arg->locate.size.constant instead of size_rtx
5116 because we only care about the part of the argument
5117 on the stack. */
5118 if (i < (arg->locate.offset.constant
5119 + arg->locate.size.constant))
5120 sibcall_failure = 1;
5122 else
5124 /* Even though they appear to be at the same location,
5125 if part of the outgoing argument is in registers,
5126 they aren't really at the same location. Check for
5127 this by making sure that the incoming size is the
5128 same as the outgoing size. */
5129 if (arg->locate.size.constant != INTVAL (size_rtx))
5130 sibcall_failure = 1;
5135 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
5136 parm_align, partial, reg, excess, argblock,
5137 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
5138 ARGS_SIZE_RTX (arg->locate.alignment_pad), false);
5140 /* Unless this is a partially-in-register argument, the argument is now
5141 in the stack.
5143 ??? Unlike the case above, in which we want the actual
5144 address of the data, so that we can load it directly into a
5145 register, here we want the address of the stack slot, so that
5146 it's properly aligned for word-by-word copying or something
5147 like that. It's not clear that this is always correct. */
5148 if (partial == 0)
5149 arg->value = arg->stack_slot;
5152 if (arg->reg && GET_CODE (arg->reg) == PARALLEL)
5154 tree type = TREE_TYPE (arg->tree_value);
5155 arg->parallel_value
5156 = emit_group_load_into_temps (arg->reg, arg->value, type,
5157 int_size_in_bytes (type));
5160 /* Mark all slots this store used. */
5161 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
5162 && argblock && ! variable_size && arg->stack)
5163 for (i = lower_bound; i < upper_bound; i++)
5164 stack_usage_map[i] = 1;
5166 /* Once we have pushed something, pops can't safely
5167 be deferred during the rest of the arguments. */
5168 NO_DEFER_POP;
5170 /* Free any temporary slots made in processing this argument. */
5171 pop_temp_slots ();
5173 return sibcall_failure;
5176 /* Nonzero if we do not know how to pass TYPE solely in registers. */
5178 bool
5179 must_pass_in_stack_var_size (machine_mode mode ATTRIBUTE_UNUSED,
5180 const_tree type)
5182 if (!type)
5183 return false;
5185 /* If the type has variable size... */
5186 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5187 return true;
5189 /* If the type is marked as addressable (it is required
5190 to be constructed into the stack)... */
5191 if (TREE_ADDRESSABLE (type))
5192 return true;
5194 return false;
5197 /* Another version of the TARGET_MUST_PASS_IN_STACK hook. This one
5198 takes trailing padding of a structure into account. */
5199 /* ??? Should be able to merge these two by examining BLOCK_REG_PADDING. */
5201 bool
5202 must_pass_in_stack_var_size_or_pad (machine_mode mode, const_tree type)
5204 if (!type)
5205 return false;
5207 /* If the type has variable size... */
5208 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5209 return true;
5211 /* If the type is marked as addressable (it is required
5212 to be constructed into the stack)... */
5213 if (TREE_ADDRESSABLE (type))
5214 return true;
5216 /* If the padding and mode of the type is such that a copy into
5217 a register would put it into the wrong part of the register. */
5218 if (mode == BLKmode
5219 && int_size_in_bytes (type) % (PARM_BOUNDARY / BITS_PER_UNIT)
5220 && (FUNCTION_ARG_PADDING (mode, type)
5221 == (BYTES_BIG_ENDIAN ? upward : downward)))
5222 return true;
5224 return false;