2015-06-11 Paul Thomas <pault@gcc.gnu.org>
[official-gcc.git] / gcc / calls.c
blob3da5212e512c2fcd2a05c01e3079cbc101834c47
1 /* Convert function calls to rtl insns, for GNU C compiler.
2 Copyright (C) 1989-2015 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
9 version.
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 for more details.
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "rtl.h"
25 #include "input.h"
26 #include "alias.h"
27 #include "symtab.h"
28 #include "tree.h"
29 #include "fold-const.h"
30 #include "stor-layout.h"
31 #include "varasm.h"
32 #include "stringpool.h"
33 #include "attribs.h"
34 #include "predict.h"
35 #include "hard-reg-set.h"
36 #include "function.h"
37 #include "basic-block.h"
38 #include "tree-ssa-alias.h"
39 #include "internal-fn.h"
40 #include "gimple-expr.h"
41 #include "is-a.h"
42 #include "gimple.h"
43 #include "flags.h"
44 #include "insn-config.h"
45 #include "expmed.h"
46 #include "dojump.h"
47 #include "explow.h"
48 #include "calls.h"
49 #include "emit-rtl.h"
50 #include "stmt.h"
51 #include "expr.h"
52 #include "insn-codes.h"
53 #include "optabs.h"
54 #include "libfuncs.h"
55 #include "regs.h"
56 #include "diagnostic-core.h"
57 #include "output.h"
58 #include "tm_p.h"
59 #include "timevar.h"
60 #include "sbitmap.h"
61 #include "bitmap.h"
62 #include "langhooks.h"
63 #include "target.h"
64 #include "plugin-api.h"
65 #include "ipa-ref.h"
66 #include "cgraph.h"
67 #include "except.h"
68 #include "dbgcnt.h"
69 #include "rtl-iter.h"
70 #include "tree-chkp.h"
71 #include "rtl-chkp.h"
74 /* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
75 #define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
77 /* Data structure and subroutines used within expand_call. */
79 struct arg_data
81 /* Tree node for this argument. */
82 tree tree_value;
83 /* Mode for value; TYPE_MODE unless promoted. */
84 machine_mode mode;
85 /* Current RTL value for argument, or 0 if it isn't precomputed. */
86 rtx value;
87 /* Initially-compute RTL value for argument; only for const functions. */
88 rtx initial_value;
89 /* Register to pass this argument in, 0 if passed on stack, or an
90 PARALLEL if the arg is to be copied into multiple non-contiguous
91 registers. */
92 rtx reg;
93 /* Register to pass this argument in when generating tail call sequence.
94 This is not the same register as for normal calls on machines with
95 register windows. */
96 rtx tail_call_reg;
97 /* If REG is a PARALLEL, this is a copy of VALUE pulled into the correct
98 form for emit_group_move. */
99 rtx parallel_value;
100 /* If value is passed in neither reg nor stack, this field holds a number
101 of a special slot to be used. */
102 rtx special_slot;
103 /* For pointer bounds hold an index of parm bounds are bound to. -1 if
104 there is no such pointer. */
105 int pointer_arg;
106 /* If pointer_arg refers a structure, then pointer_offset holds an offset
107 of a pointer in this structure. */
108 int pointer_offset;
109 /* If REG was promoted from the actual mode of the argument expression,
110 indicates whether the promotion is sign- or zero-extended. */
111 int unsignedp;
112 /* Number of bytes to put in registers. 0 means put the whole arg
113 in registers. Also 0 if not passed in registers. */
114 int partial;
115 /* Nonzero if argument must be passed on stack.
116 Note that some arguments may be passed on the stack
117 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
118 pass_on_stack identifies arguments that *cannot* go in registers. */
119 int pass_on_stack;
120 /* Some fields packaged up for locate_and_pad_parm. */
121 struct locate_and_pad_arg_data locate;
122 /* Location on the stack at which parameter should be stored. The store
123 has already been done if STACK == VALUE. */
124 rtx stack;
125 /* Location on the stack of the start of this argument slot. This can
126 differ from STACK if this arg pads downward. This location is known
127 to be aligned to TARGET_FUNCTION_ARG_BOUNDARY. */
128 rtx stack_slot;
129 /* Place that this stack area has been saved, if needed. */
130 rtx save_area;
131 /* If an argument's alignment does not permit direct copying into registers,
132 copy in smaller-sized pieces into pseudos. These are stored in a
133 block pointed to by this field. The next field says how many
134 word-sized pseudos we made. */
135 rtx *aligned_regs;
136 int n_aligned_regs;
139 /* A vector of one char per byte of stack space. A byte if nonzero if
140 the corresponding stack location has been used.
141 This vector is used to prevent a function call within an argument from
142 clobbering any stack already set up. */
143 static char *stack_usage_map;
145 /* Size of STACK_USAGE_MAP. */
146 static int highest_outgoing_arg_in_use;
148 /* A bitmap of virtual-incoming stack space. Bit is set if the corresponding
149 stack location's tail call argument has been already stored into the stack.
150 This bitmap is used to prevent sibling call optimization if function tries
151 to use parent's incoming argument slots when they have been already
152 overwritten with tail call arguments. */
153 static sbitmap stored_args_map;
155 /* stack_arg_under_construction is nonzero when an argument may be
156 initialized with a constructor call (including a C function that
157 returns a BLKmode struct) and expand_call must take special action
158 to make sure the object being constructed does not overlap the
159 argument list for the constructor call. */
160 static int stack_arg_under_construction;
162 static void emit_call_1 (rtx, tree, tree, tree, HOST_WIDE_INT, HOST_WIDE_INT,
163 HOST_WIDE_INT, rtx, rtx, int, rtx, int,
164 cumulative_args_t);
165 static void precompute_register_parameters (int, struct arg_data *, int *);
166 static void store_bounds (struct arg_data *, struct arg_data *);
167 static int store_one_arg (struct arg_data *, rtx, int, int, int);
168 static void store_unaligned_arguments_into_pseudos (struct arg_data *, int);
169 static int finalize_must_preallocate (int, int, struct arg_data *,
170 struct args_size *);
171 static void precompute_arguments (int, struct arg_data *);
172 static int compute_argument_block_size (int, struct args_size *, tree, tree, int);
173 static void initialize_argument_information (int, struct arg_data *,
174 struct args_size *, int,
175 tree, tree,
176 tree, tree, cumulative_args_t, int,
177 rtx *, int *, int *, int *,
178 bool *, bool);
179 static void compute_argument_addresses (struct arg_data *, rtx, int);
180 static rtx rtx_for_function_call (tree, tree);
181 static void load_register_parameters (struct arg_data *, int, rtx *, int,
182 int, int *);
183 static rtx emit_library_call_value_1 (int, rtx, rtx, enum libcall_type,
184 machine_mode, int, va_list);
185 static int special_function_p (const_tree, int);
186 static int check_sibcall_argument_overlap_1 (rtx);
187 static int check_sibcall_argument_overlap (rtx_insn *, struct arg_data *, int);
189 static int combine_pending_stack_adjustment_and_call (int, struct args_size *,
190 unsigned int);
191 static tree split_complex_types (tree);
193 #ifdef REG_PARM_STACK_SPACE
194 static rtx save_fixed_argument_area (int, rtx, int *, int *);
195 static void restore_fixed_argument_area (rtx, rtx, int, int);
196 #endif
198 /* Force FUNEXP into a form suitable for the address of a CALL,
199 and return that as an rtx. Also load the static chain register
200 if FNDECL is a nested function.
202 CALL_FUSAGE points to a variable holding the prospective
203 CALL_INSN_FUNCTION_USAGE information. */
206 prepare_call_address (tree fndecl_or_type, rtx funexp, rtx static_chain_value,
207 rtx *call_fusage, int reg_parm_seen, int sibcallp)
209 /* Make a valid memory address and copy constants through pseudo-regs,
210 but not for a constant address if -fno-function-cse. */
211 if (GET_CODE (funexp) != SYMBOL_REF)
212 /* If we are using registers for parameters, force the
213 function address into a register now. */
214 funexp = ((reg_parm_seen
215 && targetm.small_register_classes_for_mode_p (FUNCTION_MODE))
216 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
217 : memory_address (FUNCTION_MODE, funexp));
218 else if (flag_pic
219 && fndecl_or_type
220 && TREE_CODE (fndecl_or_type) == FUNCTION_DECL
221 && (!flag_plt
222 || lookup_attribute ("noplt", DECL_ATTRIBUTES (fndecl_or_type)))
223 && !targetm.binds_local_p (fndecl_or_type))
225 /* This is done only for PIC code. There is no easy interface to force the
226 function address into GOT for non-PIC case. non-PIC case needs to be
227 handled specially by the backend. */
228 funexp = force_reg (Pmode, funexp);
230 else if (! sibcallp)
232 if (!NO_FUNCTION_CSE && optimize && ! flag_no_function_cse)
233 funexp = force_reg (Pmode, funexp);
236 if (static_chain_value != 0
237 && (TREE_CODE (fndecl_or_type) != FUNCTION_DECL
238 || DECL_STATIC_CHAIN (fndecl_or_type)))
240 rtx chain;
242 chain = targetm.calls.static_chain (fndecl_or_type, false);
243 static_chain_value = convert_memory_address (Pmode, static_chain_value);
245 emit_move_insn (chain, static_chain_value);
246 if (REG_P (chain))
247 use_reg (call_fusage, chain);
250 return funexp;
253 /* Generate instructions to call function FUNEXP,
254 and optionally pop the results.
255 The CALL_INSN is the first insn generated.
257 FNDECL is the declaration node of the function. This is given to the
258 hook TARGET_RETURN_POPS_ARGS to determine whether this function pops
259 its own args.
261 FUNTYPE is the data type of the function. This is given to the hook
262 TARGET_RETURN_POPS_ARGS to determine whether this function pops its
263 own args. We used to allow an identifier for library functions, but
264 that doesn't work when the return type is an aggregate type and the
265 calling convention says that the pointer to this aggregate is to be
266 popped by the callee.
268 STACK_SIZE is the number of bytes of arguments on the stack,
269 ROUNDED_STACK_SIZE is that number rounded up to
270 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
271 both to put into the call insn and to generate explicit popping
272 code if necessary.
274 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
275 It is zero if this call doesn't want a structure value.
277 NEXT_ARG_REG is the rtx that results from executing
278 targetm.calls.function_arg (&args_so_far, VOIDmode, void_type_node, true)
279 just after all the args have had their registers assigned.
280 This could be whatever you like, but normally it is the first
281 arg-register beyond those used for args in this call,
282 or 0 if all the arg-registers are used in this call.
283 It is passed on to `gen_call' so you can put this info in the call insn.
285 VALREG is a hard register in which a value is returned,
286 or 0 if the call does not return a value.
288 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
289 the args to this call were processed.
290 We restore `inhibit_defer_pop' to that value.
292 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
293 denote registers used by the called function. */
295 static void
296 emit_call_1 (rtx funexp, tree fntree ATTRIBUTE_UNUSED, tree fndecl ATTRIBUTE_UNUSED,
297 tree funtype ATTRIBUTE_UNUSED,
298 HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED,
299 HOST_WIDE_INT rounded_stack_size,
300 HOST_WIDE_INT struct_value_size ATTRIBUTE_UNUSED,
301 rtx next_arg_reg ATTRIBUTE_UNUSED, rtx valreg,
302 int old_inhibit_defer_pop, rtx call_fusage, int ecf_flags,
303 cumulative_args_t args_so_far ATTRIBUTE_UNUSED)
305 rtx rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
306 rtx call, funmem;
307 int already_popped = 0;
308 HOST_WIDE_INT n_popped
309 = targetm.calls.return_pops_args (fndecl, funtype, stack_size);
311 #ifdef CALL_POPS_ARGS
312 n_popped += CALL_POPS_ARGS (*get_cumulative_args (args_so_far));
313 #endif
315 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
316 and we don't want to load it into a register as an optimization,
317 because prepare_call_address already did it if it should be done. */
318 if (GET_CODE (funexp) != SYMBOL_REF)
319 funexp = memory_address (FUNCTION_MODE, funexp);
321 funmem = gen_rtx_MEM (FUNCTION_MODE, funexp);
322 if (fndecl && TREE_CODE (fndecl) == FUNCTION_DECL)
324 tree t = fndecl;
326 /* Although a built-in FUNCTION_DECL and its non-__builtin
327 counterpart compare equal and get a shared mem_attrs, they
328 produce different dump output in compare-debug compilations,
329 if an entry gets garbage collected in one compilation, then
330 adds a different (but equivalent) entry, while the other
331 doesn't run the garbage collector at the same spot and then
332 shares the mem_attr with the equivalent entry. */
333 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
335 tree t2 = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
336 if (t2)
337 t = t2;
340 set_mem_expr (funmem, t);
342 else if (fntree)
343 set_mem_expr (funmem, build_simple_mem_ref (CALL_EXPR_FN (fntree)));
345 #if defined (HAVE_sibcall_pop) && defined (HAVE_sibcall_value_pop)
346 if ((ecf_flags & ECF_SIBCALL)
347 && HAVE_sibcall_pop && HAVE_sibcall_value_pop
348 && (n_popped > 0 || stack_size == 0))
350 rtx n_pop = GEN_INT (n_popped);
351 rtx pat;
353 /* If this subroutine pops its own args, record that in the call insn
354 if possible, for the sake of frame pointer elimination. */
356 if (valreg)
357 pat = GEN_SIBCALL_VALUE_POP (valreg, funmem, rounded_stack_size_rtx,
358 next_arg_reg, n_pop);
359 else
360 pat = GEN_SIBCALL_POP (funmem, rounded_stack_size_rtx, next_arg_reg,
361 n_pop);
363 emit_call_insn (pat);
364 already_popped = 1;
366 else
367 #endif
369 #if defined (HAVE_call_pop) && defined (HAVE_call_value_pop)
370 /* If the target has "call" or "call_value" insns, then prefer them
371 if no arguments are actually popped. If the target does not have
372 "call" or "call_value" insns, then we must use the popping versions
373 even if the call has no arguments to pop. */
374 #if defined (HAVE_call) && defined (HAVE_call_value)
375 if (HAVE_call && HAVE_call_value && HAVE_call_pop && HAVE_call_value_pop
376 && n_popped > 0)
377 #else
378 if (HAVE_call_pop && HAVE_call_value_pop)
379 #endif
381 rtx n_pop = GEN_INT (n_popped);
382 rtx pat;
384 /* If this subroutine pops its own args, record that in the call insn
385 if possible, for the sake of frame pointer elimination. */
387 if (valreg)
388 pat = GEN_CALL_VALUE_POP (valreg, funmem, rounded_stack_size_rtx,
389 next_arg_reg, n_pop);
390 else
391 pat = GEN_CALL_POP (funmem, rounded_stack_size_rtx, next_arg_reg,
392 n_pop);
394 emit_call_insn (pat);
395 already_popped = 1;
397 else
398 #endif
400 #if defined (HAVE_sibcall) && defined (HAVE_sibcall_value)
401 if ((ecf_flags & ECF_SIBCALL)
402 && HAVE_sibcall && HAVE_sibcall_value)
404 if (valreg)
405 emit_call_insn (GEN_SIBCALL_VALUE (valreg, funmem,
406 rounded_stack_size_rtx,
407 next_arg_reg, NULL_RTX));
408 else
409 emit_call_insn (GEN_SIBCALL (funmem, rounded_stack_size_rtx,
410 next_arg_reg,
411 GEN_INT (struct_value_size)));
413 else
414 #endif
416 #if defined (HAVE_call) && defined (HAVE_call_value)
417 if (HAVE_call && HAVE_call_value)
419 if (valreg)
420 emit_call_insn (GEN_CALL_VALUE (valreg, funmem, rounded_stack_size_rtx,
421 next_arg_reg, NULL_RTX));
422 else
423 emit_call_insn (GEN_CALL (funmem, rounded_stack_size_rtx, next_arg_reg,
424 GEN_INT (struct_value_size)));
426 else
427 #endif
428 gcc_unreachable ();
430 /* Find the call we just emitted. */
431 rtx_call_insn *call_insn = last_call_insn ();
433 /* Some target create a fresh MEM instead of reusing the one provided
434 above. Set its MEM_EXPR. */
435 call = get_call_rtx_from (call_insn);
436 if (call
437 && MEM_EXPR (XEXP (call, 0)) == NULL_TREE
438 && MEM_EXPR (funmem) != NULL_TREE)
439 set_mem_expr (XEXP (call, 0), MEM_EXPR (funmem));
441 /* Mark instrumented calls. */
442 if (call && fntree)
443 CALL_EXPR_WITH_BOUNDS_P (call) = CALL_WITH_BOUNDS_P (fntree);
445 /* Put the register usage information there. */
446 add_function_usage_to (call_insn, call_fusage);
448 /* If this is a const call, then set the insn's unchanging bit. */
449 if (ecf_flags & ECF_CONST)
450 RTL_CONST_CALL_P (call_insn) = 1;
452 /* If this is a pure call, then set the insn's unchanging bit. */
453 if (ecf_flags & ECF_PURE)
454 RTL_PURE_CALL_P (call_insn) = 1;
456 /* If this is a const call, then set the insn's unchanging bit. */
457 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
458 RTL_LOOPING_CONST_OR_PURE_CALL_P (call_insn) = 1;
460 /* Create a nothrow REG_EH_REGION note, if needed. */
461 make_reg_eh_region_note (call_insn, ecf_flags, 0);
463 if (ecf_flags & ECF_NORETURN)
464 add_reg_note (call_insn, REG_NORETURN, const0_rtx);
466 if (ecf_flags & ECF_RETURNS_TWICE)
468 add_reg_note (call_insn, REG_SETJMP, const0_rtx);
469 cfun->calls_setjmp = 1;
472 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
474 /* Restore this now, so that we do defer pops for this call's args
475 if the context of the call as a whole permits. */
476 inhibit_defer_pop = old_inhibit_defer_pop;
478 if (n_popped > 0)
480 if (!already_popped)
481 CALL_INSN_FUNCTION_USAGE (call_insn)
482 = gen_rtx_EXPR_LIST (VOIDmode,
483 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
484 CALL_INSN_FUNCTION_USAGE (call_insn));
485 rounded_stack_size -= n_popped;
486 rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
487 stack_pointer_delta -= n_popped;
489 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
491 /* If popup is needed, stack realign must use DRAP */
492 if (SUPPORTS_STACK_ALIGNMENT)
493 crtl->need_drap = true;
495 /* For noreturn calls when not accumulating outgoing args force
496 REG_ARGS_SIZE note to prevent crossjumping of calls with different
497 args sizes. */
498 else if (!ACCUMULATE_OUTGOING_ARGS && (ecf_flags & ECF_NORETURN) != 0)
499 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
501 if (!ACCUMULATE_OUTGOING_ARGS)
503 /* If returning from the subroutine does not automatically pop the args,
504 we need an instruction to pop them sooner or later.
505 Perhaps do it now; perhaps just record how much space to pop later.
507 If returning from the subroutine does pop the args, indicate that the
508 stack pointer will be changed. */
510 if (rounded_stack_size != 0)
512 if (ecf_flags & ECF_NORETURN)
513 /* Just pretend we did the pop. */
514 stack_pointer_delta -= rounded_stack_size;
515 else if (flag_defer_pop && inhibit_defer_pop == 0
516 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
517 pending_stack_adjust += rounded_stack_size;
518 else
519 adjust_stack (rounded_stack_size_rtx);
522 /* When we accumulate outgoing args, we must avoid any stack manipulations.
523 Restore the stack pointer to its original value now. Usually
524 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
525 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
526 popping variants of functions exist as well.
528 ??? We may optimize similar to defer_pop above, but it is
529 probably not worthwhile.
531 ??? It will be worthwhile to enable combine_stack_adjustments even for
532 such machines. */
533 else if (n_popped)
534 anti_adjust_stack (GEN_INT (n_popped));
537 /* Determine if the function identified by NAME and FNDECL is one with
538 special properties we wish to know about.
540 For example, if the function might return more than one time (setjmp), then
541 set RETURNS_TWICE to a nonzero value.
543 Similarly set NORETURN if the function is in the longjmp family.
545 Set MAY_BE_ALLOCA for any memory allocation function that might allocate
546 space from the stack such as alloca. */
548 static int
549 special_function_p (const_tree fndecl, int flags)
551 tree name_decl = DECL_NAME (fndecl);
553 /* For instrumentation clones we want to derive flags
554 from the original name. */
555 if (cgraph_node::get (fndecl)
556 && cgraph_node::get (fndecl)->instrumentation_clone)
557 name_decl = DECL_NAME (cgraph_node::get (fndecl)->orig_decl);
559 if (fndecl && name_decl
560 && IDENTIFIER_LENGTH (name_decl) <= 17
561 /* Exclude functions not at the file scope, or not `extern',
562 since they are not the magic functions we would otherwise
563 think they are.
564 FIXME: this should be handled with attributes, not with this
565 hacky imitation of DECL_ASSEMBLER_NAME. It's (also) wrong
566 because you can declare fork() inside a function if you
567 wish. */
568 && (DECL_CONTEXT (fndecl) == NULL_TREE
569 || TREE_CODE (DECL_CONTEXT (fndecl)) == TRANSLATION_UNIT_DECL)
570 && TREE_PUBLIC (fndecl))
572 const char *name = IDENTIFIER_POINTER (name_decl);
573 const char *tname = name;
575 /* We assume that alloca will always be called by name. It
576 makes no sense to pass it as a pointer-to-function to
577 anything that does not understand its behavior. */
578 if (((IDENTIFIER_LENGTH (name_decl) == 6
579 && name[0] == 'a'
580 && ! strcmp (name, "alloca"))
581 || (IDENTIFIER_LENGTH (name_decl) == 16
582 && name[0] == '_'
583 && ! strcmp (name, "__builtin_alloca"))))
584 flags |= ECF_MAY_BE_ALLOCA;
586 /* Disregard prefix _, __, __x or __builtin_. */
587 if (name[0] == '_')
589 if (name[1] == '_'
590 && name[2] == 'b'
591 && !strncmp (name + 3, "uiltin_", 7))
592 tname += 10;
593 else if (name[1] == '_' && name[2] == 'x')
594 tname += 3;
595 else if (name[1] == '_')
596 tname += 2;
597 else
598 tname += 1;
601 if (tname[0] == 's')
603 if ((tname[1] == 'e'
604 && (! strcmp (tname, "setjmp")
605 || ! strcmp (tname, "setjmp_syscall")))
606 || (tname[1] == 'i'
607 && ! strcmp (tname, "sigsetjmp"))
608 || (tname[1] == 'a'
609 && ! strcmp (tname, "savectx")))
610 flags |= ECF_RETURNS_TWICE | ECF_LEAF;
612 if (tname[1] == 'i'
613 && ! strcmp (tname, "siglongjmp"))
614 flags |= ECF_NORETURN;
616 else if ((tname[0] == 'q' && tname[1] == 's'
617 && ! strcmp (tname, "qsetjmp"))
618 || (tname[0] == 'v' && tname[1] == 'f'
619 && ! strcmp (tname, "vfork"))
620 || (tname[0] == 'g' && tname[1] == 'e'
621 && !strcmp (tname, "getcontext")))
622 flags |= ECF_RETURNS_TWICE | ECF_LEAF;
624 else if (tname[0] == 'l' && tname[1] == 'o'
625 && ! strcmp (tname, "longjmp"))
626 flags |= ECF_NORETURN;
629 return flags;
632 /* Similar to special_function_p; return a set of ERF_ flags for the
633 function FNDECL. */
634 static int
635 decl_return_flags (tree fndecl)
637 tree attr;
638 tree type = TREE_TYPE (fndecl);
639 if (!type)
640 return 0;
642 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
643 if (!attr)
644 return 0;
646 attr = TREE_VALUE (TREE_VALUE (attr));
647 if (!attr || TREE_STRING_LENGTH (attr) < 1)
648 return 0;
650 switch (TREE_STRING_POINTER (attr)[0])
652 case '1':
653 case '2':
654 case '3':
655 case '4':
656 return ERF_RETURNS_ARG | (TREE_STRING_POINTER (attr)[0] - '1');
658 case 'm':
659 return ERF_NOALIAS;
661 case '.':
662 default:
663 return 0;
667 /* Return nonzero when FNDECL represents a call to setjmp. */
670 setjmp_call_p (const_tree fndecl)
672 if (DECL_IS_RETURNS_TWICE (fndecl))
673 return ECF_RETURNS_TWICE;
674 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
678 /* Return true if STMT is an alloca call. */
680 bool
681 gimple_alloca_call_p (const_gimple stmt)
683 tree fndecl;
685 if (!is_gimple_call (stmt))
686 return false;
688 fndecl = gimple_call_fndecl (stmt);
689 if (fndecl && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
690 return true;
692 return false;
695 /* Return true when exp contains alloca call. */
697 bool
698 alloca_call_p (const_tree exp)
700 tree fndecl;
701 if (TREE_CODE (exp) == CALL_EXPR
702 && (fndecl = get_callee_fndecl (exp))
703 && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
704 return true;
705 return false;
708 /* Return TRUE if FNDECL is either a TM builtin or a TM cloned
709 function. Return FALSE otherwise. */
711 static bool
712 is_tm_builtin (const_tree fndecl)
714 if (fndecl == NULL)
715 return false;
717 if (decl_is_tm_clone (fndecl))
718 return true;
720 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
722 switch (DECL_FUNCTION_CODE (fndecl))
724 case BUILT_IN_TM_COMMIT:
725 case BUILT_IN_TM_COMMIT_EH:
726 case BUILT_IN_TM_ABORT:
727 case BUILT_IN_TM_IRREVOCABLE:
728 case BUILT_IN_TM_GETTMCLONE_IRR:
729 case BUILT_IN_TM_MEMCPY:
730 case BUILT_IN_TM_MEMMOVE:
731 case BUILT_IN_TM_MEMSET:
732 CASE_BUILT_IN_TM_STORE (1):
733 CASE_BUILT_IN_TM_STORE (2):
734 CASE_BUILT_IN_TM_STORE (4):
735 CASE_BUILT_IN_TM_STORE (8):
736 CASE_BUILT_IN_TM_STORE (FLOAT):
737 CASE_BUILT_IN_TM_STORE (DOUBLE):
738 CASE_BUILT_IN_TM_STORE (LDOUBLE):
739 CASE_BUILT_IN_TM_STORE (M64):
740 CASE_BUILT_IN_TM_STORE (M128):
741 CASE_BUILT_IN_TM_STORE (M256):
742 CASE_BUILT_IN_TM_LOAD (1):
743 CASE_BUILT_IN_TM_LOAD (2):
744 CASE_BUILT_IN_TM_LOAD (4):
745 CASE_BUILT_IN_TM_LOAD (8):
746 CASE_BUILT_IN_TM_LOAD (FLOAT):
747 CASE_BUILT_IN_TM_LOAD (DOUBLE):
748 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
749 CASE_BUILT_IN_TM_LOAD (M64):
750 CASE_BUILT_IN_TM_LOAD (M128):
751 CASE_BUILT_IN_TM_LOAD (M256):
752 case BUILT_IN_TM_LOG:
753 case BUILT_IN_TM_LOG_1:
754 case BUILT_IN_TM_LOG_2:
755 case BUILT_IN_TM_LOG_4:
756 case BUILT_IN_TM_LOG_8:
757 case BUILT_IN_TM_LOG_FLOAT:
758 case BUILT_IN_TM_LOG_DOUBLE:
759 case BUILT_IN_TM_LOG_LDOUBLE:
760 case BUILT_IN_TM_LOG_M64:
761 case BUILT_IN_TM_LOG_M128:
762 case BUILT_IN_TM_LOG_M256:
763 return true;
764 default:
765 break;
768 return false;
771 /* Detect flags (function attributes) from the function decl or type node. */
774 flags_from_decl_or_type (const_tree exp)
776 int flags = 0;
778 if (DECL_P (exp))
780 /* The function exp may have the `malloc' attribute. */
781 if (DECL_IS_MALLOC (exp))
782 flags |= ECF_MALLOC;
784 /* The function exp may have the `returns_twice' attribute. */
785 if (DECL_IS_RETURNS_TWICE (exp))
786 flags |= ECF_RETURNS_TWICE;
788 /* Process the pure and const attributes. */
789 if (TREE_READONLY (exp))
790 flags |= ECF_CONST;
791 if (DECL_PURE_P (exp))
792 flags |= ECF_PURE;
793 if (DECL_LOOPING_CONST_OR_PURE_P (exp))
794 flags |= ECF_LOOPING_CONST_OR_PURE;
796 if (DECL_IS_NOVOPS (exp))
797 flags |= ECF_NOVOPS;
798 if (lookup_attribute ("leaf", DECL_ATTRIBUTES (exp)))
799 flags |= ECF_LEAF;
801 if (TREE_NOTHROW (exp))
802 flags |= ECF_NOTHROW;
804 if (flag_tm)
806 if (is_tm_builtin (exp))
807 flags |= ECF_TM_BUILTIN;
808 else if ((flags & (ECF_CONST|ECF_NOVOPS)) != 0
809 || lookup_attribute ("transaction_pure",
810 TYPE_ATTRIBUTES (TREE_TYPE (exp))))
811 flags |= ECF_TM_PURE;
814 flags = special_function_p (exp, flags);
816 else if (TYPE_P (exp))
818 if (TYPE_READONLY (exp))
819 flags |= ECF_CONST;
821 if (flag_tm
822 && ((flags & ECF_CONST) != 0
823 || lookup_attribute ("transaction_pure", TYPE_ATTRIBUTES (exp))))
824 flags |= ECF_TM_PURE;
826 else
827 gcc_unreachable ();
829 if (TREE_THIS_VOLATILE (exp))
831 flags |= ECF_NORETURN;
832 if (flags & (ECF_CONST|ECF_PURE))
833 flags |= ECF_LOOPING_CONST_OR_PURE;
836 return flags;
839 /* Detect flags from a CALL_EXPR. */
842 call_expr_flags (const_tree t)
844 int flags;
845 tree decl = get_callee_fndecl (t);
847 if (decl)
848 flags = flags_from_decl_or_type (decl);
849 else if (CALL_EXPR_FN (t) == NULL_TREE)
850 flags = internal_fn_flags (CALL_EXPR_IFN (t));
851 else
853 t = TREE_TYPE (CALL_EXPR_FN (t));
854 if (t && TREE_CODE (t) == POINTER_TYPE)
855 flags = flags_from_decl_or_type (TREE_TYPE (t));
856 else
857 flags = 0;
860 return flags;
863 /* Precompute all register parameters as described by ARGS, storing values
864 into fields within the ARGS array.
866 NUM_ACTUALS indicates the total number elements in the ARGS array.
868 Set REG_PARM_SEEN if we encounter a register parameter. */
870 static void
871 precompute_register_parameters (int num_actuals, struct arg_data *args,
872 int *reg_parm_seen)
874 int i;
876 *reg_parm_seen = 0;
878 for (i = 0; i < num_actuals; i++)
879 if (args[i].reg != 0 && ! args[i].pass_on_stack)
881 *reg_parm_seen = 1;
883 if (args[i].value == 0)
885 push_temp_slots ();
886 args[i].value = expand_normal (args[i].tree_value);
887 preserve_temp_slots (args[i].value);
888 pop_temp_slots ();
891 /* If we are to promote the function arg to a wider mode,
892 do it now. */
894 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
895 args[i].value
896 = convert_modes (args[i].mode,
897 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
898 args[i].value, args[i].unsignedp);
900 /* If the value is a non-legitimate constant, force it into a
901 pseudo now. TLS symbols sometimes need a call to resolve. */
902 if (CONSTANT_P (args[i].value)
903 && !targetm.legitimate_constant_p (args[i].mode, args[i].value))
904 args[i].value = force_reg (args[i].mode, args[i].value);
906 /* If we're going to have to load the value by parts, pull the
907 parts into pseudos. The part extraction process can involve
908 non-trivial computation. */
909 if (GET_CODE (args[i].reg) == PARALLEL)
911 tree type = TREE_TYPE (args[i].tree_value);
912 args[i].parallel_value
913 = emit_group_load_into_temps (args[i].reg, args[i].value,
914 type, int_size_in_bytes (type));
917 /* If the value is expensive, and we are inside an appropriately
918 short loop, put the value into a pseudo and then put the pseudo
919 into the hard reg.
921 For small register classes, also do this if this call uses
922 register parameters. This is to avoid reload conflicts while
923 loading the parameters registers. */
925 else if ((! (REG_P (args[i].value)
926 || (GET_CODE (args[i].value) == SUBREG
927 && REG_P (SUBREG_REG (args[i].value)))))
928 && args[i].mode != BLKmode
929 && set_src_cost (args[i].value, optimize_insn_for_speed_p ())
930 > COSTS_N_INSNS (1)
931 && ((*reg_parm_seen
932 && targetm.small_register_classes_for_mode_p (args[i].mode))
933 || optimize))
934 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
938 #ifdef REG_PARM_STACK_SPACE
940 /* The argument list is the property of the called routine and it
941 may clobber it. If the fixed area has been used for previous
942 parameters, we must save and restore it. */
944 static rtx
945 save_fixed_argument_area (int reg_parm_stack_space, rtx argblock, int *low_to_save, int *high_to_save)
947 int low;
948 int high;
950 /* Compute the boundary of the area that needs to be saved, if any. */
951 high = reg_parm_stack_space;
952 if (ARGS_GROW_DOWNWARD)
953 high += 1;
955 if (high > highest_outgoing_arg_in_use)
956 high = highest_outgoing_arg_in_use;
958 for (low = 0; low < high; low++)
959 if (stack_usage_map[low] != 0)
961 int num_to_save;
962 machine_mode save_mode;
963 int delta;
964 rtx addr;
965 rtx stack_area;
966 rtx save_area;
968 while (stack_usage_map[--high] == 0)
971 *low_to_save = low;
972 *high_to_save = high;
974 num_to_save = high - low + 1;
975 save_mode = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
977 /* If we don't have the required alignment, must do this
978 in BLKmode. */
979 if ((low & (MIN (GET_MODE_SIZE (save_mode),
980 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
981 save_mode = BLKmode;
983 if (ARGS_GROW_DOWNWARD)
984 delta = -high;
985 else
986 delta = low;
988 addr = plus_constant (Pmode, argblock, delta);
989 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
991 set_mem_align (stack_area, PARM_BOUNDARY);
992 if (save_mode == BLKmode)
994 save_area = assign_stack_temp (BLKmode, num_to_save);
995 emit_block_move (validize_mem (save_area), stack_area,
996 GEN_INT (num_to_save), BLOCK_OP_CALL_PARM);
998 else
1000 save_area = gen_reg_rtx (save_mode);
1001 emit_move_insn (save_area, stack_area);
1004 return save_area;
1007 return NULL_RTX;
1010 static void
1011 restore_fixed_argument_area (rtx save_area, rtx argblock, int high_to_save, int low_to_save)
1013 machine_mode save_mode = GET_MODE (save_area);
1014 int delta;
1015 rtx addr, stack_area;
1017 if (ARGS_GROW_DOWNWARD)
1018 delta = -high_to_save;
1019 else
1020 delta = low_to_save;
1022 addr = plus_constant (Pmode, argblock, delta);
1023 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
1024 set_mem_align (stack_area, PARM_BOUNDARY);
1026 if (save_mode != BLKmode)
1027 emit_move_insn (stack_area, save_area);
1028 else
1029 emit_block_move (stack_area, validize_mem (save_area),
1030 GEN_INT (high_to_save - low_to_save + 1),
1031 BLOCK_OP_CALL_PARM);
1033 #endif /* REG_PARM_STACK_SPACE */
1035 /* If any elements in ARGS refer to parameters that are to be passed in
1036 registers, but not in memory, and whose alignment does not permit a
1037 direct copy into registers. Copy the values into a group of pseudos
1038 which we will later copy into the appropriate hard registers.
1040 Pseudos for each unaligned argument will be stored into the array
1041 args[argnum].aligned_regs. The caller is responsible for deallocating
1042 the aligned_regs array if it is nonzero. */
1044 static void
1045 store_unaligned_arguments_into_pseudos (struct arg_data *args, int num_actuals)
1047 int i, j;
1049 for (i = 0; i < num_actuals; i++)
1050 if (args[i].reg != 0 && ! args[i].pass_on_stack
1051 && GET_CODE (args[i].reg) != PARALLEL
1052 && args[i].mode == BLKmode
1053 && MEM_P (args[i].value)
1054 && (MEM_ALIGN (args[i].value)
1055 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
1057 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1058 int endian_correction = 0;
1060 if (args[i].partial)
1062 gcc_assert (args[i].partial % UNITS_PER_WORD == 0);
1063 args[i].n_aligned_regs = args[i].partial / UNITS_PER_WORD;
1065 else
1067 args[i].n_aligned_regs
1068 = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1071 args[i].aligned_regs = XNEWVEC (rtx, args[i].n_aligned_regs);
1073 /* Structures smaller than a word are normally aligned to the
1074 least significant byte. On a BYTES_BIG_ENDIAN machine,
1075 this means we must skip the empty high order bytes when
1076 calculating the bit offset. */
1077 if (bytes < UNITS_PER_WORD
1078 #ifdef BLOCK_REG_PADDING
1079 && (BLOCK_REG_PADDING (args[i].mode,
1080 TREE_TYPE (args[i].tree_value), 1)
1081 == downward)
1082 #else
1083 && BYTES_BIG_ENDIAN
1084 #endif
1086 endian_correction = BITS_PER_WORD - bytes * BITS_PER_UNIT;
1088 for (j = 0; j < args[i].n_aligned_regs; j++)
1090 rtx reg = gen_reg_rtx (word_mode);
1091 rtx word = operand_subword_force (args[i].value, j, BLKmode);
1092 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
1094 args[i].aligned_regs[j] = reg;
1095 word = extract_bit_field (word, bitsize, 0, 1, NULL_RTX,
1096 word_mode, word_mode);
1098 /* There is no need to restrict this code to loading items
1099 in TYPE_ALIGN sized hunks. The bitfield instructions can
1100 load up entire word sized registers efficiently.
1102 ??? This may not be needed anymore.
1103 We use to emit a clobber here but that doesn't let later
1104 passes optimize the instructions we emit. By storing 0 into
1105 the register later passes know the first AND to zero out the
1106 bitfield being set in the register is unnecessary. The store
1107 of 0 will be deleted as will at least the first AND. */
1109 emit_move_insn (reg, const0_rtx);
1111 bytes -= bitsize / BITS_PER_UNIT;
1112 store_bit_field (reg, bitsize, endian_correction, 0, 0,
1113 word_mode, word);
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 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 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
1206 tree argtype = TREE_TYPE (arg);
1208 /* Remember last param with pointer and associate it
1209 with following pointer bounds. */
1210 if (CALL_WITH_BOUNDS_P (exp)
1211 && chkp_type_has_pointer (argtype))
1213 if (slots)
1214 BITMAP_FREE (slots);
1215 ptr_arg = j;
1216 if (!BOUNDED_TYPE_P (argtype))
1218 slots = BITMAP_ALLOC (NULL);
1219 chkp_find_bound_slots (argtype, slots);
1222 else if (POINTER_BOUNDS_TYPE_P (argtype))
1224 /* We expect bounds in instrumented calls only.
1225 Otherwise it is a sign we lost flag due to some optimization
1226 and may emit call args incorrectly. */
1227 gcc_assert (CALL_WITH_BOUNDS_P (exp));
1229 /* For structures look for the next available pointer. */
1230 if (ptr_arg != -1 && slots)
1232 unsigned bnd_no = bitmap_first_set_bit (slots);
1233 args[j].pointer_offset =
1234 bnd_no * POINTER_SIZE / BITS_PER_UNIT;
1236 bitmap_clear_bit (slots, bnd_no);
1238 /* Check we have no more pointers in the structure. */
1239 if (bitmap_empty_p (slots))
1240 BITMAP_FREE (slots);
1242 args[j].pointer_arg = ptr_arg;
1244 /* Check we covered all pointers in the previous
1245 non bounds arg. */
1246 if (!slots)
1247 ptr_arg = -1;
1249 else
1250 ptr_arg = -1;
1252 if (targetm.calls.split_complex_arg
1253 && argtype
1254 && TREE_CODE (argtype) == COMPLEX_TYPE
1255 && targetm.calls.split_complex_arg (argtype))
1257 tree subtype = TREE_TYPE (argtype);
1258 args[j].tree_value = build1 (REALPART_EXPR, subtype, arg);
1259 j--;
1260 args[j].tree_value = build1 (IMAGPART_EXPR, subtype, arg);
1262 else
1263 args[j].tree_value = arg;
1264 j--;
1267 if (slots)
1268 BITMAP_FREE (slots);
1271 bitmap_obstack_release (NULL);
1273 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
1274 for (argpos = 0; argpos < num_actuals; i--, argpos++)
1276 tree type = TREE_TYPE (args[i].tree_value);
1277 int unsignedp;
1278 machine_mode mode;
1280 /* Replace erroneous argument with constant zero. */
1281 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
1282 args[i].tree_value = integer_zero_node, type = integer_type_node;
1284 /* If TYPE is a transparent union or record, pass things the way
1285 we would pass the first field of the union or record. We have
1286 already verified that the modes are the same. */
1287 if ((TREE_CODE (type) == UNION_TYPE || TREE_CODE (type) == RECORD_TYPE)
1288 && TYPE_TRANSPARENT_AGGR (type))
1289 type = TREE_TYPE (first_field (type));
1291 /* Decide where to pass this arg.
1293 args[i].reg is nonzero if all or part is passed in registers.
1295 args[i].partial is nonzero if part but not all is passed in registers,
1296 and the exact value says how many bytes are passed in registers.
1298 args[i].pass_on_stack is nonzero if the argument must at least be
1299 computed on the stack. It may then be loaded back into registers
1300 if args[i].reg is nonzero.
1302 These decisions are driven by the FUNCTION_... macros and must agree
1303 with those made by function.c. */
1305 /* See if this argument should be passed by invisible reference. */
1306 if (pass_by_reference (args_so_far_pnt, TYPE_MODE (type),
1307 type, argpos < n_named_args))
1309 bool callee_copies;
1310 tree base = NULL_TREE;
1312 callee_copies
1313 = reference_callee_copied (args_so_far_pnt, TYPE_MODE (type),
1314 type, argpos < n_named_args);
1316 /* If we're compiling a thunk, pass through invisible references
1317 instead of making a copy. */
1318 if (call_from_thunk_p
1319 || (callee_copies
1320 && !TREE_ADDRESSABLE (type)
1321 && (base = get_base_address (args[i].tree_value))
1322 && TREE_CODE (base) != SSA_NAME
1323 && (!DECL_P (base) || MEM_P (DECL_RTL (base)))))
1325 /* We may have turned the parameter value into an SSA name.
1326 Go back to the original parameter so we can take the
1327 address. */
1328 if (TREE_CODE (args[i].tree_value) == SSA_NAME)
1330 gcc_assert (SSA_NAME_IS_DEFAULT_DEF (args[i].tree_value));
1331 args[i].tree_value = SSA_NAME_VAR (args[i].tree_value);
1332 gcc_assert (TREE_CODE (args[i].tree_value) == PARM_DECL);
1334 /* Argument setup code may have copied the value to register. We
1335 revert that optimization now because the tail call code must
1336 use the original location. */
1337 if (TREE_CODE (args[i].tree_value) == PARM_DECL
1338 && !MEM_P (DECL_RTL (args[i].tree_value))
1339 && DECL_INCOMING_RTL (args[i].tree_value)
1340 && MEM_P (DECL_INCOMING_RTL (args[i].tree_value)))
1341 set_decl_rtl (args[i].tree_value,
1342 DECL_INCOMING_RTL (args[i].tree_value));
1344 mark_addressable (args[i].tree_value);
1346 /* We can't use sibcalls if a callee-copied argument is
1347 stored in the current function's frame. */
1348 if (!call_from_thunk_p && DECL_P (base) && !TREE_STATIC (base))
1349 *may_tailcall = false;
1351 args[i].tree_value = build_fold_addr_expr_loc (loc,
1352 args[i].tree_value);
1353 type = TREE_TYPE (args[i].tree_value);
1355 if (*ecf_flags & ECF_CONST)
1356 *ecf_flags &= ~(ECF_CONST | ECF_LOOPING_CONST_OR_PURE);
1358 else
1360 /* We make a copy of the object and pass the address to the
1361 function being called. */
1362 rtx copy;
1364 if (!COMPLETE_TYPE_P (type)
1365 || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST
1366 || (flag_stack_check == GENERIC_STACK_CHECK
1367 && compare_tree_int (TYPE_SIZE_UNIT (type),
1368 STACK_CHECK_MAX_VAR_SIZE) > 0))
1370 /* This is a variable-sized object. Make space on the stack
1371 for it. */
1372 rtx size_rtx = expr_size (args[i].tree_value);
1374 if (*old_stack_level == 0)
1376 emit_stack_save (SAVE_BLOCK, old_stack_level);
1377 *old_pending_adj = pending_stack_adjust;
1378 pending_stack_adjust = 0;
1381 /* We can pass TRUE as the 4th argument because we just
1382 saved the stack pointer and will restore it right after
1383 the call. */
1384 copy = allocate_dynamic_stack_space (size_rtx,
1385 TYPE_ALIGN (type),
1386 TYPE_ALIGN (type),
1387 true);
1388 copy = gen_rtx_MEM (BLKmode, copy);
1389 set_mem_attributes (copy, type, 1);
1391 else
1392 copy = assign_temp (type, 1, 0);
1394 store_expr (args[i].tree_value, copy, 0, false);
1396 /* Just change the const function to pure and then let
1397 the next test clear the pure based on
1398 callee_copies. */
1399 if (*ecf_flags & ECF_CONST)
1401 *ecf_flags &= ~ECF_CONST;
1402 *ecf_flags |= ECF_PURE;
1405 if (!callee_copies && *ecf_flags & ECF_PURE)
1406 *ecf_flags &= ~(ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
1408 args[i].tree_value
1409 = build_fold_addr_expr_loc (loc, make_tree (type, copy));
1410 type = TREE_TYPE (args[i].tree_value);
1411 *may_tailcall = false;
1415 unsignedp = TYPE_UNSIGNED (type);
1416 mode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
1417 fndecl ? TREE_TYPE (fndecl) : fntype, 0);
1419 args[i].unsignedp = unsignedp;
1420 args[i].mode = mode;
1422 args[i].reg = targetm.calls.function_arg (args_so_far, mode, type,
1423 argpos < n_named_args);
1425 if (args[i].reg && CONST_INT_P (args[i].reg))
1427 args[i].special_slot = args[i].reg;
1428 args[i].reg = NULL;
1431 /* If this is a sibling call and the machine has register windows, the
1432 register window has to be unwinded before calling the routine, so
1433 arguments have to go into the incoming registers. */
1434 if (targetm.calls.function_incoming_arg != targetm.calls.function_arg)
1435 args[i].tail_call_reg
1436 = targetm.calls.function_incoming_arg (args_so_far, mode, type,
1437 argpos < n_named_args);
1438 else
1439 args[i].tail_call_reg = args[i].reg;
1441 if (args[i].reg)
1442 args[i].partial
1443 = targetm.calls.arg_partial_bytes (args_so_far, mode, type,
1444 argpos < n_named_args);
1446 args[i].pass_on_stack = targetm.calls.must_pass_in_stack (mode, type);
1448 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
1449 it means that we are to pass this arg in the register(s) designated
1450 by the PARALLEL, but also to pass it in the stack. */
1451 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
1452 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
1453 args[i].pass_on_stack = 1;
1455 /* If this is an addressable type, we must preallocate the stack
1456 since we must evaluate the object into its final location.
1458 If this is to be passed in both registers and the stack, it is simpler
1459 to preallocate. */
1460 if (TREE_ADDRESSABLE (type)
1461 || (args[i].pass_on_stack && args[i].reg != 0))
1462 *must_preallocate = 1;
1464 /* No stack allocation and padding for bounds. */
1465 if (POINTER_BOUNDS_P (args[i].tree_value))
1467 /* Compute the stack-size of this argument. */
1468 else if (args[i].reg == 0 || args[i].partial != 0
1469 || reg_parm_stack_space > 0
1470 || args[i].pass_on_stack)
1471 locate_and_pad_parm (mode, type,
1472 #ifdef STACK_PARMS_IN_REG_PARM_AREA
1474 #else
1475 args[i].reg != 0,
1476 #endif
1477 reg_parm_stack_space,
1478 args[i].pass_on_stack ? 0 : args[i].partial,
1479 fndecl, args_size, &args[i].locate);
1480 #ifdef BLOCK_REG_PADDING
1481 else
1482 /* The argument is passed entirely in registers. See at which
1483 end it should be padded. */
1484 args[i].locate.where_pad =
1485 BLOCK_REG_PADDING (mode, type,
1486 int_size_in_bytes (type) <= UNITS_PER_WORD);
1487 #endif
1489 /* Update ARGS_SIZE, the total stack space for args so far. */
1491 args_size->constant += args[i].locate.size.constant;
1492 if (args[i].locate.size.var)
1493 ADD_PARM_SIZE (*args_size, args[i].locate.size.var);
1495 /* Increment ARGS_SO_FAR, which has info about which arg-registers
1496 have been used, etc. */
1498 targetm.calls.function_arg_advance (args_so_far, TYPE_MODE (type),
1499 type, argpos < n_named_args);
1503 /* Update ARGS_SIZE to contain the total size for the argument block.
1504 Return the original constant component of the argument block's size.
1506 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
1507 for arguments passed in registers. */
1509 static int
1510 compute_argument_block_size (int reg_parm_stack_space,
1511 struct args_size *args_size,
1512 tree fndecl ATTRIBUTE_UNUSED,
1513 tree fntype ATTRIBUTE_UNUSED,
1514 int preferred_stack_boundary ATTRIBUTE_UNUSED)
1516 int unadjusted_args_size = args_size->constant;
1518 /* For accumulate outgoing args mode we don't need to align, since the frame
1519 will be already aligned. Align to STACK_BOUNDARY in order to prevent
1520 backends from generating misaligned frame sizes. */
1521 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
1522 preferred_stack_boundary = STACK_BOUNDARY;
1524 /* Compute the actual size of the argument block required. The variable
1525 and constant sizes must be combined, the size may have to be rounded,
1526 and there may be a minimum required size. */
1528 if (args_size->var)
1530 args_size->var = ARGS_SIZE_TREE (*args_size);
1531 args_size->constant = 0;
1533 preferred_stack_boundary /= BITS_PER_UNIT;
1534 if (preferred_stack_boundary > 1)
1536 /* We don't handle this case yet. To handle it correctly we have
1537 to add the delta, round and subtract the delta.
1538 Currently no machine description requires this support. */
1539 gcc_assert (!(stack_pointer_delta & (preferred_stack_boundary - 1)));
1540 args_size->var = round_up (args_size->var, preferred_stack_boundary);
1543 if (reg_parm_stack_space > 0)
1545 args_size->var
1546 = size_binop (MAX_EXPR, args_size->var,
1547 ssize_int (reg_parm_stack_space));
1549 /* The area corresponding to register parameters is not to count in
1550 the size of the block we need. So make the adjustment. */
1551 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1552 args_size->var
1553 = size_binop (MINUS_EXPR, args_size->var,
1554 ssize_int (reg_parm_stack_space));
1557 else
1559 preferred_stack_boundary /= BITS_PER_UNIT;
1560 if (preferred_stack_boundary < 1)
1561 preferred_stack_boundary = 1;
1562 args_size->constant = (((args_size->constant
1563 + stack_pointer_delta
1564 + preferred_stack_boundary - 1)
1565 / preferred_stack_boundary
1566 * preferred_stack_boundary)
1567 - stack_pointer_delta);
1569 args_size->constant = MAX (args_size->constant,
1570 reg_parm_stack_space);
1572 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1573 args_size->constant -= reg_parm_stack_space;
1575 return unadjusted_args_size;
1578 /* Precompute parameters as needed for a function call.
1580 FLAGS is mask of ECF_* constants.
1582 NUM_ACTUALS is the number of arguments.
1584 ARGS is an array containing information for each argument; this
1585 routine fills in the INITIAL_VALUE and VALUE fields for each
1586 precomputed argument. */
1588 static void
1589 precompute_arguments (int num_actuals, struct arg_data *args)
1591 int i;
1593 /* If this is a libcall, then precompute all arguments so that we do not
1594 get extraneous instructions emitted as part of the libcall sequence. */
1596 /* If we preallocated the stack space, and some arguments must be passed
1597 on the stack, then we must precompute any parameter which contains a
1598 function call which will store arguments on the stack.
1599 Otherwise, evaluating the parameter may clobber previous parameters
1600 which have already been stored into the stack. (we have code to avoid
1601 such case by saving the outgoing stack arguments, but it results in
1602 worse code) */
1603 if (!ACCUMULATE_OUTGOING_ARGS)
1604 return;
1606 for (i = 0; i < num_actuals; i++)
1608 tree type;
1609 machine_mode mode;
1611 if (TREE_CODE (args[i].tree_value) != CALL_EXPR)
1612 continue;
1614 /* If this is an addressable type, we cannot pre-evaluate it. */
1615 type = TREE_TYPE (args[i].tree_value);
1616 gcc_assert (!TREE_ADDRESSABLE (type));
1618 args[i].initial_value = args[i].value
1619 = expand_normal (args[i].tree_value);
1621 mode = TYPE_MODE (type);
1622 if (mode != args[i].mode)
1624 int unsignedp = args[i].unsignedp;
1625 args[i].value
1626 = convert_modes (args[i].mode, mode,
1627 args[i].value, args[i].unsignedp);
1629 /* CSE will replace this only if it contains args[i].value
1630 pseudo, so convert it down to the declared mode using
1631 a SUBREG. */
1632 if (REG_P (args[i].value)
1633 && GET_MODE_CLASS (args[i].mode) == MODE_INT
1634 && promote_mode (type, mode, &unsignedp) != args[i].mode)
1636 args[i].initial_value
1637 = gen_lowpart_SUBREG (mode, args[i].value);
1638 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
1639 SUBREG_PROMOTED_SET (args[i].initial_value, args[i].unsignedp);
1645 /* Given the current state of MUST_PREALLOCATE and information about
1646 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
1647 compute and return the final value for MUST_PREALLOCATE. */
1649 static int
1650 finalize_must_preallocate (int must_preallocate, int num_actuals,
1651 struct arg_data *args, struct args_size *args_size)
1653 /* See if we have or want to preallocate stack space.
1655 If we would have to push a partially-in-regs parm
1656 before other stack parms, preallocate stack space instead.
1658 If the size of some parm is not a multiple of the required stack
1659 alignment, we must preallocate.
1661 If the total size of arguments that would otherwise create a copy in
1662 a temporary (such as a CALL) is more than half the total argument list
1663 size, preallocation is faster.
1665 Another reason to preallocate is if we have a machine (like the m88k)
1666 where stack alignment is required to be maintained between every
1667 pair of insns, not just when the call is made. However, we assume here
1668 that such machines either do not have push insns (and hence preallocation
1669 would occur anyway) or the problem is taken care of with
1670 PUSH_ROUNDING. */
1672 if (! must_preallocate)
1674 int partial_seen = 0;
1675 int copy_to_evaluate_size = 0;
1676 int i;
1678 for (i = 0; i < num_actuals && ! must_preallocate; i++)
1680 if (args[i].partial > 0 && ! args[i].pass_on_stack)
1681 partial_seen = 1;
1682 else if (partial_seen && args[i].reg == 0)
1683 must_preallocate = 1;
1684 /* We preallocate in case there are bounds passed
1685 in the bounds table to have precomputed address
1686 for bounds association. */
1687 else if (POINTER_BOUNDS_P (args[i].tree_value)
1688 && !args[i].reg)
1689 must_preallocate = 1;
1691 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1692 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
1693 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
1694 || TREE_CODE (args[i].tree_value) == COND_EXPR
1695 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
1696 copy_to_evaluate_size
1697 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1700 if (copy_to_evaluate_size * 2 >= args_size->constant
1701 && args_size->constant > 0)
1702 must_preallocate = 1;
1704 return must_preallocate;
1707 /* If we preallocated stack space, compute the address of each argument
1708 and store it into the ARGS array.
1710 We need not ensure it is a valid memory address here; it will be
1711 validized when it is used.
1713 ARGBLOCK is an rtx for the address of the outgoing arguments. */
1715 static void
1716 compute_argument_addresses (struct arg_data *args, rtx argblock, int num_actuals)
1718 if (argblock)
1720 rtx arg_reg = argblock;
1721 int i, arg_offset = 0;
1723 if (GET_CODE (argblock) == PLUS)
1724 arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
1726 for (i = 0; i < num_actuals; i++)
1728 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
1729 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
1730 rtx addr;
1731 unsigned int align, boundary;
1732 unsigned int units_on_stack = 0;
1733 machine_mode partial_mode = VOIDmode;
1735 /* Skip this parm if it will not be passed on the stack. */
1736 if (! args[i].pass_on_stack
1737 && args[i].reg != 0
1738 && args[i].partial == 0)
1739 continue;
1741 /* Pointer Bounds are never passed on the stack. */
1742 if (POINTER_BOUNDS_P (args[i].tree_value))
1743 continue;
1745 if (CONST_INT_P (offset))
1746 addr = plus_constant (Pmode, arg_reg, INTVAL (offset));
1747 else
1748 addr = gen_rtx_PLUS (Pmode, arg_reg, offset);
1750 addr = plus_constant (Pmode, addr, arg_offset);
1752 if (args[i].partial != 0)
1754 /* Only part of the parameter is being passed on the stack.
1755 Generate a simple memory reference of the correct size. */
1756 units_on_stack = args[i].locate.size.constant;
1757 partial_mode = mode_for_size (units_on_stack * BITS_PER_UNIT,
1758 MODE_INT, 1);
1759 args[i].stack = gen_rtx_MEM (partial_mode, addr);
1760 set_mem_size (args[i].stack, units_on_stack);
1762 else
1764 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
1765 set_mem_attributes (args[i].stack,
1766 TREE_TYPE (args[i].tree_value), 1);
1768 align = BITS_PER_UNIT;
1769 boundary = args[i].locate.boundary;
1770 if (args[i].locate.where_pad != downward)
1771 align = boundary;
1772 else if (CONST_INT_P (offset))
1774 align = INTVAL (offset) * BITS_PER_UNIT | boundary;
1775 align = align & -align;
1777 set_mem_align (args[i].stack, align);
1779 if (CONST_INT_P (slot_offset))
1780 addr = plus_constant (Pmode, arg_reg, INTVAL (slot_offset));
1781 else
1782 addr = gen_rtx_PLUS (Pmode, arg_reg, slot_offset);
1784 addr = plus_constant (Pmode, addr, arg_offset);
1786 if (args[i].partial != 0)
1788 /* Only part of the parameter is being passed on the stack.
1789 Generate a simple memory reference of the correct size.
1791 args[i].stack_slot = gen_rtx_MEM (partial_mode, addr);
1792 set_mem_size (args[i].stack_slot, units_on_stack);
1794 else
1796 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
1797 set_mem_attributes (args[i].stack_slot,
1798 TREE_TYPE (args[i].tree_value), 1);
1800 set_mem_align (args[i].stack_slot, args[i].locate.boundary);
1802 /* Function incoming arguments may overlap with sibling call
1803 outgoing arguments and we cannot allow reordering of reads
1804 from function arguments with stores to outgoing arguments
1805 of sibling calls. */
1806 set_mem_alias_set (args[i].stack, 0);
1807 set_mem_alias_set (args[i].stack_slot, 0);
1812 /* Given a FNDECL and EXP, return an rtx suitable for use as a target address
1813 in a call instruction.
1815 FNDECL is the tree node for the target function. For an indirect call
1816 FNDECL will be NULL_TREE.
1818 ADDR is the operand 0 of CALL_EXPR for this call. */
1820 static rtx
1821 rtx_for_function_call (tree fndecl, tree addr)
1823 rtx funexp;
1825 /* Get the function to call, in the form of RTL. */
1826 if (fndecl)
1828 if (!TREE_USED (fndecl) && fndecl != current_function_decl)
1829 TREE_USED (fndecl) = 1;
1831 /* Get a SYMBOL_REF rtx for the function address. */
1832 funexp = XEXP (DECL_RTL (fndecl), 0);
1834 else
1835 /* Generate an rtx (probably a pseudo-register) for the address. */
1837 push_temp_slots ();
1838 funexp = expand_normal (addr);
1839 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
1841 return funexp;
1844 /* Internal state for internal_arg_pointer_based_exp and its helpers. */
1845 static struct
1847 /* Last insn that has been scanned by internal_arg_pointer_based_exp_scan,
1848 or NULL_RTX if none has been scanned yet. */
1849 rtx_insn *scan_start;
1850 /* Vector indexed by REGNO - FIRST_PSEUDO_REGISTER, recording if a pseudo is
1851 based on crtl->args.internal_arg_pointer. The element is NULL_RTX if the
1852 pseudo isn't based on it, a CONST_INT offset if the pseudo is based on it
1853 with fixed offset, or PC if this is with variable or unknown offset. */
1854 vec<rtx> cache;
1855 } internal_arg_pointer_exp_state;
1857 static rtx internal_arg_pointer_based_exp (const_rtx, bool);
1859 /* Helper function for internal_arg_pointer_based_exp. Scan insns in
1860 the tail call sequence, starting with first insn that hasn't been
1861 scanned yet, and note for each pseudo on the LHS whether it is based
1862 on crtl->args.internal_arg_pointer or not, and what offset from that
1863 that pointer it has. */
1865 static void
1866 internal_arg_pointer_based_exp_scan (void)
1868 rtx_insn *insn, *scan_start = internal_arg_pointer_exp_state.scan_start;
1870 if (scan_start == NULL_RTX)
1871 insn = get_insns ();
1872 else
1873 insn = NEXT_INSN (scan_start);
1875 while (insn)
1877 rtx set = single_set (insn);
1878 if (set && REG_P (SET_DEST (set)) && !HARD_REGISTER_P (SET_DEST (set)))
1880 rtx val = NULL_RTX;
1881 unsigned int idx = REGNO (SET_DEST (set)) - FIRST_PSEUDO_REGISTER;
1882 /* Punt on pseudos set multiple times. */
1883 if (idx < internal_arg_pointer_exp_state.cache.length ()
1884 && (internal_arg_pointer_exp_state.cache[idx]
1885 != NULL_RTX))
1886 val = pc_rtx;
1887 else
1888 val = internal_arg_pointer_based_exp (SET_SRC (set), false);
1889 if (val != NULL_RTX)
1891 if (idx >= internal_arg_pointer_exp_state.cache.length ())
1892 internal_arg_pointer_exp_state.cache
1893 .safe_grow_cleared (idx + 1);
1894 internal_arg_pointer_exp_state.cache[idx] = val;
1897 if (NEXT_INSN (insn) == NULL_RTX)
1898 scan_start = insn;
1899 insn = NEXT_INSN (insn);
1902 internal_arg_pointer_exp_state.scan_start = scan_start;
1905 /* Compute whether RTL is based on crtl->args.internal_arg_pointer. Return
1906 NULL_RTX if RTL isn't based on it, a CONST_INT offset if RTL is based on
1907 it with fixed offset, or PC if this is with variable or unknown offset.
1908 TOPLEVEL is true if the function is invoked at the topmost level. */
1910 static rtx
1911 internal_arg_pointer_based_exp (const_rtx rtl, bool toplevel)
1913 if (CONSTANT_P (rtl))
1914 return NULL_RTX;
1916 if (rtl == crtl->args.internal_arg_pointer)
1917 return const0_rtx;
1919 if (REG_P (rtl) && HARD_REGISTER_P (rtl))
1920 return NULL_RTX;
1922 if (GET_CODE (rtl) == PLUS && CONST_INT_P (XEXP (rtl, 1)))
1924 rtx val = internal_arg_pointer_based_exp (XEXP (rtl, 0), toplevel);
1925 if (val == NULL_RTX || val == pc_rtx)
1926 return val;
1927 return plus_constant (Pmode, val, INTVAL (XEXP (rtl, 1)));
1930 /* When called at the topmost level, scan pseudo assignments in between the
1931 last scanned instruction in the tail call sequence and the latest insn
1932 in that sequence. */
1933 if (toplevel)
1934 internal_arg_pointer_based_exp_scan ();
1936 if (REG_P (rtl))
1938 unsigned int idx = REGNO (rtl) - FIRST_PSEUDO_REGISTER;
1939 if (idx < internal_arg_pointer_exp_state.cache.length ())
1940 return internal_arg_pointer_exp_state.cache[idx];
1942 return NULL_RTX;
1945 subrtx_iterator::array_type array;
1946 FOR_EACH_SUBRTX (iter, array, rtl, NONCONST)
1948 const_rtx x = *iter;
1949 if (REG_P (x) && internal_arg_pointer_based_exp (x, false) != NULL_RTX)
1950 return pc_rtx;
1951 if (MEM_P (x))
1952 iter.skip_subrtxes ();
1955 return NULL_RTX;
1958 /* Return true if and only if SIZE storage units (usually bytes)
1959 starting from address ADDR overlap with already clobbered argument
1960 area. This function is used to determine if we should give up a
1961 sibcall. */
1963 static bool
1964 mem_overlaps_already_clobbered_arg_p (rtx addr, unsigned HOST_WIDE_INT size)
1966 HOST_WIDE_INT i;
1967 rtx val;
1969 if (bitmap_empty_p (stored_args_map))
1970 return false;
1971 val = internal_arg_pointer_based_exp (addr, true);
1972 if (val == NULL_RTX)
1973 return false;
1974 else if (val == pc_rtx)
1975 return true;
1976 else
1977 i = INTVAL (val);
1979 if (STACK_GROWS_DOWNWARD)
1980 i -= crtl->args.pretend_args_size;
1981 else
1982 i += crtl->args.pretend_args_size;
1985 if (ARGS_GROW_DOWNWARD)
1986 i = -i - size;
1988 if (size > 0)
1990 unsigned HOST_WIDE_INT k;
1992 for (k = 0; k < size; k++)
1993 if (i + k < SBITMAP_SIZE (stored_args_map)
1994 && bitmap_bit_p (stored_args_map, i + k))
1995 return true;
1998 return false;
2001 /* Do the register loads required for any wholly-register parms or any
2002 parms which are passed both on the stack and in a register. Their
2003 expressions were already evaluated.
2005 Mark all register-parms as living through the call, putting these USE
2006 insns in the CALL_INSN_FUNCTION_USAGE field.
2008 When IS_SIBCALL, perform the check_sibcall_argument_overlap
2009 checking, setting *SIBCALL_FAILURE if appropriate. */
2011 static void
2012 load_register_parameters (struct arg_data *args, int num_actuals,
2013 rtx *call_fusage, int flags, int is_sibcall,
2014 int *sibcall_failure)
2016 int i, j;
2018 for (i = 0; i < num_actuals; i++)
2020 rtx reg = ((flags & ECF_SIBCALL)
2021 ? args[i].tail_call_reg : args[i].reg);
2022 if (reg)
2024 int partial = args[i].partial;
2025 int nregs;
2026 int size = 0;
2027 rtx_insn *before_arg = get_last_insn ();
2028 /* Set non-negative if we must move a word at a time, even if
2029 just one word (e.g, partial == 4 && mode == DFmode). Set
2030 to -1 if we just use a normal move insn. This value can be
2031 zero if the argument is a zero size structure. */
2032 nregs = -1;
2033 if (GET_CODE (reg) == PARALLEL)
2035 else if (partial)
2037 gcc_assert (partial % UNITS_PER_WORD == 0);
2038 nregs = partial / UNITS_PER_WORD;
2040 else if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode)
2042 size = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
2043 nregs = (size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
2045 else
2046 size = GET_MODE_SIZE (args[i].mode);
2048 /* Handle calls that pass values in multiple non-contiguous
2049 locations. The Irix 6 ABI has examples of this. */
2051 if (GET_CODE (reg) == PARALLEL)
2052 emit_group_move (reg, args[i].parallel_value);
2054 /* If simple case, just do move. If normal partial, store_one_arg
2055 has already loaded the register for us. In all other cases,
2056 load the register(s) from memory. */
2058 else if (nregs == -1)
2060 emit_move_insn (reg, args[i].value);
2061 #ifdef BLOCK_REG_PADDING
2062 /* Handle case where we have a value that needs shifting
2063 up to the msb. eg. a QImode value and we're padding
2064 upward on a BYTES_BIG_ENDIAN machine. */
2065 if (size < UNITS_PER_WORD
2066 && (args[i].locate.where_pad
2067 == (BYTES_BIG_ENDIAN ? upward : downward)))
2069 rtx x;
2070 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2072 /* Assigning REG here rather than a temp makes CALL_FUSAGE
2073 report the whole reg as used. Strictly speaking, the
2074 call only uses SIZE bytes at the msb end, but it doesn't
2075 seem worth generating rtl to say that. */
2076 reg = gen_rtx_REG (word_mode, REGNO (reg));
2077 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
2078 if (x != reg)
2079 emit_move_insn (reg, x);
2081 #endif
2084 /* If we have pre-computed the values to put in the registers in
2085 the case of non-aligned structures, copy them in now. */
2087 else if (args[i].n_aligned_regs != 0)
2088 for (j = 0; j < args[i].n_aligned_regs; j++)
2089 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
2090 args[i].aligned_regs[j]);
2092 else if (partial == 0 || args[i].pass_on_stack)
2094 rtx mem = validize_mem (copy_rtx (args[i].value));
2096 /* Check for overlap with already clobbered argument area,
2097 providing that this has non-zero size. */
2098 if (is_sibcall
2099 && (size == 0
2100 || mem_overlaps_already_clobbered_arg_p
2101 (XEXP (args[i].value, 0), size)))
2102 *sibcall_failure = 1;
2104 if (size % UNITS_PER_WORD == 0
2105 || MEM_ALIGN (mem) % BITS_PER_WORD == 0)
2106 move_block_to_reg (REGNO (reg), mem, nregs, args[i].mode);
2107 else
2109 if (nregs > 1)
2110 move_block_to_reg (REGNO (reg), mem, nregs - 1,
2111 args[i].mode);
2112 rtx dest = gen_rtx_REG (word_mode, REGNO (reg) + nregs - 1);
2113 unsigned int bitoff = (nregs - 1) * BITS_PER_WORD;
2114 unsigned int bitsize = size * BITS_PER_UNIT - bitoff;
2115 rtx x = extract_bit_field (mem, bitsize, bitoff, 1,
2116 dest, word_mode, word_mode);
2117 if (BYTES_BIG_ENDIAN)
2118 x = expand_shift (LSHIFT_EXPR, word_mode, x,
2119 BITS_PER_WORD - bitsize, dest, 1);
2120 if (x != dest)
2121 emit_move_insn (dest, x);
2124 /* Handle a BLKmode that needs shifting. */
2125 if (nregs == 1 && size < UNITS_PER_WORD
2126 #ifdef BLOCK_REG_PADDING
2127 && args[i].locate.where_pad == downward
2128 #else
2129 && BYTES_BIG_ENDIAN
2130 #endif
2133 rtx dest = gen_rtx_REG (word_mode, REGNO (reg));
2134 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
2135 enum tree_code dir = (BYTES_BIG_ENDIAN
2136 ? RSHIFT_EXPR : LSHIFT_EXPR);
2137 rtx x;
2139 x = expand_shift (dir, word_mode, dest, shift, dest, 1);
2140 if (x != dest)
2141 emit_move_insn (dest, x);
2145 /* When a parameter is a block, and perhaps in other cases, it is
2146 possible that it did a load from an argument slot that was
2147 already clobbered. */
2148 if (is_sibcall
2149 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
2150 *sibcall_failure = 1;
2152 /* Handle calls that pass values in multiple non-contiguous
2153 locations. The Irix 6 ABI has examples of this. */
2154 if (GET_CODE (reg) == PARALLEL)
2155 use_group_regs (call_fusage, reg);
2156 else if (nregs == -1)
2157 use_reg_mode (call_fusage, reg,
2158 TYPE_MODE (TREE_TYPE (args[i].tree_value)));
2159 else if (nregs > 0)
2160 use_regs (call_fusage, REGNO (reg), nregs);
2165 /* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
2166 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
2167 bytes, then we would need to push some additional bytes to pad the
2168 arguments. So, we compute an adjust to the stack pointer for an
2169 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
2170 bytes. Then, when the arguments are pushed the stack will be perfectly
2171 aligned. ARGS_SIZE->CONSTANT is set to the number of bytes that should
2172 be popped after the call. Returns the adjustment. */
2174 static int
2175 combine_pending_stack_adjustment_and_call (int unadjusted_args_size,
2176 struct args_size *args_size,
2177 unsigned int preferred_unit_stack_boundary)
2179 /* The number of bytes to pop so that the stack will be
2180 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
2181 HOST_WIDE_INT adjustment;
2182 /* The alignment of the stack after the arguments are pushed, if we
2183 just pushed the arguments without adjust the stack here. */
2184 unsigned HOST_WIDE_INT unadjusted_alignment;
2186 unadjusted_alignment
2187 = ((stack_pointer_delta + unadjusted_args_size)
2188 % preferred_unit_stack_boundary);
2190 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
2191 as possible -- leaving just enough left to cancel out the
2192 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
2193 PENDING_STACK_ADJUST is non-negative, and congruent to
2194 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
2196 /* Begin by trying to pop all the bytes. */
2197 unadjusted_alignment
2198 = (unadjusted_alignment
2199 - (pending_stack_adjust % preferred_unit_stack_boundary));
2200 adjustment = pending_stack_adjust;
2201 /* Push enough additional bytes that the stack will be aligned
2202 after the arguments are pushed. */
2203 if (preferred_unit_stack_boundary > 1)
2205 if (unadjusted_alignment > 0)
2206 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
2207 else
2208 adjustment += unadjusted_alignment;
2211 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
2212 bytes after the call. The right number is the entire
2213 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
2214 by the arguments in the first place. */
2215 args_size->constant
2216 = pending_stack_adjust - adjustment + unadjusted_args_size;
2218 return adjustment;
2221 /* Scan X expression if it does not dereference any argument slots
2222 we already clobbered by tail call arguments (as noted in stored_args_map
2223 bitmap).
2224 Return nonzero if X expression dereferences such argument slots,
2225 zero otherwise. */
2227 static int
2228 check_sibcall_argument_overlap_1 (rtx x)
2230 RTX_CODE code;
2231 int i, j;
2232 const char *fmt;
2234 if (x == NULL_RTX)
2235 return 0;
2237 code = GET_CODE (x);
2239 /* We need not check the operands of the CALL expression itself. */
2240 if (code == CALL)
2241 return 0;
2243 if (code == MEM)
2244 return mem_overlaps_already_clobbered_arg_p (XEXP (x, 0),
2245 GET_MODE_SIZE (GET_MODE (x)));
2247 /* Scan all subexpressions. */
2248 fmt = GET_RTX_FORMAT (code);
2249 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2251 if (*fmt == 'e')
2253 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
2254 return 1;
2256 else if (*fmt == 'E')
2258 for (j = 0; j < XVECLEN (x, i); j++)
2259 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
2260 return 1;
2263 return 0;
2266 /* Scan sequence after INSN if it does not dereference any argument slots
2267 we already clobbered by tail call arguments (as noted in stored_args_map
2268 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
2269 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
2270 should be 0). Return nonzero if sequence after INSN dereferences such argument
2271 slots, zero otherwise. */
2273 static int
2274 check_sibcall_argument_overlap (rtx_insn *insn, struct arg_data *arg,
2275 int mark_stored_args_map)
2277 int low, high;
2279 if (insn == NULL_RTX)
2280 insn = get_insns ();
2281 else
2282 insn = NEXT_INSN (insn);
2284 for (; insn; insn = NEXT_INSN (insn))
2285 if (INSN_P (insn)
2286 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
2287 break;
2289 if (mark_stored_args_map)
2291 if (ARGS_GROW_DOWNWARD)
2292 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
2293 else
2294 low = arg->locate.slot_offset.constant;
2296 for (high = low + arg->locate.size.constant; low < high; low++)
2297 bitmap_set_bit (stored_args_map, low);
2299 return insn != NULL_RTX;
2302 /* Given that a function returns a value of mode MODE at the most
2303 significant end of hard register VALUE, shift VALUE left or right
2304 as specified by LEFT_P. Return true if some action was needed. */
2306 bool
2307 shift_return_value (machine_mode mode, bool left_p, rtx value)
2309 HOST_WIDE_INT shift;
2311 gcc_assert (REG_P (value) && HARD_REGISTER_P (value));
2312 shift = GET_MODE_BITSIZE (GET_MODE (value)) - GET_MODE_BITSIZE (mode);
2313 if (shift == 0)
2314 return false;
2316 /* Use ashr rather than lshr for right shifts. This is for the benefit
2317 of the MIPS port, which requires SImode values to be sign-extended
2318 when stored in 64-bit registers. */
2319 if (!force_expand_binop (GET_MODE (value), left_p ? ashl_optab : ashr_optab,
2320 value, GEN_INT (shift), value, 1, OPTAB_WIDEN))
2321 gcc_unreachable ();
2322 return true;
2325 /* If X is a likely-spilled register value, copy it to a pseudo
2326 register and return that register. Return X otherwise. */
2328 static rtx
2329 avoid_likely_spilled_reg (rtx x)
2331 rtx new_rtx;
2333 if (REG_P (x)
2334 && HARD_REGISTER_P (x)
2335 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (x))))
2337 /* Make sure that we generate a REG rather than a CONCAT.
2338 Moves into CONCATs can need nontrivial instructions,
2339 and the whole point of this function is to avoid
2340 using the hard register directly in such a situation. */
2341 generating_concat_p = 0;
2342 new_rtx = gen_reg_rtx (GET_MODE (x));
2343 generating_concat_p = 1;
2344 emit_move_insn (new_rtx, x);
2345 return new_rtx;
2347 return x;
2350 /* Generate all the code for a CALL_EXPR exp
2351 and return an rtx for its value.
2352 Store the value in TARGET (specified as an rtx) if convenient.
2353 If the value is stored in TARGET then TARGET is returned.
2354 If IGNORE is nonzero, then we ignore the value of the function call. */
2357 expand_call (tree exp, rtx target, int ignore)
2359 /* Nonzero if we are currently expanding a call. */
2360 static int currently_expanding_call = 0;
2362 /* RTX for the function to be called. */
2363 rtx funexp;
2364 /* Sequence of insns to perform a normal "call". */
2365 rtx_insn *normal_call_insns = NULL;
2366 /* Sequence of insns to perform a tail "call". */
2367 rtx_insn *tail_call_insns = NULL;
2368 /* Data type of the function. */
2369 tree funtype;
2370 tree type_arg_types;
2371 tree rettype;
2372 /* Declaration of the function being called,
2373 or 0 if the function is computed (not known by name). */
2374 tree fndecl = 0;
2375 /* The type of the function being called. */
2376 tree fntype;
2377 bool try_tail_call = CALL_EXPR_TAILCALL (exp);
2378 int pass;
2380 /* Register in which non-BLKmode value will be returned,
2381 or 0 if no value or if value is BLKmode. */
2382 rtx valreg;
2383 /* Register(s) in which bounds are returned. */
2384 rtx valbnd = NULL;
2385 /* Address where we should return a BLKmode value;
2386 0 if value not BLKmode. */
2387 rtx structure_value_addr = 0;
2388 /* Nonzero if that address is being passed by treating it as
2389 an extra, implicit first parameter. Otherwise,
2390 it is passed by being copied directly into struct_value_rtx. */
2391 int structure_value_addr_parm = 0;
2392 /* Holds the value of implicit argument for the struct value. */
2393 tree structure_value_addr_value = NULL_TREE;
2394 /* Size of aggregate value wanted, or zero if none wanted
2395 or if we are using the non-reentrant PCC calling convention
2396 or expecting the value in registers. */
2397 HOST_WIDE_INT struct_value_size = 0;
2398 /* Nonzero if called function returns an aggregate in memory PCC style,
2399 by returning the address of where to find it. */
2400 int pcc_struct_value = 0;
2401 rtx struct_value = 0;
2403 /* Number of actual parameters in this call, including struct value addr. */
2404 int num_actuals;
2405 /* Number of named args. Args after this are anonymous ones
2406 and they must all go on the stack. */
2407 int n_named_args;
2408 /* Number of complex actual arguments that need to be split. */
2409 int num_complex_actuals = 0;
2411 /* Vector of information about each argument.
2412 Arguments are numbered in the order they will be pushed,
2413 not the order they are written. */
2414 struct arg_data *args;
2416 /* Total size in bytes of all the stack-parms scanned so far. */
2417 struct args_size args_size;
2418 struct args_size adjusted_args_size;
2419 /* Size of arguments before any adjustments (such as rounding). */
2420 int unadjusted_args_size;
2421 /* Data on reg parms scanned so far. */
2422 CUMULATIVE_ARGS args_so_far_v;
2423 cumulative_args_t args_so_far;
2424 /* Nonzero if a reg parm has been scanned. */
2425 int reg_parm_seen;
2426 /* Nonzero if this is an indirect function call. */
2428 /* Nonzero if we must avoid push-insns in the args for this call.
2429 If stack space is allocated for register parameters, but not by the
2430 caller, then it is preallocated in the fixed part of the stack frame.
2431 So the entire argument block must then be preallocated (i.e., we
2432 ignore PUSH_ROUNDING in that case). */
2434 int must_preallocate = !PUSH_ARGS;
2436 /* Size of the stack reserved for parameter registers. */
2437 int reg_parm_stack_space = 0;
2439 /* Address of space preallocated for stack parms
2440 (on machines that lack push insns), or 0 if space not preallocated. */
2441 rtx argblock = 0;
2443 /* Mask of ECF_ and ERF_ flags. */
2444 int flags = 0;
2445 int return_flags = 0;
2446 #ifdef REG_PARM_STACK_SPACE
2447 /* Define the boundary of the register parm stack space that needs to be
2448 saved, if any. */
2449 int low_to_save, high_to_save;
2450 rtx save_area = 0; /* Place that it is saved */
2451 #endif
2453 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
2454 char *initial_stack_usage_map = stack_usage_map;
2455 char *stack_usage_map_buf = NULL;
2457 int old_stack_allocated;
2459 /* State variables to track stack modifications. */
2460 rtx old_stack_level = 0;
2461 int old_stack_arg_under_construction = 0;
2462 int old_pending_adj = 0;
2463 int old_inhibit_defer_pop = inhibit_defer_pop;
2465 /* Some stack pointer alterations we make are performed via
2466 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
2467 which we then also need to save/restore along the way. */
2468 int old_stack_pointer_delta = 0;
2470 rtx call_fusage;
2471 tree addr = CALL_EXPR_FN (exp);
2472 int i;
2473 /* The alignment of the stack, in bits. */
2474 unsigned HOST_WIDE_INT preferred_stack_boundary;
2475 /* The alignment of the stack, in bytes. */
2476 unsigned HOST_WIDE_INT preferred_unit_stack_boundary;
2477 /* The static chain value to use for this call. */
2478 rtx static_chain_value;
2479 /* See if this is "nothrow" function call. */
2480 if (TREE_NOTHROW (exp))
2481 flags |= ECF_NOTHROW;
2483 /* See if we can find a DECL-node for the actual function, and get the
2484 function attributes (flags) from the function decl or type node. */
2485 fndecl = get_callee_fndecl (exp);
2486 if (fndecl)
2488 fntype = TREE_TYPE (fndecl);
2489 flags |= flags_from_decl_or_type (fndecl);
2490 return_flags |= decl_return_flags (fndecl);
2492 else
2494 fntype = TREE_TYPE (TREE_TYPE (addr));
2495 flags |= flags_from_decl_or_type (fntype);
2497 rettype = TREE_TYPE (exp);
2499 struct_value = targetm.calls.struct_value_rtx (fntype, 0);
2501 /* Warn if this value is an aggregate type,
2502 regardless of which calling convention we are using for it. */
2503 if (AGGREGATE_TYPE_P (rettype))
2504 warning (OPT_Waggregate_return, "function call has aggregate value");
2506 /* If the result of a non looping pure or const function call is
2507 ignored (or void), and none of its arguments are volatile, we can
2508 avoid expanding the call and just evaluate the arguments for
2509 side-effects. */
2510 if ((flags & (ECF_CONST | ECF_PURE))
2511 && (!(flags & ECF_LOOPING_CONST_OR_PURE))
2512 && (ignore || target == const0_rtx
2513 || TYPE_MODE (rettype) == VOIDmode))
2515 bool volatilep = false;
2516 tree arg;
2517 call_expr_arg_iterator iter;
2519 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2520 if (TREE_THIS_VOLATILE (arg))
2522 volatilep = true;
2523 break;
2526 if (! volatilep)
2528 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2529 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
2530 return const0_rtx;
2534 #ifdef REG_PARM_STACK_SPACE
2535 reg_parm_stack_space = REG_PARM_STACK_SPACE (!fndecl ? fntype : fndecl);
2536 #endif
2538 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
2539 && reg_parm_stack_space > 0 && PUSH_ARGS)
2540 must_preallocate = 1;
2542 /* Set up a place to return a structure. */
2544 /* Cater to broken compilers. */
2545 if (aggregate_value_p (exp, fntype))
2547 /* This call returns a big structure. */
2548 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
2550 #ifdef PCC_STATIC_STRUCT_RETURN
2552 pcc_struct_value = 1;
2554 #else /* not PCC_STATIC_STRUCT_RETURN */
2556 struct_value_size = int_size_in_bytes (rettype);
2558 /* Even if it is semantically safe to use the target as the return
2559 slot, it may be not sufficiently aligned for the return type. */
2560 if (CALL_EXPR_RETURN_SLOT_OPT (exp)
2561 && target
2562 && MEM_P (target)
2563 && !(MEM_ALIGN (target) < TYPE_ALIGN (rettype)
2564 && SLOW_UNALIGNED_ACCESS (TYPE_MODE (rettype),
2565 MEM_ALIGN (target))))
2566 structure_value_addr = XEXP (target, 0);
2567 else
2569 /* For variable-sized objects, we must be called with a target
2570 specified. If we were to allocate space on the stack here,
2571 we would have no way of knowing when to free it. */
2572 rtx d = assign_temp (rettype, 1, 1);
2573 structure_value_addr = XEXP (d, 0);
2574 target = 0;
2577 #endif /* not PCC_STATIC_STRUCT_RETURN */
2580 /* Figure out the amount to which the stack should be aligned. */
2581 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
2582 if (fndecl)
2584 struct cgraph_rtl_info *i = cgraph_node::rtl_info (fndecl);
2585 /* Without automatic stack alignment, we can't increase preferred
2586 stack boundary. With automatic stack alignment, it is
2587 unnecessary since unless we can guarantee that all callers will
2588 align the outgoing stack properly, callee has to align its
2589 stack anyway. */
2590 if (i
2591 && i->preferred_incoming_stack_boundary
2592 && i->preferred_incoming_stack_boundary < preferred_stack_boundary)
2593 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
2596 /* Operand 0 is a pointer-to-function; get the type of the function. */
2597 funtype = TREE_TYPE (addr);
2598 gcc_assert (POINTER_TYPE_P (funtype));
2599 funtype = TREE_TYPE (funtype);
2601 /* Count whether there are actual complex arguments that need to be split
2602 into their real and imaginary parts. Munge the type_arg_types
2603 appropriately here as well. */
2604 if (targetm.calls.split_complex_arg)
2606 call_expr_arg_iterator iter;
2607 tree arg;
2608 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2610 tree type = TREE_TYPE (arg);
2611 if (type && TREE_CODE (type) == COMPLEX_TYPE
2612 && targetm.calls.split_complex_arg (type))
2613 num_complex_actuals++;
2615 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
2617 else
2618 type_arg_types = TYPE_ARG_TYPES (funtype);
2620 if (flags & ECF_MAY_BE_ALLOCA)
2621 cfun->calls_alloca = 1;
2623 /* If struct_value_rtx is 0, it means pass the address
2624 as if it were an extra parameter. Put the argument expression
2625 in structure_value_addr_value. */
2626 if (structure_value_addr && struct_value == 0)
2628 /* If structure_value_addr is a REG other than
2629 virtual_outgoing_args_rtx, we can use always use it. If it
2630 is not a REG, we must always copy it into a register.
2631 If it is virtual_outgoing_args_rtx, we must copy it to another
2632 register in some cases. */
2633 rtx temp = (!REG_P (structure_value_addr)
2634 || (ACCUMULATE_OUTGOING_ARGS
2635 && stack_arg_under_construction
2636 && structure_value_addr == virtual_outgoing_args_rtx)
2637 ? copy_addr_to_reg (convert_memory_address
2638 (Pmode, structure_value_addr))
2639 : structure_value_addr);
2641 structure_value_addr_value =
2642 make_tree (build_pointer_type (TREE_TYPE (funtype)), temp);
2643 structure_value_addr_parm = CALL_WITH_BOUNDS_P (exp) ? 2 : 1;
2646 /* Count the arguments and set NUM_ACTUALS. */
2647 num_actuals =
2648 call_expr_nargs (exp) + num_complex_actuals + structure_value_addr_parm;
2650 /* Compute number of named args.
2651 First, do a raw count of the args for INIT_CUMULATIVE_ARGS. */
2653 if (type_arg_types != 0)
2654 n_named_args
2655 = (list_length (type_arg_types)
2656 /* Count the struct value address, if it is passed as a parm. */
2657 + structure_value_addr_parm);
2658 else
2659 /* If we know nothing, treat all args as named. */
2660 n_named_args = num_actuals;
2662 /* Start updating where the next arg would go.
2664 On some machines (such as the PA) indirect calls have a different
2665 calling convention than normal calls. The fourth argument in
2666 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
2667 or not. */
2668 INIT_CUMULATIVE_ARGS (args_so_far_v, funtype, NULL_RTX, fndecl, n_named_args);
2669 args_so_far = pack_cumulative_args (&args_so_far_v);
2671 /* Now possibly adjust the number of named args.
2672 Normally, don't include the last named arg if anonymous args follow.
2673 We do include the last named arg if
2674 targetm.calls.strict_argument_naming() returns nonzero.
2675 (If no anonymous args follow, the result of list_length is actually
2676 one too large. This is harmless.)
2678 If targetm.calls.pretend_outgoing_varargs_named() returns
2679 nonzero, and targetm.calls.strict_argument_naming() returns zero,
2680 this machine will be able to place unnamed args that were passed
2681 in registers into the stack. So treat all args as named. This
2682 allows the insns emitting for a specific argument list to be
2683 independent of the function declaration.
2685 If targetm.calls.pretend_outgoing_varargs_named() returns zero,
2686 we do not have any reliable way to pass unnamed args in
2687 registers, so we must force them into memory. */
2689 if (type_arg_types != 0
2690 && targetm.calls.strict_argument_naming (args_so_far))
2692 else if (type_arg_types != 0
2693 && ! targetm.calls.pretend_outgoing_varargs_named (args_so_far))
2694 /* Don't include the last named arg. */
2695 --n_named_args;
2696 else
2697 /* Treat all args as named. */
2698 n_named_args = num_actuals;
2700 /* Make a vector to hold all the information about each arg. */
2701 args = XALLOCAVEC (struct arg_data, num_actuals);
2702 memset (args, 0, num_actuals * sizeof (struct arg_data));
2704 /* Build up entries in the ARGS array, compute the size of the
2705 arguments into ARGS_SIZE, etc. */
2706 initialize_argument_information (num_actuals, args, &args_size,
2707 n_named_args, exp,
2708 structure_value_addr_value, fndecl, fntype,
2709 args_so_far, reg_parm_stack_space,
2710 &old_stack_level, &old_pending_adj,
2711 &must_preallocate, &flags,
2712 &try_tail_call, CALL_FROM_THUNK_P (exp));
2714 if (args_size.var)
2715 must_preallocate = 1;
2717 /* Now make final decision about preallocating stack space. */
2718 must_preallocate = finalize_must_preallocate (must_preallocate,
2719 num_actuals, args,
2720 &args_size);
2722 /* If the structure value address will reference the stack pointer, we
2723 must stabilize it. We don't need to do this if we know that we are
2724 not going to adjust the stack pointer in processing this call. */
2726 if (structure_value_addr
2727 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
2728 || reg_mentioned_p (virtual_outgoing_args_rtx,
2729 structure_value_addr))
2730 && (args_size.var
2731 || (!ACCUMULATE_OUTGOING_ARGS && args_size.constant)))
2732 structure_value_addr = copy_to_reg (structure_value_addr);
2734 /* Tail calls can make things harder to debug, and we've traditionally
2735 pushed these optimizations into -O2. Don't try if we're already
2736 expanding a call, as that means we're an argument. Don't try if
2737 there's cleanups, as we know there's code to follow the call. */
2739 if (currently_expanding_call++ != 0
2740 || !flag_optimize_sibling_calls
2741 || args_size.var
2742 || dbg_cnt (tail_call) == false)
2743 try_tail_call = 0;
2745 /* Rest of purposes for tail call optimizations to fail. */
2746 if (
2747 #ifdef HAVE_sibcall_epilogue
2748 !HAVE_sibcall_epilogue
2749 #else
2751 #endif
2752 || !try_tail_call
2753 /* Doing sibling call optimization needs some work, since
2754 structure_value_addr can be allocated on the stack.
2755 It does not seem worth the effort since few optimizable
2756 sibling calls will return a structure. */
2757 || structure_value_addr != NULL_RTX
2758 #ifdef REG_PARM_STACK_SPACE
2759 /* If outgoing reg parm stack space changes, we can not do sibcall. */
2760 || (OUTGOING_REG_PARM_STACK_SPACE (funtype)
2761 != OUTGOING_REG_PARM_STACK_SPACE (TREE_TYPE (current_function_decl)))
2762 || (reg_parm_stack_space != REG_PARM_STACK_SPACE (current_function_decl))
2763 #endif
2764 /* Check whether the target is able to optimize the call
2765 into a sibcall. */
2766 || !targetm.function_ok_for_sibcall (fndecl, exp)
2767 /* Functions that do not return exactly once may not be sibcall
2768 optimized. */
2769 || (flags & (ECF_RETURNS_TWICE | ECF_NORETURN))
2770 || TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr)))
2771 /* If the called function is nested in the current one, it might access
2772 some of the caller's arguments, but could clobber them beforehand if
2773 the argument areas are shared. */
2774 || (fndecl && decl_function_context (fndecl) == current_function_decl)
2775 /* If this function requires more stack slots than the current
2776 function, we cannot change it into a sibling call.
2777 crtl->args.pretend_args_size is not part of the
2778 stack allocated by our caller. */
2779 || args_size.constant > (crtl->args.size
2780 - crtl->args.pretend_args_size)
2781 /* If the callee pops its own arguments, then it must pop exactly
2782 the same number of arguments as the current function. */
2783 || (targetm.calls.return_pops_args (fndecl, funtype, args_size.constant)
2784 != targetm.calls.return_pops_args (current_function_decl,
2785 TREE_TYPE (current_function_decl),
2786 crtl->args.size))
2787 || !lang_hooks.decls.ok_for_sibcall (fndecl))
2788 try_tail_call = 0;
2790 /* Check if caller and callee disagree in promotion of function
2791 return value. */
2792 if (try_tail_call)
2794 machine_mode caller_mode, caller_promoted_mode;
2795 machine_mode callee_mode, callee_promoted_mode;
2796 int caller_unsignedp, callee_unsignedp;
2797 tree caller_res = DECL_RESULT (current_function_decl);
2799 caller_unsignedp = TYPE_UNSIGNED (TREE_TYPE (caller_res));
2800 caller_mode = DECL_MODE (caller_res);
2801 callee_unsignedp = TYPE_UNSIGNED (TREE_TYPE (funtype));
2802 callee_mode = TYPE_MODE (TREE_TYPE (funtype));
2803 caller_promoted_mode
2804 = promote_function_mode (TREE_TYPE (caller_res), caller_mode,
2805 &caller_unsignedp,
2806 TREE_TYPE (current_function_decl), 1);
2807 callee_promoted_mode
2808 = promote_function_mode (TREE_TYPE (funtype), callee_mode,
2809 &callee_unsignedp,
2810 funtype, 1);
2811 if (caller_mode != VOIDmode
2812 && (caller_promoted_mode != callee_promoted_mode
2813 || ((caller_mode != caller_promoted_mode
2814 || callee_mode != callee_promoted_mode)
2815 && (caller_unsignedp != callee_unsignedp
2816 || GET_MODE_BITSIZE (caller_mode)
2817 < GET_MODE_BITSIZE (callee_mode)))))
2818 try_tail_call = 0;
2821 /* Ensure current function's preferred stack boundary is at least
2822 what we need. Stack alignment may also increase preferred stack
2823 boundary. */
2824 if (crtl->preferred_stack_boundary < preferred_stack_boundary)
2825 crtl->preferred_stack_boundary = preferred_stack_boundary;
2826 else
2827 preferred_stack_boundary = crtl->preferred_stack_boundary;
2829 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
2831 /* We want to make two insn chains; one for a sibling call, the other
2832 for a normal call. We will select one of the two chains after
2833 initial RTL generation is complete. */
2834 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
2836 int sibcall_failure = 0;
2837 /* We want to emit any pending stack adjustments before the tail
2838 recursion "call". That way we know any adjustment after the tail
2839 recursion call can be ignored if we indeed use the tail
2840 call expansion. */
2841 saved_pending_stack_adjust save;
2842 rtx_insn *insns, *before_call, *after_args;
2843 rtx next_arg_reg;
2845 if (pass == 0)
2847 /* State variables we need to save and restore between
2848 iterations. */
2849 save_pending_stack_adjust (&save);
2851 if (pass)
2852 flags &= ~ECF_SIBCALL;
2853 else
2854 flags |= ECF_SIBCALL;
2856 /* Other state variables that we must reinitialize each time
2857 through the loop (that are not initialized by the loop itself). */
2858 argblock = 0;
2859 call_fusage = 0;
2861 /* Start a new sequence for the normal call case.
2863 From this point on, if the sibling call fails, we want to set
2864 sibcall_failure instead of continuing the loop. */
2865 start_sequence ();
2867 /* Don't let pending stack adjusts add up to too much.
2868 Also, do all pending adjustments now if there is any chance
2869 this might be a call to alloca or if we are expanding a sibling
2870 call sequence.
2871 Also do the adjustments before a throwing call, otherwise
2872 exception handling can fail; PR 19225. */
2873 if (pending_stack_adjust >= 32
2874 || (pending_stack_adjust > 0
2875 && (flags & ECF_MAY_BE_ALLOCA))
2876 || (pending_stack_adjust > 0
2877 && flag_exceptions && !(flags & ECF_NOTHROW))
2878 || pass == 0)
2879 do_pending_stack_adjust ();
2881 /* Precompute any arguments as needed. */
2882 if (pass)
2883 precompute_arguments (num_actuals, args);
2885 /* Now we are about to start emitting insns that can be deleted
2886 if a libcall is deleted. */
2887 if (pass && (flags & ECF_MALLOC))
2888 start_sequence ();
2890 if (pass == 0 && crtl->stack_protect_guard)
2891 stack_protect_epilogue ();
2893 adjusted_args_size = args_size;
2894 /* Compute the actual size of the argument block required. The variable
2895 and constant sizes must be combined, the size may have to be rounded,
2896 and there may be a minimum required size. When generating a sibcall
2897 pattern, do not round up, since we'll be re-using whatever space our
2898 caller provided. */
2899 unadjusted_args_size
2900 = compute_argument_block_size (reg_parm_stack_space,
2901 &adjusted_args_size,
2902 fndecl, fntype,
2903 (pass == 0 ? 0
2904 : preferred_stack_boundary));
2906 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
2908 /* The argument block when performing a sibling call is the
2909 incoming argument block. */
2910 if (pass == 0)
2912 argblock = crtl->args.internal_arg_pointer;
2913 if (STACK_GROWS_DOWNWARD)
2914 argblock
2915 = plus_constant (Pmode, argblock, crtl->args.pretend_args_size);
2916 else
2917 argblock
2918 = plus_constant (Pmode, argblock, -crtl->args.pretend_args_size);
2920 stored_args_map = sbitmap_alloc (args_size.constant);
2921 bitmap_clear (stored_args_map);
2924 /* If we have no actual push instructions, or shouldn't use them,
2925 make space for all args right now. */
2926 else if (adjusted_args_size.var != 0)
2928 if (old_stack_level == 0)
2930 emit_stack_save (SAVE_BLOCK, &old_stack_level);
2931 old_stack_pointer_delta = stack_pointer_delta;
2932 old_pending_adj = pending_stack_adjust;
2933 pending_stack_adjust = 0;
2934 /* stack_arg_under_construction says whether a stack arg is
2935 being constructed at the old stack level. Pushing the stack
2936 gets a clean outgoing argument block. */
2937 old_stack_arg_under_construction = stack_arg_under_construction;
2938 stack_arg_under_construction = 0;
2940 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
2941 if (flag_stack_usage_info)
2942 current_function_has_unbounded_dynamic_stack_size = 1;
2944 else
2946 /* Note that we must go through the motions of allocating an argument
2947 block even if the size is zero because we may be storing args
2948 in the area reserved for register arguments, which may be part of
2949 the stack frame. */
2951 int needed = adjusted_args_size.constant;
2953 /* Store the maximum argument space used. It will be pushed by
2954 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
2955 checking). */
2957 if (needed > crtl->outgoing_args_size)
2958 crtl->outgoing_args_size = needed;
2960 if (must_preallocate)
2962 if (ACCUMULATE_OUTGOING_ARGS)
2964 /* Since the stack pointer will never be pushed, it is
2965 possible for the evaluation of a parm to clobber
2966 something we have already written to the stack.
2967 Since most function calls on RISC machines do not use
2968 the stack, this is uncommon, but must work correctly.
2970 Therefore, we save any area of the stack that was already
2971 written and that we are using. Here we set up to do this
2972 by making a new stack usage map from the old one. The
2973 actual save will be done by store_one_arg.
2975 Another approach might be to try to reorder the argument
2976 evaluations to avoid this conflicting stack usage. */
2978 /* Since we will be writing into the entire argument area,
2979 the map must be allocated for its entire size, not just
2980 the part that is the responsibility of the caller. */
2981 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
2982 needed += reg_parm_stack_space;
2984 if (ARGS_GROW_DOWNWARD)
2985 highest_outgoing_arg_in_use
2986 = MAX (initial_highest_arg_in_use, needed + 1);
2987 else
2988 highest_outgoing_arg_in_use
2989 = MAX (initial_highest_arg_in_use, needed);
2991 free (stack_usage_map_buf);
2992 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
2993 stack_usage_map = stack_usage_map_buf;
2995 if (initial_highest_arg_in_use)
2996 memcpy (stack_usage_map, initial_stack_usage_map,
2997 initial_highest_arg_in_use);
2999 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3000 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
3001 (highest_outgoing_arg_in_use
3002 - initial_highest_arg_in_use));
3003 needed = 0;
3005 /* The address of the outgoing argument list must not be
3006 copied to a register here, because argblock would be left
3007 pointing to the wrong place after the call to
3008 allocate_dynamic_stack_space below. */
3010 argblock = virtual_outgoing_args_rtx;
3012 else
3014 if (inhibit_defer_pop == 0)
3016 /* Try to reuse some or all of the pending_stack_adjust
3017 to get this space. */
3018 needed
3019 = (combine_pending_stack_adjustment_and_call
3020 (unadjusted_args_size,
3021 &adjusted_args_size,
3022 preferred_unit_stack_boundary));
3024 /* combine_pending_stack_adjustment_and_call computes
3025 an adjustment before the arguments are allocated.
3026 Account for them and see whether or not the stack
3027 needs to go up or down. */
3028 needed = unadjusted_args_size - needed;
3030 if (needed < 0)
3032 /* We're releasing stack space. */
3033 /* ??? We can avoid any adjustment at all if we're
3034 already aligned. FIXME. */
3035 pending_stack_adjust = -needed;
3036 do_pending_stack_adjust ();
3037 needed = 0;
3039 else
3040 /* We need to allocate space. We'll do that in
3041 push_block below. */
3042 pending_stack_adjust = 0;
3045 /* Special case this because overhead of `push_block' in
3046 this case is non-trivial. */
3047 if (needed == 0)
3048 argblock = virtual_outgoing_args_rtx;
3049 else
3051 argblock = push_block (GEN_INT (needed), 0, 0);
3052 if (ARGS_GROW_DOWNWARD)
3053 argblock = plus_constant (Pmode, argblock, needed);
3056 /* We only really need to call `copy_to_reg' in the case
3057 where push insns are going to be used to pass ARGBLOCK
3058 to a function call in ARGS. In that case, the stack
3059 pointer changes value from the allocation point to the
3060 call point, and hence the value of
3061 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
3062 as well always do it. */
3063 argblock = copy_to_reg (argblock);
3068 if (ACCUMULATE_OUTGOING_ARGS)
3070 /* The save/restore code in store_one_arg handles all
3071 cases except one: a constructor call (including a C
3072 function returning a BLKmode struct) to initialize
3073 an argument. */
3074 if (stack_arg_under_construction)
3076 rtx push_size
3077 = GEN_INT (adjusted_args_size.constant
3078 + (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype
3079 : TREE_TYPE (fndecl))) ? 0
3080 : reg_parm_stack_space));
3081 if (old_stack_level == 0)
3083 emit_stack_save (SAVE_BLOCK, &old_stack_level);
3084 old_stack_pointer_delta = stack_pointer_delta;
3085 old_pending_adj = pending_stack_adjust;
3086 pending_stack_adjust = 0;
3087 /* stack_arg_under_construction says whether a stack
3088 arg is being constructed at the old stack level.
3089 Pushing the stack gets a clean outgoing argument
3090 block. */
3091 old_stack_arg_under_construction
3092 = stack_arg_under_construction;
3093 stack_arg_under_construction = 0;
3094 /* Make a new map for the new argument list. */
3095 free (stack_usage_map_buf);
3096 stack_usage_map_buf = XCNEWVEC (char, highest_outgoing_arg_in_use);
3097 stack_usage_map = stack_usage_map_buf;
3098 highest_outgoing_arg_in_use = 0;
3100 /* We can pass TRUE as the 4th argument because we just
3101 saved the stack pointer and will restore it right after
3102 the call. */
3103 allocate_dynamic_stack_space (push_size, 0,
3104 BIGGEST_ALIGNMENT, true);
3107 /* If argument evaluation might modify the stack pointer,
3108 copy the address of the argument list to a register. */
3109 for (i = 0; i < num_actuals; i++)
3110 if (args[i].pass_on_stack)
3112 argblock = copy_addr_to_reg (argblock);
3113 break;
3117 compute_argument_addresses (args, argblock, num_actuals);
3119 /* Perform stack alignment before the first push (the last arg). */
3120 if (argblock == 0
3121 && adjusted_args_size.constant > reg_parm_stack_space
3122 && adjusted_args_size.constant != unadjusted_args_size)
3124 /* When the stack adjustment is pending, we get better code
3125 by combining the adjustments. */
3126 if (pending_stack_adjust
3127 && ! inhibit_defer_pop)
3129 pending_stack_adjust
3130 = (combine_pending_stack_adjustment_and_call
3131 (unadjusted_args_size,
3132 &adjusted_args_size,
3133 preferred_unit_stack_boundary));
3134 do_pending_stack_adjust ();
3136 else if (argblock == 0)
3137 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
3138 - unadjusted_args_size));
3140 /* Now that the stack is properly aligned, pops can't safely
3141 be deferred during the evaluation of the arguments. */
3142 NO_DEFER_POP;
3144 /* Record the maximum pushed stack space size. We need to delay
3145 doing it this far to take into account the optimization done
3146 by combine_pending_stack_adjustment_and_call. */
3147 if (flag_stack_usage_info
3148 && !ACCUMULATE_OUTGOING_ARGS
3149 && pass
3150 && adjusted_args_size.var == 0)
3152 int pushed = adjusted_args_size.constant + pending_stack_adjust;
3153 if (pushed > current_function_pushed_stack_size)
3154 current_function_pushed_stack_size = pushed;
3157 funexp = rtx_for_function_call (fndecl, addr);
3159 /* Precompute all register parameters. It isn't safe to compute anything
3160 once we have started filling any specific hard regs. */
3161 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
3163 if (CALL_EXPR_STATIC_CHAIN (exp))
3164 static_chain_value = expand_normal (CALL_EXPR_STATIC_CHAIN (exp));
3165 else
3166 static_chain_value = 0;
3168 #ifdef REG_PARM_STACK_SPACE
3169 /* Save the fixed argument area if it's part of the caller's frame and
3170 is clobbered by argument setup for this call. */
3171 if (ACCUMULATE_OUTGOING_ARGS && pass)
3172 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3173 &low_to_save, &high_to_save);
3174 #endif
3176 /* Now store (and compute if necessary) all non-register parms.
3177 These come before register parms, since they can require block-moves,
3178 which could clobber the registers used for register parms.
3179 Parms which have partial registers are not stored here,
3180 but we do preallocate space here if they want that. */
3182 for (i = 0; i < num_actuals; i++)
3184 /* Delay bounds until all other args are stored. */
3185 if (POINTER_BOUNDS_P (args[i].tree_value))
3186 continue;
3187 else if (args[i].reg == 0 || args[i].pass_on_stack)
3189 rtx_insn *before_arg = get_last_insn ();
3191 /* We don't allow passing huge (> 2^30 B) arguments
3192 by value. It would cause an overflow later on. */
3193 if (adjusted_args_size.constant
3194 >= (1 << (HOST_BITS_PER_INT - 2)))
3196 sorry ("passing too large argument on stack");
3197 continue;
3200 if (store_one_arg (&args[i], argblock, flags,
3201 adjusted_args_size.var != 0,
3202 reg_parm_stack_space)
3203 || (pass == 0
3204 && check_sibcall_argument_overlap (before_arg,
3205 &args[i], 1)))
3206 sibcall_failure = 1;
3209 if (args[i].stack)
3210 call_fusage
3211 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
3212 gen_rtx_USE (VOIDmode, args[i].stack),
3213 call_fusage);
3216 /* If we have a parm that is passed in registers but not in memory
3217 and whose alignment does not permit a direct copy into registers,
3218 make a group of pseudos that correspond to each register that we
3219 will later fill. */
3220 if (STRICT_ALIGNMENT)
3221 store_unaligned_arguments_into_pseudos (args, num_actuals);
3223 /* Now store any partially-in-registers parm.
3224 This is the last place a block-move can happen. */
3225 if (reg_parm_seen)
3226 for (i = 0; i < num_actuals; i++)
3227 if (args[i].partial != 0 && ! args[i].pass_on_stack)
3229 rtx_insn *before_arg = get_last_insn ();
3231 /* On targets with weird calling conventions (e.g. PA) it's
3232 hard to ensure that all cases of argument overlap between
3233 stack and registers work. Play it safe and bail out. */
3234 if (ARGS_GROW_DOWNWARD && !STACK_GROWS_DOWNWARD)
3236 sibcall_failure = 1;
3237 break;
3240 if (store_one_arg (&args[i], argblock, flags,
3241 adjusted_args_size.var != 0,
3242 reg_parm_stack_space)
3243 || (pass == 0
3244 && check_sibcall_argument_overlap (before_arg,
3245 &args[i], 1)))
3246 sibcall_failure = 1;
3249 bool any_regs = false;
3250 for (i = 0; i < num_actuals; i++)
3251 if (args[i].reg != NULL_RTX)
3253 any_regs = true;
3254 targetm.calls.call_args (args[i].reg, funtype);
3256 if (!any_regs)
3257 targetm.calls.call_args (pc_rtx, funtype);
3259 /* Figure out the register where the value, if any, will come back. */
3260 valreg = 0;
3261 valbnd = 0;
3262 if (TYPE_MODE (rettype) != VOIDmode
3263 && ! structure_value_addr)
3265 if (pcc_struct_value)
3267 valreg = hard_function_value (build_pointer_type (rettype),
3268 fndecl, NULL, (pass == 0));
3269 if (CALL_WITH_BOUNDS_P (exp))
3270 valbnd = targetm.calls.
3271 chkp_function_value_bounds (build_pointer_type (rettype),
3272 fndecl, (pass == 0));
3274 else
3276 valreg = hard_function_value (rettype, fndecl, fntype,
3277 (pass == 0));
3278 if (CALL_WITH_BOUNDS_P (exp))
3279 valbnd = targetm.calls.chkp_function_value_bounds (rettype,
3280 fndecl,
3281 (pass == 0));
3284 /* If VALREG is a PARALLEL whose first member has a zero
3285 offset, use that. This is for targets such as m68k that
3286 return the same value in multiple places. */
3287 if (GET_CODE (valreg) == PARALLEL)
3289 rtx elem = XVECEXP (valreg, 0, 0);
3290 rtx where = XEXP (elem, 0);
3291 rtx offset = XEXP (elem, 1);
3292 if (offset == const0_rtx
3293 && GET_MODE (where) == GET_MODE (valreg))
3294 valreg = where;
3298 /* Store all bounds not passed in registers. */
3299 for (i = 0; i < num_actuals; i++)
3301 if (POINTER_BOUNDS_P (args[i].tree_value)
3302 && !args[i].reg)
3303 store_bounds (&args[i],
3304 args[i].pointer_arg == -1
3305 ? NULL
3306 : &args[args[i].pointer_arg]);
3309 /* If register arguments require space on the stack and stack space
3310 was not preallocated, allocate stack space here for arguments
3311 passed in registers. */
3312 if (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
3313 && !ACCUMULATE_OUTGOING_ARGS
3314 && must_preallocate == 0 && reg_parm_stack_space > 0)
3315 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
3317 /* Pass the function the address in which to return a
3318 structure value. */
3319 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
3321 structure_value_addr
3322 = convert_memory_address (Pmode, structure_value_addr);
3323 emit_move_insn (struct_value,
3324 force_reg (Pmode,
3325 force_operand (structure_value_addr,
3326 NULL_RTX)));
3328 if (REG_P (struct_value))
3329 use_reg (&call_fusage, struct_value);
3332 after_args = get_last_insn ();
3333 funexp = prepare_call_address (fndecl ? fndecl : fntype, funexp,
3334 static_chain_value, &call_fusage,
3335 reg_parm_seen, pass == 0);
3337 load_register_parameters (args, num_actuals, &call_fusage, flags,
3338 pass == 0, &sibcall_failure);
3340 /* Save a pointer to the last insn before the call, so that we can
3341 later safely search backwards to find the CALL_INSN. */
3342 before_call = get_last_insn ();
3344 /* Set up next argument register. For sibling calls on machines
3345 with register windows this should be the incoming register. */
3346 if (pass == 0)
3347 next_arg_reg = targetm.calls.function_incoming_arg (args_so_far,
3348 VOIDmode,
3349 void_type_node,
3350 true);
3351 else
3352 next_arg_reg = targetm.calls.function_arg (args_so_far,
3353 VOIDmode, void_type_node,
3354 true);
3356 if (pass == 1 && (return_flags & ERF_RETURNS_ARG))
3358 int arg_nr = return_flags & ERF_RETURN_ARG_MASK;
3359 arg_nr = num_actuals - arg_nr - 1;
3360 if (arg_nr >= 0
3361 && arg_nr < num_actuals
3362 && args[arg_nr].reg
3363 && valreg
3364 && REG_P (valreg)
3365 && GET_MODE (args[arg_nr].reg) == GET_MODE (valreg))
3366 call_fusage
3367 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[arg_nr].tree_value)),
3368 gen_rtx_SET (valreg, args[arg_nr].reg),
3369 call_fusage);
3371 /* All arguments and registers used for the call must be set up by
3372 now! */
3374 /* Stack must be properly aligned now. */
3375 gcc_assert (!pass
3376 || !(stack_pointer_delta % preferred_unit_stack_boundary));
3378 /* Generate the actual call instruction. */
3379 emit_call_1 (funexp, exp, fndecl, funtype, unadjusted_args_size,
3380 adjusted_args_size.constant, struct_value_size,
3381 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
3382 flags, args_so_far);
3384 if (flag_ipa_ra)
3386 rtx_call_insn *last;
3387 rtx datum = NULL_RTX;
3388 if (fndecl != NULL_TREE)
3390 datum = XEXP (DECL_RTL (fndecl), 0);
3391 gcc_assert (datum != NULL_RTX
3392 && GET_CODE (datum) == SYMBOL_REF);
3394 last = last_call_insn ();
3395 add_reg_note (last, REG_CALL_DECL, datum);
3398 /* If the call setup or the call itself overlaps with anything
3399 of the argument setup we probably clobbered our call address.
3400 In that case we can't do sibcalls. */
3401 if (pass == 0
3402 && check_sibcall_argument_overlap (after_args, 0, 0))
3403 sibcall_failure = 1;
3405 /* If a non-BLKmode value is returned at the most significant end
3406 of a register, shift the register right by the appropriate amount
3407 and update VALREG accordingly. BLKmode values are handled by the
3408 group load/store machinery below. */
3409 if (!structure_value_addr
3410 && !pcc_struct_value
3411 && TYPE_MODE (rettype) != VOIDmode
3412 && TYPE_MODE (rettype) != BLKmode
3413 && REG_P (valreg)
3414 && targetm.calls.return_in_msb (rettype))
3416 if (shift_return_value (TYPE_MODE (rettype), false, valreg))
3417 sibcall_failure = 1;
3418 valreg = gen_rtx_REG (TYPE_MODE (rettype), REGNO (valreg));
3421 if (pass && (flags & ECF_MALLOC))
3423 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3424 rtx_insn *last, *insns;
3426 /* The return value from a malloc-like function is a pointer. */
3427 if (TREE_CODE (rettype) == POINTER_TYPE)
3428 mark_reg_pointer (temp, MALLOC_ABI_ALIGNMENT);
3430 emit_move_insn (temp, valreg);
3432 /* The return value from a malloc-like function can not alias
3433 anything else. */
3434 last = get_last_insn ();
3435 add_reg_note (last, REG_NOALIAS, temp);
3437 /* Write out the sequence. */
3438 insns = get_insns ();
3439 end_sequence ();
3440 emit_insn (insns);
3441 valreg = temp;
3444 /* For calls to `setjmp', etc., inform
3445 function.c:setjmp_warnings that it should complain if
3446 nonvolatile values are live. For functions that cannot
3447 return, inform flow that control does not fall through. */
3449 if ((flags & ECF_NORETURN) || pass == 0)
3451 /* The barrier must be emitted
3452 immediately after the CALL_INSN. Some ports emit more
3453 than just a CALL_INSN above, so we must search for it here. */
3455 rtx_insn *last = get_last_insn ();
3456 while (!CALL_P (last))
3458 last = PREV_INSN (last);
3459 /* There was no CALL_INSN? */
3460 gcc_assert (last != before_call);
3463 emit_barrier_after (last);
3465 /* Stack adjustments after a noreturn call are dead code.
3466 However when NO_DEFER_POP is in effect, we must preserve
3467 stack_pointer_delta. */
3468 if (inhibit_defer_pop == 0)
3470 stack_pointer_delta = old_stack_allocated;
3471 pending_stack_adjust = 0;
3475 /* If value type not void, return an rtx for the value. */
3477 if (TYPE_MODE (rettype) == VOIDmode
3478 || ignore)
3479 target = const0_rtx;
3480 else if (structure_value_addr)
3482 if (target == 0 || !MEM_P (target))
3484 target
3485 = gen_rtx_MEM (TYPE_MODE (rettype),
3486 memory_address (TYPE_MODE (rettype),
3487 structure_value_addr));
3488 set_mem_attributes (target, rettype, 1);
3491 else if (pcc_struct_value)
3493 /* This is the special C++ case where we need to
3494 know what the true target was. We take care to
3495 never use this value more than once in one expression. */
3496 target = gen_rtx_MEM (TYPE_MODE (rettype),
3497 copy_to_reg (valreg));
3498 set_mem_attributes (target, rettype, 1);
3500 /* Handle calls that return values in multiple non-contiguous locations.
3501 The Irix 6 ABI has examples of this. */
3502 else if (GET_CODE (valreg) == PARALLEL)
3504 if (target == 0)
3505 target = emit_group_move_into_temps (valreg);
3506 else if (rtx_equal_p (target, valreg))
3508 else if (GET_CODE (target) == PARALLEL)
3509 /* Handle the result of a emit_group_move_into_temps
3510 call in the previous pass. */
3511 emit_group_move (target, valreg);
3512 else
3513 emit_group_store (target, valreg, rettype,
3514 int_size_in_bytes (rettype));
3516 else if (target
3517 && GET_MODE (target) == TYPE_MODE (rettype)
3518 && GET_MODE (target) == GET_MODE (valreg))
3520 bool may_overlap = false;
3522 /* We have to copy a return value in a CLASS_LIKELY_SPILLED hard
3523 reg to a plain register. */
3524 if (!REG_P (target) || HARD_REGISTER_P (target))
3525 valreg = avoid_likely_spilled_reg (valreg);
3527 /* If TARGET is a MEM in the argument area, and we have
3528 saved part of the argument area, then we can't store
3529 directly into TARGET as it may get overwritten when we
3530 restore the argument save area below. Don't work too
3531 hard though and simply force TARGET to a register if it
3532 is a MEM; the optimizer is quite likely to sort it out. */
3533 if (ACCUMULATE_OUTGOING_ARGS && pass && MEM_P (target))
3534 for (i = 0; i < num_actuals; i++)
3535 if (args[i].save_area)
3537 may_overlap = true;
3538 break;
3541 if (may_overlap)
3542 target = copy_to_reg (valreg);
3543 else
3545 /* TARGET and VALREG cannot be equal at this point
3546 because the latter would not have
3547 REG_FUNCTION_VALUE_P true, while the former would if
3548 it were referring to the same register.
3550 If they refer to the same register, this move will be
3551 a no-op, except when function inlining is being
3552 done. */
3553 emit_move_insn (target, valreg);
3555 /* If we are setting a MEM, this code must be executed.
3556 Since it is emitted after the call insn, sibcall
3557 optimization cannot be performed in that case. */
3558 if (MEM_P (target))
3559 sibcall_failure = 1;
3562 else
3563 target = copy_to_reg (avoid_likely_spilled_reg (valreg));
3565 /* If we promoted this return value, make the proper SUBREG.
3566 TARGET might be const0_rtx here, so be careful. */
3567 if (REG_P (target)
3568 && TYPE_MODE (rettype) != BLKmode
3569 && GET_MODE (target) != TYPE_MODE (rettype))
3571 tree type = rettype;
3572 int unsignedp = TYPE_UNSIGNED (type);
3573 int offset = 0;
3574 machine_mode pmode;
3576 /* Ensure we promote as expected, and get the new unsignedness. */
3577 pmode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
3578 funtype, 1);
3579 gcc_assert (GET_MODE (target) == pmode);
3581 if ((WORDS_BIG_ENDIAN || BYTES_BIG_ENDIAN)
3582 && (GET_MODE_SIZE (GET_MODE (target))
3583 > GET_MODE_SIZE (TYPE_MODE (type))))
3585 offset = GET_MODE_SIZE (GET_MODE (target))
3586 - GET_MODE_SIZE (TYPE_MODE (type));
3587 if (! BYTES_BIG_ENDIAN)
3588 offset = (offset / UNITS_PER_WORD) * UNITS_PER_WORD;
3589 else if (! WORDS_BIG_ENDIAN)
3590 offset %= UNITS_PER_WORD;
3593 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
3594 SUBREG_PROMOTED_VAR_P (target) = 1;
3595 SUBREG_PROMOTED_SET (target, unsignedp);
3598 /* If size of args is variable or this was a constructor call for a stack
3599 argument, restore saved stack-pointer value. */
3601 if (old_stack_level)
3603 rtx_insn *prev = get_last_insn ();
3605 emit_stack_restore (SAVE_BLOCK, old_stack_level);
3606 stack_pointer_delta = old_stack_pointer_delta;
3608 fixup_args_size_notes (prev, get_last_insn (), stack_pointer_delta);
3610 pending_stack_adjust = old_pending_adj;
3611 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
3612 stack_arg_under_construction = old_stack_arg_under_construction;
3613 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3614 stack_usage_map = initial_stack_usage_map;
3615 sibcall_failure = 1;
3617 else if (ACCUMULATE_OUTGOING_ARGS && pass)
3619 #ifdef REG_PARM_STACK_SPACE
3620 if (save_area)
3621 restore_fixed_argument_area (save_area, argblock,
3622 high_to_save, low_to_save);
3623 #endif
3625 /* If we saved any argument areas, restore them. */
3626 for (i = 0; i < num_actuals; i++)
3627 if (args[i].save_area)
3629 machine_mode save_mode = GET_MODE (args[i].save_area);
3630 rtx stack_area
3631 = gen_rtx_MEM (save_mode,
3632 memory_address (save_mode,
3633 XEXP (args[i].stack_slot, 0)));
3635 if (save_mode != BLKmode)
3636 emit_move_insn (stack_area, args[i].save_area);
3637 else
3638 emit_block_move (stack_area, args[i].save_area,
3639 GEN_INT (args[i].locate.size.constant),
3640 BLOCK_OP_CALL_PARM);
3643 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3644 stack_usage_map = initial_stack_usage_map;
3647 /* If this was alloca, record the new stack level. */
3648 if (flags & ECF_MAY_BE_ALLOCA)
3649 record_new_stack_level ();
3651 /* Free up storage we no longer need. */
3652 for (i = 0; i < num_actuals; ++i)
3653 free (args[i].aligned_regs);
3655 targetm.calls.end_call_args ();
3657 insns = get_insns ();
3658 end_sequence ();
3660 if (pass == 0)
3662 tail_call_insns = insns;
3664 /* Restore the pending stack adjustment now that we have
3665 finished generating the sibling call sequence. */
3667 restore_pending_stack_adjust (&save);
3669 /* Prepare arg structure for next iteration. */
3670 for (i = 0; i < num_actuals; i++)
3672 args[i].value = 0;
3673 args[i].aligned_regs = 0;
3674 args[i].stack = 0;
3677 sbitmap_free (stored_args_map);
3678 internal_arg_pointer_exp_state.scan_start = NULL;
3679 internal_arg_pointer_exp_state.cache.release ();
3681 else
3683 normal_call_insns = insns;
3685 /* Verify that we've deallocated all the stack we used. */
3686 gcc_assert ((flags & ECF_NORETURN)
3687 || (old_stack_allocated
3688 == stack_pointer_delta - pending_stack_adjust));
3691 /* If something prevents making this a sibling call,
3692 zero out the sequence. */
3693 if (sibcall_failure)
3694 tail_call_insns = NULL;
3695 else
3696 break;
3699 /* If tail call production succeeded, we need to remove REG_EQUIV notes on
3700 arguments too, as argument area is now clobbered by the call. */
3701 if (tail_call_insns)
3703 emit_insn (tail_call_insns);
3704 crtl->tail_call_emit = true;
3706 else
3707 emit_insn (normal_call_insns);
3709 currently_expanding_call--;
3711 free (stack_usage_map_buf);
3713 /* Join result with returned bounds so caller may use them if needed. */
3714 target = chkp_join_splitted_slot (target, valbnd);
3716 return target;
3719 /* A sibling call sequence invalidates any REG_EQUIV notes made for
3720 this function's incoming arguments.
3722 At the start of RTL generation we know the only REG_EQUIV notes
3723 in the rtl chain are those for incoming arguments, so we can look
3724 for REG_EQUIV notes between the start of the function and the
3725 NOTE_INSN_FUNCTION_BEG.
3727 This is (slight) overkill. We could keep track of the highest
3728 argument we clobber and be more selective in removing notes, but it
3729 does not seem to be worth the effort. */
3731 void
3732 fixup_tail_calls (void)
3734 rtx_insn *insn;
3736 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3738 rtx note;
3740 /* There are never REG_EQUIV notes for the incoming arguments
3741 after the NOTE_INSN_FUNCTION_BEG note, so stop if we see it. */
3742 if (NOTE_P (insn)
3743 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
3744 break;
3746 note = find_reg_note (insn, REG_EQUIV, 0);
3747 if (note)
3748 remove_note (insn, note);
3749 note = find_reg_note (insn, REG_EQUIV, 0);
3750 gcc_assert (!note);
3754 /* Traverse a list of TYPES and expand all complex types into their
3755 components. */
3756 static tree
3757 split_complex_types (tree types)
3759 tree p;
3761 /* Before allocating memory, check for the common case of no complex. */
3762 for (p = types; p; p = TREE_CHAIN (p))
3764 tree type = TREE_VALUE (p);
3765 if (TREE_CODE (type) == COMPLEX_TYPE
3766 && targetm.calls.split_complex_arg (type))
3767 goto found;
3769 return types;
3771 found:
3772 types = copy_list (types);
3774 for (p = types; p; p = TREE_CHAIN (p))
3776 tree complex_type = TREE_VALUE (p);
3778 if (TREE_CODE (complex_type) == COMPLEX_TYPE
3779 && targetm.calls.split_complex_arg (complex_type))
3781 tree next, imag;
3783 /* Rewrite complex type with component type. */
3784 TREE_VALUE (p) = TREE_TYPE (complex_type);
3785 next = TREE_CHAIN (p);
3787 /* Add another component type for the imaginary part. */
3788 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
3789 TREE_CHAIN (p) = imag;
3790 TREE_CHAIN (imag) = next;
3792 /* Skip the newly created node. */
3793 p = TREE_CHAIN (p);
3797 return types;
3800 /* Output a library call to function FUN (a SYMBOL_REF rtx).
3801 The RETVAL parameter specifies whether return value needs to be saved, other
3802 parameters are documented in the emit_library_call function below. */
3804 static rtx
3805 emit_library_call_value_1 (int retval, rtx orgfun, rtx value,
3806 enum libcall_type fn_type,
3807 machine_mode outmode, int nargs, va_list p)
3809 /* Total size in bytes of all the stack-parms scanned so far. */
3810 struct args_size args_size;
3811 /* Size of arguments before any adjustments (such as rounding). */
3812 struct args_size original_args_size;
3813 int argnum;
3814 rtx fun;
3815 /* Todo, choose the correct decl type of orgfun. Sadly this information
3816 isn't present here, so we default to native calling abi here. */
3817 tree fndecl ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3818 tree fntype ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3819 int count;
3820 rtx argblock = 0;
3821 CUMULATIVE_ARGS args_so_far_v;
3822 cumulative_args_t args_so_far;
3823 struct arg
3825 rtx value;
3826 machine_mode mode;
3827 rtx reg;
3828 int partial;
3829 struct locate_and_pad_arg_data locate;
3830 rtx save_area;
3832 struct arg *argvec;
3833 int old_inhibit_defer_pop = inhibit_defer_pop;
3834 rtx call_fusage = 0;
3835 rtx mem_value = 0;
3836 rtx valreg;
3837 int pcc_struct_value = 0;
3838 int struct_value_size = 0;
3839 int flags;
3840 int reg_parm_stack_space = 0;
3841 int needed;
3842 rtx_insn *before_call;
3843 bool have_push_fusage;
3844 tree tfom; /* type_for_mode (outmode, 0) */
3846 #ifdef REG_PARM_STACK_SPACE
3847 /* Define the boundary of the register parm stack space that needs to be
3848 save, if any. */
3849 int low_to_save = 0, high_to_save = 0;
3850 rtx save_area = 0; /* Place that it is saved. */
3851 #endif
3853 /* Size of the stack reserved for parameter registers. */
3854 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3855 char *initial_stack_usage_map = stack_usage_map;
3856 char *stack_usage_map_buf = NULL;
3858 rtx struct_value = targetm.calls.struct_value_rtx (0, 0);
3860 #ifdef REG_PARM_STACK_SPACE
3861 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
3862 #endif
3864 /* By default, library functions can not throw. */
3865 flags = ECF_NOTHROW;
3867 switch (fn_type)
3869 case LCT_NORMAL:
3870 break;
3871 case LCT_CONST:
3872 flags |= ECF_CONST;
3873 break;
3874 case LCT_PURE:
3875 flags |= ECF_PURE;
3876 break;
3877 case LCT_NORETURN:
3878 flags |= ECF_NORETURN;
3879 break;
3880 case LCT_THROW:
3881 flags = ECF_NORETURN;
3882 break;
3883 case LCT_RETURNS_TWICE:
3884 flags = ECF_RETURNS_TWICE;
3885 break;
3887 fun = orgfun;
3889 /* Ensure current function's preferred stack boundary is at least
3890 what we need. */
3891 if (crtl->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
3892 crtl->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
3894 /* If this kind of value comes back in memory,
3895 decide where in memory it should come back. */
3896 if (outmode != VOIDmode)
3898 tfom = lang_hooks.types.type_for_mode (outmode, 0);
3899 if (aggregate_value_p (tfom, 0))
3901 #ifdef PCC_STATIC_STRUCT_RETURN
3902 rtx pointer_reg
3903 = hard_function_value (build_pointer_type (tfom), 0, 0, 0);
3904 mem_value = gen_rtx_MEM (outmode, pointer_reg);
3905 pcc_struct_value = 1;
3906 if (value == 0)
3907 value = gen_reg_rtx (outmode);
3908 #else /* not PCC_STATIC_STRUCT_RETURN */
3909 struct_value_size = GET_MODE_SIZE (outmode);
3910 if (value != 0 && MEM_P (value))
3911 mem_value = value;
3912 else
3913 mem_value = assign_temp (tfom, 1, 1);
3914 #endif
3915 /* This call returns a big structure. */
3916 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
3919 else
3920 tfom = void_type_node;
3922 /* ??? Unfinished: must pass the memory address as an argument. */
3924 /* Copy all the libcall-arguments out of the varargs data
3925 and into a vector ARGVEC.
3927 Compute how to pass each argument. We only support a very small subset
3928 of the full argument passing conventions to limit complexity here since
3929 library functions shouldn't have many args. */
3931 argvec = XALLOCAVEC (struct arg, nargs + 1);
3932 memset (argvec, 0, (nargs + 1) * sizeof (struct arg));
3934 #ifdef INIT_CUMULATIVE_LIBCALL_ARGS
3935 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far_v, outmode, fun);
3936 #else
3937 INIT_CUMULATIVE_ARGS (args_so_far_v, NULL_TREE, fun, 0, nargs);
3938 #endif
3939 args_so_far = pack_cumulative_args (&args_so_far_v);
3941 args_size.constant = 0;
3942 args_size.var = 0;
3944 count = 0;
3946 push_temp_slots ();
3948 /* If there's a structure value address to be passed,
3949 either pass it in the special place, or pass it as an extra argument. */
3950 if (mem_value && struct_value == 0 && ! pcc_struct_value)
3952 rtx addr = XEXP (mem_value, 0);
3954 nargs++;
3956 /* Make sure it is a reasonable operand for a move or push insn. */
3957 if (!REG_P (addr) && !MEM_P (addr)
3958 && !(CONSTANT_P (addr)
3959 && targetm.legitimate_constant_p (Pmode, addr)))
3960 addr = force_operand (addr, NULL_RTX);
3962 argvec[count].value = addr;
3963 argvec[count].mode = Pmode;
3964 argvec[count].partial = 0;
3966 argvec[count].reg = targetm.calls.function_arg (args_so_far,
3967 Pmode, NULL_TREE, true);
3968 gcc_assert (targetm.calls.arg_partial_bytes (args_so_far, Pmode,
3969 NULL_TREE, 1) == 0);
3971 locate_and_pad_parm (Pmode, NULL_TREE,
3972 #ifdef STACK_PARMS_IN_REG_PARM_AREA
3974 #else
3975 argvec[count].reg != 0,
3976 #endif
3977 reg_parm_stack_space, 0,
3978 NULL_TREE, &args_size, &argvec[count].locate);
3980 if (argvec[count].reg == 0 || argvec[count].partial != 0
3981 || reg_parm_stack_space > 0)
3982 args_size.constant += argvec[count].locate.size.constant;
3984 targetm.calls.function_arg_advance (args_so_far, Pmode, (tree) 0, true);
3986 count++;
3989 for (; count < nargs; count++)
3991 rtx val = va_arg (p, rtx);
3992 machine_mode mode = (machine_mode) va_arg (p, int);
3993 int unsigned_p = 0;
3995 /* We cannot convert the arg value to the mode the library wants here;
3996 must do it earlier where we know the signedness of the arg. */
3997 gcc_assert (mode != BLKmode
3998 && (GET_MODE (val) == mode || GET_MODE (val) == VOIDmode));
4000 /* Make sure it is a reasonable operand for a move or push insn. */
4001 if (!REG_P (val) && !MEM_P (val)
4002 && !(CONSTANT_P (val) && targetm.legitimate_constant_p (mode, val)))
4003 val = force_operand (val, NULL_RTX);
4005 if (pass_by_reference (&args_so_far_v, mode, NULL_TREE, 1))
4007 rtx slot;
4008 int must_copy
4009 = !reference_callee_copied (&args_so_far_v, mode, NULL_TREE, 1);
4011 /* If this was a CONST function, it is now PURE since it now
4012 reads memory. */
4013 if (flags & ECF_CONST)
4015 flags &= ~ECF_CONST;
4016 flags |= ECF_PURE;
4019 if (MEM_P (val) && !must_copy)
4021 tree val_expr = MEM_EXPR (val);
4022 if (val_expr)
4023 mark_addressable (val_expr);
4024 slot = val;
4026 else
4028 slot = assign_temp (lang_hooks.types.type_for_mode (mode, 0),
4029 1, 1);
4030 emit_move_insn (slot, val);
4033 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
4034 gen_rtx_USE (VOIDmode, slot),
4035 call_fusage);
4036 if (must_copy)
4037 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
4038 gen_rtx_CLOBBER (VOIDmode,
4039 slot),
4040 call_fusage);
4042 mode = Pmode;
4043 val = force_operand (XEXP (slot, 0), NULL_RTX);
4046 mode = promote_function_mode (NULL_TREE, mode, &unsigned_p, NULL_TREE, 0);
4047 argvec[count].mode = mode;
4048 argvec[count].value = convert_modes (mode, GET_MODE (val), val, unsigned_p);
4049 argvec[count].reg = targetm.calls.function_arg (args_so_far, mode,
4050 NULL_TREE, true);
4052 argvec[count].partial
4053 = targetm.calls.arg_partial_bytes (args_so_far, mode, NULL_TREE, 1);
4055 if (argvec[count].reg == 0
4056 || argvec[count].partial != 0
4057 || reg_parm_stack_space > 0)
4059 locate_and_pad_parm (mode, NULL_TREE,
4060 #ifdef STACK_PARMS_IN_REG_PARM_AREA
4062 #else
4063 argvec[count].reg != 0,
4064 #endif
4065 reg_parm_stack_space, argvec[count].partial,
4066 NULL_TREE, &args_size, &argvec[count].locate);
4067 args_size.constant += argvec[count].locate.size.constant;
4068 gcc_assert (!argvec[count].locate.size.var);
4070 #ifdef BLOCK_REG_PADDING
4071 else
4072 /* The argument is passed entirely in registers. See at which
4073 end it should be padded. */
4074 argvec[count].locate.where_pad =
4075 BLOCK_REG_PADDING (mode, NULL_TREE,
4076 GET_MODE_SIZE (mode) <= UNITS_PER_WORD);
4077 #endif
4079 targetm.calls.function_arg_advance (args_so_far, mode, (tree) 0, true);
4082 /* If this machine requires an external definition for library
4083 functions, write one out. */
4084 assemble_external_libcall (fun);
4086 original_args_size = args_size;
4087 args_size.constant = (((args_size.constant
4088 + stack_pointer_delta
4089 + STACK_BYTES - 1)
4090 / STACK_BYTES
4091 * STACK_BYTES)
4092 - stack_pointer_delta);
4094 args_size.constant = MAX (args_size.constant,
4095 reg_parm_stack_space);
4097 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
4098 args_size.constant -= reg_parm_stack_space;
4100 if (args_size.constant > crtl->outgoing_args_size)
4101 crtl->outgoing_args_size = args_size.constant;
4103 if (flag_stack_usage_info && !ACCUMULATE_OUTGOING_ARGS)
4105 int pushed = args_size.constant + pending_stack_adjust;
4106 if (pushed > current_function_pushed_stack_size)
4107 current_function_pushed_stack_size = pushed;
4110 if (ACCUMULATE_OUTGOING_ARGS)
4112 /* Since the stack pointer will never be pushed, it is possible for
4113 the evaluation of a parm to clobber something we have already
4114 written to the stack. Since most function calls on RISC machines
4115 do not use the stack, this is uncommon, but must work correctly.
4117 Therefore, we save any area of the stack that was already written
4118 and that we are using. Here we set up to do this by making a new
4119 stack usage map from the old one.
4121 Another approach might be to try to reorder the argument
4122 evaluations to avoid this conflicting stack usage. */
4124 needed = args_size.constant;
4126 /* Since we will be writing into the entire argument area, the
4127 map must be allocated for its entire size, not just the part that
4128 is the responsibility of the caller. */
4129 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
4130 needed += reg_parm_stack_space;
4132 if (ARGS_GROW_DOWNWARD)
4133 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
4134 needed + 1);
4135 else
4136 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use, needed);
4138 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
4139 stack_usage_map = stack_usage_map_buf;
4141 if (initial_highest_arg_in_use)
4142 memcpy (stack_usage_map, initial_stack_usage_map,
4143 initial_highest_arg_in_use);
4145 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
4146 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
4147 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
4148 needed = 0;
4150 /* We must be careful to use virtual regs before they're instantiated,
4151 and real regs afterwards. Loop optimization, for example, can create
4152 new libcalls after we've instantiated the virtual regs, and if we
4153 use virtuals anyway, they won't match the rtl patterns. */
4155 if (virtuals_instantiated)
4156 argblock = plus_constant (Pmode, stack_pointer_rtx,
4157 STACK_POINTER_OFFSET);
4158 else
4159 argblock = virtual_outgoing_args_rtx;
4161 else
4163 if (!PUSH_ARGS)
4164 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
4167 /* We push args individually in reverse order, perform stack alignment
4168 before the first push (the last arg). */
4169 if (argblock == 0)
4170 anti_adjust_stack (GEN_INT (args_size.constant
4171 - original_args_size.constant));
4173 argnum = nargs - 1;
4175 #ifdef REG_PARM_STACK_SPACE
4176 if (ACCUMULATE_OUTGOING_ARGS)
4178 /* The argument list is the property of the called routine and it
4179 may clobber it. If the fixed area has been used for previous
4180 parameters, we must save and restore it. */
4181 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
4182 &low_to_save, &high_to_save);
4184 #endif
4186 /* When expanding a normal call, args are stored in push order,
4187 which is the reverse of what we have here. */
4188 bool any_regs = false;
4189 for (int i = nargs; i-- > 0; )
4190 if (argvec[i].reg != NULL_RTX)
4192 targetm.calls.call_args (argvec[i].reg, NULL_TREE);
4193 any_regs = true;
4195 if (!any_regs)
4196 targetm.calls.call_args (pc_rtx, NULL_TREE);
4198 /* Push the args that need to be pushed. */
4200 have_push_fusage = false;
4202 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4203 are to be pushed. */
4204 for (count = 0; count < nargs; count++, argnum--)
4206 machine_mode mode = argvec[argnum].mode;
4207 rtx val = argvec[argnum].value;
4208 rtx reg = argvec[argnum].reg;
4209 int partial = argvec[argnum].partial;
4210 unsigned int parm_align = argvec[argnum].locate.boundary;
4211 int lower_bound = 0, upper_bound = 0, i;
4213 if (! (reg != 0 && partial == 0))
4215 rtx use;
4217 if (ACCUMULATE_OUTGOING_ARGS)
4219 /* If this is being stored into a pre-allocated, fixed-size,
4220 stack area, save any previous data at that location. */
4222 if (ARGS_GROW_DOWNWARD)
4224 /* stack_slot is negative, but we want to index stack_usage_map
4225 with positive values. */
4226 upper_bound = -argvec[argnum].locate.slot_offset.constant + 1;
4227 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
4229 else
4231 lower_bound = argvec[argnum].locate.slot_offset.constant;
4232 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
4235 i = lower_bound;
4236 /* Don't worry about things in the fixed argument area;
4237 it has already been saved. */
4238 if (i < reg_parm_stack_space)
4239 i = reg_parm_stack_space;
4240 while (i < upper_bound && stack_usage_map[i] == 0)
4241 i++;
4243 if (i < upper_bound)
4245 /* We need to make a save area. */
4246 unsigned int size
4247 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
4248 machine_mode save_mode
4249 = mode_for_size (size, MODE_INT, 1);
4250 rtx adr
4251 = plus_constant (Pmode, argblock,
4252 argvec[argnum].locate.offset.constant);
4253 rtx stack_area
4254 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
4256 if (save_mode == BLKmode)
4258 argvec[argnum].save_area
4259 = assign_stack_temp (BLKmode,
4260 argvec[argnum].locate.size.constant
4263 emit_block_move (validize_mem
4264 (copy_rtx (argvec[argnum].save_area)),
4265 stack_area,
4266 GEN_INT (argvec[argnum].locate.size.constant),
4267 BLOCK_OP_CALL_PARM);
4269 else
4271 argvec[argnum].save_area = gen_reg_rtx (save_mode);
4273 emit_move_insn (argvec[argnum].save_area, stack_area);
4278 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, parm_align,
4279 partial, reg, 0, argblock,
4280 GEN_INT (argvec[argnum].locate.offset.constant),
4281 reg_parm_stack_space,
4282 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad), false);
4284 /* Now mark the segment we just used. */
4285 if (ACCUMULATE_OUTGOING_ARGS)
4286 for (i = lower_bound; i < upper_bound; i++)
4287 stack_usage_map[i] = 1;
4289 NO_DEFER_POP;
4291 /* Indicate argument access so that alias.c knows that these
4292 values are live. */
4293 if (argblock)
4294 use = plus_constant (Pmode, argblock,
4295 argvec[argnum].locate.offset.constant);
4296 else if (have_push_fusage)
4297 continue;
4298 else
4300 /* When arguments are pushed, trying to tell alias.c where
4301 exactly this argument is won't work, because the
4302 auto-increment causes confusion. So we merely indicate
4303 that we access something with a known mode somewhere on
4304 the stack. */
4305 use = gen_rtx_PLUS (Pmode, stack_pointer_rtx,
4306 gen_rtx_SCRATCH (Pmode));
4307 have_push_fusage = true;
4309 use = gen_rtx_MEM (argvec[argnum].mode, use);
4310 use = gen_rtx_USE (VOIDmode, use);
4311 call_fusage = gen_rtx_EXPR_LIST (VOIDmode, use, call_fusage);
4315 argnum = nargs - 1;
4317 fun = prepare_call_address (NULL, fun, NULL, &call_fusage, 0, 0);
4319 /* Now load any reg parms into their regs. */
4321 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4322 are to be pushed. */
4323 for (count = 0; count < nargs; count++, argnum--)
4325 machine_mode mode = argvec[argnum].mode;
4326 rtx val = argvec[argnum].value;
4327 rtx reg = argvec[argnum].reg;
4328 int partial = argvec[argnum].partial;
4329 #ifdef BLOCK_REG_PADDING
4330 int size = 0;
4331 #endif
4333 /* Handle calls that pass values in multiple non-contiguous
4334 locations. The PA64 has examples of this for library calls. */
4335 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4336 emit_group_load (reg, val, NULL_TREE, GET_MODE_SIZE (mode));
4337 else if (reg != 0 && partial == 0)
4339 emit_move_insn (reg, val);
4340 #ifdef BLOCK_REG_PADDING
4341 size = GET_MODE_SIZE (argvec[argnum].mode);
4343 /* Copied from load_register_parameters. */
4345 /* Handle case where we have a value that needs shifting
4346 up to the msb. eg. a QImode value and we're padding
4347 upward on a BYTES_BIG_ENDIAN machine. */
4348 if (size < UNITS_PER_WORD
4349 && (argvec[argnum].locate.where_pad
4350 == (BYTES_BIG_ENDIAN ? upward : downward)))
4352 rtx x;
4353 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
4355 /* Assigning REG here rather than a temp makes CALL_FUSAGE
4356 report the whole reg as used. Strictly speaking, the
4357 call only uses SIZE bytes at the msb end, but it doesn't
4358 seem worth generating rtl to say that. */
4359 reg = gen_rtx_REG (word_mode, REGNO (reg));
4360 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
4361 if (x != reg)
4362 emit_move_insn (reg, x);
4364 #endif
4367 NO_DEFER_POP;
4370 /* Any regs containing parms remain in use through the call. */
4371 for (count = 0; count < nargs; count++)
4373 rtx reg = argvec[count].reg;
4374 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4375 use_group_regs (&call_fusage, reg);
4376 else if (reg != 0)
4378 int partial = argvec[count].partial;
4379 if (partial)
4381 int nregs;
4382 gcc_assert (partial % UNITS_PER_WORD == 0);
4383 nregs = partial / UNITS_PER_WORD;
4384 use_regs (&call_fusage, REGNO (reg), nregs);
4386 else
4387 use_reg (&call_fusage, reg);
4391 /* Pass the function the address in which to return a structure value. */
4392 if (mem_value != 0 && struct_value != 0 && ! pcc_struct_value)
4394 emit_move_insn (struct_value,
4395 force_reg (Pmode,
4396 force_operand (XEXP (mem_value, 0),
4397 NULL_RTX)));
4398 if (REG_P (struct_value))
4399 use_reg (&call_fusage, struct_value);
4402 /* Don't allow popping to be deferred, since then
4403 cse'ing of library calls could delete a call and leave the pop. */
4404 NO_DEFER_POP;
4405 valreg = (mem_value == 0 && outmode != VOIDmode
4406 ? hard_libcall_value (outmode, orgfun) : NULL_RTX);
4408 /* Stack must be properly aligned now. */
4409 gcc_assert (!(stack_pointer_delta
4410 & (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1)));
4412 before_call = get_last_insn ();
4414 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
4415 will set inhibit_defer_pop to that value. */
4416 /* The return type is needed to decide how many bytes the function pops.
4417 Signedness plays no role in that, so for simplicity, we pretend it's
4418 always signed. We also assume that the list of arguments passed has
4419 no impact, so we pretend it is unknown. */
4421 emit_call_1 (fun, NULL,
4422 get_identifier (XSTR (orgfun, 0)),
4423 build_function_type (tfom, NULL_TREE),
4424 original_args_size.constant, args_size.constant,
4425 struct_value_size,
4426 targetm.calls.function_arg (args_so_far,
4427 VOIDmode, void_type_node, true),
4428 valreg,
4429 old_inhibit_defer_pop + 1, call_fusage, flags, args_so_far);
4431 if (flag_ipa_ra)
4433 rtx datum = orgfun;
4434 gcc_assert (GET_CODE (datum) == SYMBOL_REF);
4435 rtx_call_insn *last = last_call_insn ();
4436 add_reg_note (last, REG_CALL_DECL, datum);
4439 /* Right-shift returned value if necessary. */
4440 if (!pcc_struct_value
4441 && TYPE_MODE (tfom) != BLKmode
4442 && targetm.calls.return_in_msb (tfom))
4444 shift_return_value (TYPE_MODE (tfom), false, valreg);
4445 valreg = gen_rtx_REG (TYPE_MODE (tfom), REGNO (valreg));
4448 targetm.calls.end_call_args ();
4450 /* For calls to `setjmp', etc., inform function.c:setjmp_warnings
4451 that it should complain if nonvolatile values are live. For
4452 functions that cannot return, inform flow that control does not
4453 fall through. */
4454 if (flags & ECF_NORETURN)
4456 /* The barrier note must be emitted
4457 immediately after the CALL_INSN. Some ports emit more than
4458 just a CALL_INSN above, so we must search for it here. */
4459 rtx_insn *last = get_last_insn ();
4460 while (!CALL_P (last))
4462 last = PREV_INSN (last);
4463 /* There was no CALL_INSN? */
4464 gcc_assert (last != before_call);
4467 emit_barrier_after (last);
4470 /* Consider that "regular" libcalls, i.e. all of them except for LCT_THROW
4471 and LCT_RETURNS_TWICE, cannot perform non-local gotos. */
4472 if (flags & ECF_NOTHROW)
4474 rtx_insn *last = get_last_insn ();
4475 while (!CALL_P (last))
4477 last = PREV_INSN (last);
4478 /* There was no CALL_INSN? */
4479 gcc_assert (last != before_call);
4482 make_reg_eh_region_note_nothrow_nononlocal (last);
4485 /* Now restore inhibit_defer_pop to its actual original value. */
4486 OK_DEFER_POP;
4488 pop_temp_slots ();
4490 /* Copy the value to the right place. */
4491 if (outmode != VOIDmode && retval)
4493 if (mem_value)
4495 if (value == 0)
4496 value = mem_value;
4497 if (value != mem_value)
4498 emit_move_insn (value, mem_value);
4500 else if (GET_CODE (valreg) == PARALLEL)
4502 if (value == 0)
4503 value = gen_reg_rtx (outmode);
4504 emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode));
4506 else
4508 /* Convert to the proper mode if a promotion has been active. */
4509 if (GET_MODE (valreg) != outmode)
4511 int unsignedp = TYPE_UNSIGNED (tfom);
4513 gcc_assert (promote_function_mode (tfom, outmode, &unsignedp,
4514 fndecl ? TREE_TYPE (fndecl) : fntype, 1)
4515 == GET_MODE (valreg));
4516 valreg = convert_modes (outmode, GET_MODE (valreg), valreg, 0);
4519 if (value != 0)
4520 emit_move_insn (value, valreg);
4521 else
4522 value = valreg;
4526 if (ACCUMULATE_OUTGOING_ARGS)
4528 #ifdef REG_PARM_STACK_SPACE
4529 if (save_area)
4530 restore_fixed_argument_area (save_area, argblock,
4531 high_to_save, low_to_save);
4532 #endif
4534 /* If we saved any argument areas, restore them. */
4535 for (count = 0; count < nargs; count++)
4536 if (argvec[count].save_area)
4538 machine_mode save_mode = GET_MODE (argvec[count].save_area);
4539 rtx adr = plus_constant (Pmode, argblock,
4540 argvec[count].locate.offset.constant);
4541 rtx stack_area = gen_rtx_MEM (save_mode,
4542 memory_address (save_mode, adr));
4544 if (save_mode == BLKmode)
4545 emit_block_move (stack_area,
4546 validize_mem
4547 (copy_rtx (argvec[count].save_area)),
4548 GEN_INT (argvec[count].locate.size.constant),
4549 BLOCK_OP_CALL_PARM);
4550 else
4551 emit_move_insn (stack_area, argvec[count].save_area);
4554 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4555 stack_usage_map = initial_stack_usage_map;
4558 free (stack_usage_map_buf);
4560 return value;
4564 /* Output a library call to function FUN (a SYMBOL_REF rtx)
4565 (emitting the queue unless NO_QUEUE is nonzero),
4566 for a value of mode OUTMODE,
4567 with NARGS different arguments, passed as alternating rtx values
4568 and machine_modes to convert them to.
4570 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for
4571 `const' calls, LCT_PURE for `pure' calls, or other LCT_ value for
4572 other types of library calls. */
4574 void
4575 emit_library_call (rtx orgfun, enum libcall_type fn_type,
4576 machine_mode outmode, int nargs, ...)
4578 va_list p;
4580 va_start (p, nargs);
4581 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
4582 va_end (p);
4585 /* Like emit_library_call except that an extra argument, VALUE,
4586 comes second and says where to store the result.
4587 (If VALUE is zero, this function chooses a convenient way
4588 to return the value.
4590 This function returns an rtx for where the value is to be found.
4591 If VALUE is nonzero, VALUE is returned. */
4594 emit_library_call_value (rtx orgfun, rtx value,
4595 enum libcall_type fn_type,
4596 machine_mode outmode, int nargs, ...)
4598 rtx result;
4599 va_list p;
4601 va_start (p, nargs);
4602 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode,
4603 nargs, p);
4604 va_end (p);
4606 return result;
4610 /* Store pointer bounds argument ARG into Bounds Table entry
4611 associated with PARM. */
4612 static void
4613 store_bounds (struct arg_data *arg, struct arg_data *parm)
4615 rtx slot = NULL, ptr = NULL, addr = NULL;
4617 /* We may pass bounds not associated with any pointer. */
4618 if (!parm)
4620 gcc_assert (arg->special_slot);
4621 slot = arg->special_slot;
4622 ptr = const0_rtx;
4624 /* Find pointer associated with bounds and where it is
4625 passed. */
4626 else
4628 if (!parm->reg)
4630 gcc_assert (!arg->special_slot);
4632 addr = adjust_address (parm->stack, Pmode, arg->pointer_offset);
4634 else if (REG_P (parm->reg))
4636 gcc_assert (arg->special_slot);
4637 slot = arg->special_slot;
4639 if (MEM_P (parm->value))
4640 addr = adjust_address (parm->value, Pmode, arg->pointer_offset);
4641 else if (REG_P (parm->value))
4642 ptr = gen_rtx_SUBREG (Pmode, parm->value, arg->pointer_offset);
4643 else
4645 gcc_assert (!arg->pointer_offset);
4646 ptr = parm->value;
4649 else
4651 gcc_assert (GET_CODE (parm->reg) == PARALLEL);
4653 gcc_assert (arg->special_slot);
4654 slot = arg->special_slot;
4656 if (parm->parallel_value)
4657 ptr = chkp_get_value_with_offs (parm->parallel_value,
4658 GEN_INT (arg->pointer_offset));
4659 else
4660 gcc_unreachable ();
4664 /* Expand bounds. */
4665 if (!arg->value)
4666 arg->value = expand_normal (arg->tree_value);
4668 targetm.calls.store_bounds_for_arg (ptr, addr, arg->value, slot);
4671 /* Store a single argument for a function call
4672 into the register or memory area where it must be passed.
4673 *ARG describes the argument value and where to pass it.
4675 ARGBLOCK is the address of the stack-block for all the arguments,
4676 or 0 on a machine where arguments are pushed individually.
4678 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
4679 so must be careful about how the stack is used.
4681 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
4682 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
4683 that we need not worry about saving and restoring the stack.
4685 FNDECL is the declaration of the function we are calling.
4687 Return nonzero if this arg should cause sibcall failure,
4688 zero otherwise. */
4690 static int
4691 store_one_arg (struct arg_data *arg, rtx argblock, int flags,
4692 int variable_size ATTRIBUTE_UNUSED, int reg_parm_stack_space)
4694 tree pval = arg->tree_value;
4695 rtx reg = 0;
4696 int partial = 0;
4697 int used = 0;
4698 int i, lower_bound = 0, upper_bound = 0;
4699 int sibcall_failure = 0;
4701 if (TREE_CODE (pval) == ERROR_MARK)
4702 return 1;
4704 /* Push a new temporary level for any temporaries we make for
4705 this argument. */
4706 push_temp_slots ();
4708 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
4710 /* If this is being stored into a pre-allocated, fixed-size, stack area,
4711 save any previous data at that location. */
4712 if (argblock && ! variable_size && arg->stack)
4714 if (ARGS_GROW_DOWNWARD)
4716 /* stack_slot is negative, but we want to index stack_usage_map
4717 with positive values. */
4718 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4719 upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
4720 else
4721 upper_bound = 0;
4723 lower_bound = upper_bound - arg->locate.size.constant;
4725 else
4727 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4728 lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
4729 else
4730 lower_bound = 0;
4732 upper_bound = lower_bound + arg->locate.size.constant;
4735 i = lower_bound;
4736 /* Don't worry about things in the fixed argument area;
4737 it has already been saved. */
4738 if (i < reg_parm_stack_space)
4739 i = reg_parm_stack_space;
4740 while (i < upper_bound && stack_usage_map[i] == 0)
4741 i++;
4743 if (i < upper_bound)
4745 /* We need to make a save area. */
4746 unsigned int size = arg->locate.size.constant * BITS_PER_UNIT;
4747 machine_mode save_mode = mode_for_size (size, MODE_INT, 1);
4748 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
4749 rtx stack_area = gen_rtx_MEM (save_mode, adr);
4751 if (save_mode == BLKmode)
4753 arg->save_area
4754 = assign_temp (TREE_TYPE (arg->tree_value), 1, 1);
4755 preserve_temp_slots (arg->save_area);
4756 emit_block_move (validize_mem (copy_rtx (arg->save_area)),
4757 stack_area,
4758 GEN_INT (arg->locate.size.constant),
4759 BLOCK_OP_CALL_PARM);
4761 else
4763 arg->save_area = gen_reg_rtx (save_mode);
4764 emit_move_insn (arg->save_area, stack_area);
4770 /* If this isn't going to be placed on both the stack and in registers,
4771 set up the register and number of words. */
4772 if (! arg->pass_on_stack)
4774 if (flags & ECF_SIBCALL)
4775 reg = arg->tail_call_reg;
4776 else
4777 reg = arg->reg;
4778 partial = arg->partial;
4781 /* Being passed entirely in a register. We shouldn't be called in
4782 this case. */
4783 gcc_assert (reg == 0 || partial != 0);
4785 /* If this arg needs special alignment, don't load the registers
4786 here. */
4787 if (arg->n_aligned_regs != 0)
4788 reg = 0;
4790 /* If this is being passed partially in a register, we can't evaluate
4791 it directly into its stack slot. Otherwise, we can. */
4792 if (arg->value == 0)
4794 /* stack_arg_under_construction is nonzero if a function argument is
4795 being evaluated directly into the outgoing argument list and
4796 expand_call must take special action to preserve the argument list
4797 if it is called recursively.
4799 For scalar function arguments stack_usage_map is sufficient to
4800 determine which stack slots must be saved and restored. Scalar
4801 arguments in general have pass_on_stack == 0.
4803 If this argument is initialized by a function which takes the
4804 address of the argument (a C++ constructor or a C function
4805 returning a BLKmode structure), then stack_usage_map is
4806 insufficient and expand_call must push the stack around the
4807 function call. Such arguments have pass_on_stack == 1.
4809 Note that it is always safe to set stack_arg_under_construction,
4810 but this generates suboptimal code if set when not needed. */
4812 if (arg->pass_on_stack)
4813 stack_arg_under_construction++;
4815 arg->value = expand_expr (pval,
4816 (partial
4817 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
4818 ? NULL_RTX : arg->stack,
4819 VOIDmode, EXPAND_STACK_PARM);
4821 /* If we are promoting object (or for any other reason) the mode
4822 doesn't agree, convert the mode. */
4824 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
4825 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
4826 arg->value, arg->unsignedp);
4828 if (arg->pass_on_stack)
4829 stack_arg_under_construction--;
4832 /* Check for overlap with already clobbered argument area. */
4833 if ((flags & ECF_SIBCALL)
4834 && MEM_P (arg->value)
4835 && mem_overlaps_already_clobbered_arg_p (XEXP (arg->value, 0),
4836 arg->locate.size.constant))
4837 sibcall_failure = 1;
4839 /* Don't allow anything left on stack from computation
4840 of argument to alloca. */
4841 if (flags & ECF_MAY_BE_ALLOCA)
4842 do_pending_stack_adjust ();
4844 if (arg->value == arg->stack)
4845 /* If the value is already in the stack slot, we are done. */
4847 else if (arg->mode != BLKmode)
4849 int size;
4850 unsigned int parm_align;
4852 /* Argument is a scalar, not entirely passed in registers.
4853 (If part is passed in registers, arg->partial says how much
4854 and emit_push_insn will take care of putting it there.)
4856 Push it, and if its size is less than the
4857 amount of space allocated to it,
4858 also bump stack pointer by the additional space.
4859 Note that in C the default argument promotions
4860 will prevent such mismatches. */
4862 size = GET_MODE_SIZE (arg->mode);
4863 /* Compute how much space the push instruction will push.
4864 On many machines, pushing a byte will advance the stack
4865 pointer by a halfword. */
4866 #ifdef PUSH_ROUNDING
4867 size = PUSH_ROUNDING (size);
4868 #endif
4869 used = size;
4871 /* Compute how much space the argument should get:
4872 round up to a multiple of the alignment for arguments. */
4873 if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
4874 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
4875 / (PARM_BOUNDARY / BITS_PER_UNIT))
4876 * (PARM_BOUNDARY / BITS_PER_UNIT));
4878 /* Compute the alignment of the pushed argument. */
4879 parm_align = arg->locate.boundary;
4880 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4882 int pad = used - size;
4883 if (pad)
4885 unsigned int pad_align = (pad & -pad) * BITS_PER_UNIT;
4886 parm_align = MIN (parm_align, pad_align);
4890 /* This isn't already where we want it on the stack, so put it there.
4891 This can either be done with push or copy insns. */
4892 if (!emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX,
4893 parm_align, partial, reg, used - size, argblock,
4894 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4895 ARGS_SIZE_RTX (arg->locate.alignment_pad), true))
4896 sibcall_failure = 1;
4898 /* Unless this is a partially-in-register argument, the argument is now
4899 in the stack. */
4900 if (partial == 0)
4901 arg->value = arg->stack;
4903 else
4905 /* BLKmode, at least partly to be pushed. */
4907 unsigned int parm_align;
4908 int excess;
4909 rtx size_rtx;
4911 /* Pushing a nonscalar.
4912 If part is passed in registers, PARTIAL says how much
4913 and emit_push_insn will take care of putting it there. */
4915 /* Round its size up to a multiple
4916 of the allocation unit for arguments. */
4918 if (arg->locate.size.var != 0)
4920 excess = 0;
4921 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
4923 else
4925 /* PUSH_ROUNDING has no effect on us, because emit_push_insn
4926 for BLKmode is careful to avoid it. */
4927 excess = (arg->locate.size.constant
4928 - int_size_in_bytes (TREE_TYPE (pval))
4929 + partial);
4930 size_rtx = expand_expr (size_in_bytes (TREE_TYPE (pval)),
4931 NULL_RTX, TYPE_MODE (sizetype),
4932 EXPAND_NORMAL);
4935 parm_align = arg->locate.boundary;
4937 /* When an argument is padded down, the block is aligned to
4938 PARM_BOUNDARY, but the actual argument isn't. */
4939 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4941 if (arg->locate.size.var)
4942 parm_align = BITS_PER_UNIT;
4943 else if (excess)
4945 unsigned int excess_align = (excess & -excess) * BITS_PER_UNIT;
4946 parm_align = MIN (parm_align, excess_align);
4950 if ((flags & ECF_SIBCALL) && MEM_P (arg->value))
4952 /* emit_push_insn might not work properly if arg->value and
4953 argblock + arg->locate.offset areas overlap. */
4954 rtx x = arg->value;
4955 int i = 0;
4957 if (XEXP (x, 0) == crtl->args.internal_arg_pointer
4958 || (GET_CODE (XEXP (x, 0)) == PLUS
4959 && XEXP (XEXP (x, 0), 0) ==
4960 crtl->args.internal_arg_pointer
4961 && CONST_INT_P (XEXP (XEXP (x, 0), 1))))
4963 if (XEXP (x, 0) != crtl->args.internal_arg_pointer)
4964 i = INTVAL (XEXP (XEXP (x, 0), 1));
4966 /* expand_call should ensure this. */
4967 gcc_assert (!arg->locate.offset.var
4968 && arg->locate.size.var == 0
4969 && CONST_INT_P (size_rtx));
4971 if (arg->locate.offset.constant > i)
4973 if (arg->locate.offset.constant < i + INTVAL (size_rtx))
4974 sibcall_failure = 1;
4976 else if (arg->locate.offset.constant < i)
4978 /* Use arg->locate.size.constant instead of size_rtx
4979 because we only care about the part of the argument
4980 on the stack. */
4981 if (i < (arg->locate.offset.constant
4982 + arg->locate.size.constant))
4983 sibcall_failure = 1;
4985 else
4987 /* Even though they appear to be at the same location,
4988 if part of the outgoing argument is in registers,
4989 they aren't really at the same location. Check for
4990 this by making sure that the incoming size is the
4991 same as the outgoing size. */
4992 if (arg->locate.size.constant != INTVAL (size_rtx))
4993 sibcall_failure = 1;
4998 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
4999 parm_align, partial, reg, excess, argblock,
5000 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
5001 ARGS_SIZE_RTX (arg->locate.alignment_pad), false);
5003 /* Unless this is a partially-in-register argument, the argument is now
5004 in the stack.
5006 ??? Unlike the case above, in which we want the actual
5007 address of the data, so that we can load it directly into a
5008 register, here we want the address of the stack slot, so that
5009 it's properly aligned for word-by-word copying or something
5010 like that. It's not clear that this is always correct. */
5011 if (partial == 0)
5012 arg->value = arg->stack_slot;
5015 if (arg->reg && GET_CODE (arg->reg) == PARALLEL)
5017 tree type = TREE_TYPE (arg->tree_value);
5018 arg->parallel_value
5019 = emit_group_load_into_temps (arg->reg, arg->value, type,
5020 int_size_in_bytes (type));
5023 /* Mark all slots this store used. */
5024 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
5025 && argblock && ! variable_size && arg->stack)
5026 for (i = lower_bound; i < upper_bound; i++)
5027 stack_usage_map[i] = 1;
5029 /* Once we have pushed something, pops can't safely
5030 be deferred during the rest of the arguments. */
5031 NO_DEFER_POP;
5033 /* Free any temporary slots made in processing this argument. */
5034 pop_temp_slots ();
5036 return sibcall_failure;
5039 /* Nonzero if we do not know how to pass TYPE solely in registers. */
5041 bool
5042 must_pass_in_stack_var_size (machine_mode mode ATTRIBUTE_UNUSED,
5043 const_tree type)
5045 if (!type)
5046 return false;
5048 /* If the type has variable size... */
5049 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5050 return true;
5052 /* If the type is marked as addressable (it is required
5053 to be constructed into the stack)... */
5054 if (TREE_ADDRESSABLE (type))
5055 return true;
5057 return false;
5060 /* Another version of the TARGET_MUST_PASS_IN_STACK hook. This one
5061 takes trailing padding of a structure into account. */
5062 /* ??? Should be able to merge these two by examining BLOCK_REG_PADDING. */
5064 bool
5065 must_pass_in_stack_var_size_or_pad (machine_mode mode, const_tree type)
5067 if (!type)
5068 return false;
5070 /* If the type has variable size... */
5071 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
5072 return true;
5074 /* If the type is marked as addressable (it is required
5075 to be constructed into the stack)... */
5076 if (TREE_ADDRESSABLE (type))
5077 return true;
5079 /* If the padding and mode of the type is such that a copy into
5080 a register would put it into the wrong part of the register. */
5081 if (mode == BLKmode
5082 && int_size_in_bytes (type) % (PARM_BOUNDARY / BITS_PER_UNIT)
5083 && (FUNCTION_ARG_PADDING (mode, type)
5084 == (BYTES_BIG_ENDIAN ? upward : downward)))
5085 return true;
5087 return false;