]> gcc.gnu.org Git - gcc.git/blob - gcc/calls.c
gimple.h: Remove all includes.
[gcc.git] / gcc / calls.c
1 /* Convert function calls to rtl insns, for GNU C compiler.
2 Copyright (C) 1989-2013 Free Software Foundation, Inc.
3
4 This file is part of GCC.
5
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.
10
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.
15
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/>. */
19
20 #include "config.h"
21 #include "system.h"
22 #include "coretypes.h"
23 #include "tm.h"
24 #include "rtl.h"
25 #include "tree.h"
26 #include "stor-layout.h"
27 #include "varasm.h"
28 #include "stringpool.h"
29 #include "attribs.h"
30 #include "basic-block.h"
31 #include "tree-ssa-alias.h"
32 #include "internal-fn.h"
33 #include "gimple-expr.h"
34 #include "is-a.h"
35 #include "gimple.h"
36 #include "flags.h"
37 #include "expr.h"
38 #include "optabs.h"
39 #include "libfuncs.h"
40 #include "function.h"
41 #include "regs.h"
42 #include "diagnostic-core.h"
43 #include "output.h"
44 #include "tm_p.h"
45 #include "timevar.h"
46 #include "sbitmap.h"
47 #include "langhooks.h"
48 #include "target.h"
49 #include "cgraph.h"
50 #include "except.h"
51 #include "dbgcnt.h"
52
53 /* Like PREFERRED_STACK_BOUNDARY but in units of bytes, not bits. */
54 #define STACK_BYTES (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT)
55
56 /* Data structure and subroutines used within expand_call. */
57
58 struct arg_data
59 {
60 /* Tree node for this argument. */
61 tree tree_value;
62 /* Mode for value; TYPE_MODE unless promoted. */
63 enum machine_mode mode;
64 /* Current RTL value for argument, or 0 if it isn't precomputed. */
65 rtx value;
66 /* Initially-compute RTL value for argument; only for const functions. */
67 rtx initial_value;
68 /* Register to pass this argument in, 0 if passed on stack, or an
69 PARALLEL if the arg is to be copied into multiple non-contiguous
70 registers. */
71 rtx reg;
72 /* Register to pass this argument in when generating tail call sequence.
73 This is not the same register as for normal calls on machines with
74 register windows. */
75 rtx tail_call_reg;
76 /* If REG is a PARALLEL, this is a copy of VALUE pulled into the correct
77 form for emit_group_move. */
78 rtx parallel_value;
79 /* If REG was promoted from the actual mode of the argument expression,
80 indicates whether the promotion is sign- or zero-extended. */
81 int unsignedp;
82 /* Number of bytes to put in registers. 0 means put the whole arg
83 in registers. Also 0 if not passed in registers. */
84 int partial;
85 /* Nonzero if argument must be passed on stack.
86 Note that some arguments may be passed on the stack
87 even though pass_on_stack is zero, just because FUNCTION_ARG says so.
88 pass_on_stack identifies arguments that *cannot* go in registers. */
89 int pass_on_stack;
90 /* Some fields packaged up for locate_and_pad_parm. */
91 struct locate_and_pad_arg_data locate;
92 /* Location on the stack at which parameter should be stored. The store
93 has already been done if STACK == VALUE. */
94 rtx stack;
95 /* Location on the stack of the start of this argument slot. This can
96 differ from STACK if this arg pads downward. This location is known
97 to be aligned to TARGET_FUNCTION_ARG_BOUNDARY. */
98 rtx stack_slot;
99 /* Place that this stack area has been saved, if needed. */
100 rtx save_area;
101 /* If an argument's alignment does not permit direct copying into registers,
102 copy in smaller-sized pieces into pseudos. These are stored in a
103 block pointed to by this field. The next field says how many
104 word-sized pseudos we made. */
105 rtx *aligned_regs;
106 int n_aligned_regs;
107 };
108
109 /* A vector of one char per byte of stack space. A byte if nonzero if
110 the corresponding stack location has been used.
111 This vector is used to prevent a function call within an argument from
112 clobbering any stack already set up. */
113 static char *stack_usage_map;
114
115 /* Size of STACK_USAGE_MAP. */
116 static int highest_outgoing_arg_in_use;
117
118 /* A bitmap of virtual-incoming stack space. Bit is set if the corresponding
119 stack location's tail call argument has been already stored into the stack.
120 This bitmap is used to prevent sibling call optimization if function tries
121 to use parent's incoming argument slots when they have been already
122 overwritten with tail call arguments. */
123 static sbitmap stored_args_map;
124
125 /* stack_arg_under_construction is nonzero when an argument may be
126 initialized with a constructor call (including a C function that
127 returns a BLKmode struct) and expand_call must take special action
128 to make sure the object being constructed does not overlap the
129 argument list for the constructor call. */
130 static int stack_arg_under_construction;
131
132 static void emit_call_1 (rtx, tree, tree, tree, HOST_WIDE_INT, HOST_WIDE_INT,
133 HOST_WIDE_INT, rtx, rtx, int, rtx, int,
134 cumulative_args_t);
135 static void precompute_register_parameters (int, struct arg_data *, int *);
136 static int store_one_arg (struct arg_data *, rtx, int, int, int);
137 static void store_unaligned_arguments_into_pseudos (struct arg_data *, int);
138 static int finalize_must_preallocate (int, int, struct arg_data *,
139 struct args_size *);
140 static void precompute_arguments (int, struct arg_data *);
141 static int compute_argument_block_size (int, struct args_size *, tree, tree, int);
142 static void initialize_argument_information (int, struct arg_data *,
143 struct args_size *, int,
144 tree, tree,
145 tree, tree, cumulative_args_t, int,
146 rtx *, int *, int *, int *,
147 bool *, bool);
148 static void compute_argument_addresses (struct arg_data *, rtx, int);
149 static rtx rtx_for_function_call (tree, tree);
150 static void load_register_parameters (struct arg_data *, int, rtx *, int,
151 int, int *);
152 static rtx emit_library_call_value_1 (int, rtx, rtx, enum libcall_type,
153 enum machine_mode, int, va_list);
154 static int special_function_p (const_tree, int);
155 static int check_sibcall_argument_overlap_1 (rtx);
156 static int check_sibcall_argument_overlap (rtx, struct arg_data *, int);
157
158 static int combine_pending_stack_adjustment_and_call (int, struct args_size *,
159 unsigned int);
160 static tree split_complex_types (tree);
161
162 #ifdef REG_PARM_STACK_SPACE
163 static rtx save_fixed_argument_area (int, rtx, int *, int *);
164 static void restore_fixed_argument_area (rtx, rtx, int, int);
165 #endif
166 \f
167 /* Force FUNEXP into a form suitable for the address of a CALL,
168 and return that as an rtx. Also load the static chain register
169 if FNDECL is a nested function.
170
171 CALL_FUSAGE points to a variable holding the prospective
172 CALL_INSN_FUNCTION_USAGE information. */
173
174 rtx
175 prepare_call_address (tree fndecl, rtx funexp, rtx static_chain_value,
176 rtx *call_fusage, int reg_parm_seen, int sibcallp)
177 {
178 /* Make a valid memory address and copy constants through pseudo-regs,
179 but not for a constant address if -fno-function-cse. */
180 if (GET_CODE (funexp) != SYMBOL_REF)
181 /* If we are using registers for parameters, force the
182 function address into a register now. */
183 funexp = ((reg_parm_seen
184 && targetm.small_register_classes_for_mode_p (FUNCTION_MODE))
185 ? force_not_mem (memory_address (FUNCTION_MODE, funexp))
186 : memory_address (FUNCTION_MODE, funexp));
187 else if (! sibcallp)
188 {
189 #ifndef NO_FUNCTION_CSE
190 if (optimize && ! flag_no_function_cse)
191 funexp = force_reg (Pmode, funexp);
192 #endif
193 }
194
195 if (static_chain_value != 0)
196 {
197 rtx chain;
198
199 gcc_assert (fndecl);
200 chain = targetm.calls.static_chain (fndecl, false);
201 static_chain_value = convert_memory_address (Pmode, static_chain_value);
202
203 emit_move_insn (chain, static_chain_value);
204 if (REG_P (chain))
205 use_reg (call_fusage, chain);
206 }
207
208 return funexp;
209 }
210
211 /* Generate instructions to call function FUNEXP,
212 and optionally pop the results.
213 The CALL_INSN is the first insn generated.
214
215 FNDECL is the declaration node of the function. This is given to the
216 hook TARGET_RETURN_POPS_ARGS to determine whether this function pops
217 its own args.
218
219 FUNTYPE is the data type of the function. This is given to the hook
220 TARGET_RETURN_POPS_ARGS to determine whether this function pops its
221 own args. We used to allow an identifier for library functions, but
222 that doesn't work when the return type is an aggregate type and the
223 calling convention says that the pointer to this aggregate is to be
224 popped by the callee.
225
226 STACK_SIZE is the number of bytes of arguments on the stack,
227 ROUNDED_STACK_SIZE is that number rounded up to
228 PREFERRED_STACK_BOUNDARY; zero if the size is variable. This is
229 both to put into the call insn and to generate explicit popping
230 code if necessary.
231
232 STRUCT_VALUE_SIZE is the number of bytes wanted in a structure value.
233 It is zero if this call doesn't want a structure value.
234
235 NEXT_ARG_REG is the rtx that results from executing
236 targetm.calls.function_arg (&args_so_far, VOIDmode, void_type_node, true)
237 just after all the args have had their registers assigned.
238 This could be whatever you like, but normally it is the first
239 arg-register beyond those used for args in this call,
240 or 0 if all the arg-registers are used in this call.
241 It is passed on to `gen_call' so you can put this info in the call insn.
242
243 VALREG is a hard register in which a value is returned,
244 or 0 if the call does not return a value.
245
246 OLD_INHIBIT_DEFER_POP is the value that `inhibit_defer_pop' had before
247 the args to this call were processed.
248 We restore `inhibit_defer_pop' to that value.
249
250 CALL_FUSAGE is either empty or an EXPR_LIST of USE expressions that
251 denote registers used by the called function. */
252
253 static void
254 emit_call_1 (rtx funexp, tree fntree ATTRIBUTE_UNUSED, tree fndecl ATTRIBUTE_UNUSED,
255 tree funtype ATTRIBUTE_UNUSED,
256 HOST_WIDE_INT stack_size ATTRIBUTE_UNUSED,
257 HOST_WIDE_INT rounded_stack_size,
258 HOST_WIDE_INT struct_value_size ATTRIBUTE_UNUSED,
259 rtx next_arg_reg ATTRIBUTE_UNUSED, rtx valreg,
260 int old_inhibit_defer_pop, rtx call_fusage, int ecf_flags,
261 cumulative_args_t args_so_far ATTRIBUTE_UNUSED)
262 {
263 rtx rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
264 rtx call_insn, call, funmem;
265 int already_popped = 0;
266 HOST_WIDE_INT n_popped
267 = targetm.calls.return_pops_args (fndecl, funtype, stack_size);
268
269 #ifdef CALL_POPS_ARGS
270 n_popped += CALL_POPS_ARGS (*get_cumulative_args (args_so_far));
271 #endif
272
273 /* Ensure address is valid. SYMBOL_REF is already valid, so no need,
274 and we don't want to load it into a register as an optimization,
275 because prepare_call_address already did it if it should be done. */
276 if (GET_CODE (funexp) != SYMBOL_REF)
277 funexp = memory_address (FUNCTION_MODE, funexp);
278
279 funmem = gen_rtx_MEM (FUNCTION_MODE, funexp);
280 if (fndecl && TREE_CODE (fndecl) == FUNCTION_DECL)
281 {
282 tree t = fndecl;
283
284 /* Although a built-in FUNCTION_DECL and its non-__builtin
285 counterpart compare equal and get a shared mem_attrs, they
286 produce different dump output in compare-debug compilations,
287 if an entry gets garbage collected in one compilation, then
288 adds a different (but equivalent) entry, while the other
289 doesn't run the garbage collector at the same spot and then
290 shares the mem_attr with the equivalent entry. */
291 if (DECL_BUILT_IN_CLASS (t) == BUILT_IN_NORMAL)
292 {
293 tree t2 = builtin_decl_explicit (DECL_FUNCTION_CODE (t));
294 if (t2)
295 t = t2;
296 }
297
298 set_mem_expr (funmem, t);
299 }
300 else if (fntree)
301 set_mem_expr (funmem, build_simple_mem_ref (CALL_EXPR_FN (fntree)));
302
303 #if defined (HAVE_sibcall_pop) && defined (HAVE_sibcall_value_pop)
304 if ((ecf_flags & ECF_SIBCALL)
305 && HAVE_sibcall_pop && HAVE_sibcall_value_pop
306 && (n_popped > 0 || stack_size == 0))
307 {
308 rtx n_pop = GEN_INT (n_popped);
309 rtx pat;
310
311 /* If this subroutine pops its own args, record that in the call insn
312 if possible, for the sake of frame pointer elimination. */
313
314 if (valreg)
315 pat = GEN_SIBCALL_VALUE_POP (valreg, funmem, rounded_stack_size_rtx,
316 next_arg_reg, n_pop);
317 else
318 pat = GEN_SIBCALL_POP (funmem, rounded_stack_size_rtx, next_arg_reg,
319 n_pop);
320
321 emit_call_insn (pat);
322 already_popped = 1;
323 }
324 else
325 #endif
326
327 #if defined (HAVE_call_pop) && defined (HAVE_call_value_pop)
328 /* If the target has "call" or "call_value" insns, then prefer them
329 if no arguments are actually popped. If the target does not have
330 "call" or "call_value" insns, then we must use the popping versions
331 even if the call has no arguments to pop. */
332 #if defined (HAVE_call) && defined (HAVE_call_value)
333 if (HAVE_call && HAVE_call_value && HAVE_call_pop && HAVE_call_value_pop
334 && n_popped > 0)
335 #else
336 if (HAVE_call_pop && HAVE_call_value_pop)
337 #endif
338 {
339 rtx n_pop = GEN_INT (n_popped);
340 rtx pat;
341
342 /* If this subroutine pops its own args, record that in the call insn
343 if possible, for the sake of frame pointer elimination. */
344
345 if (valreg)
346 pat = GEN_CALL_VALUE_POP (valreg, funmem, rounded_stack_size_rtx,
347 next_arg_reg, n_pop);
348 else
349 pat = GEN_CALL_POP (funmem, rounded_stack_size_rtx, next_arg_reg,
350 n_pop);
351
352 emit_call_insn (pat);
353 already_popped = 1;
354 }
355 else
356 #endif
357
358 #if defined (HAVE_sibcall) && defined (HAVE_sibcall_value)
359 if ((ecf_flags & ECF_SIBCALL)
360 && HAVE_sibcall && HAVE_sibcall_value)
361 {
362 if (valreg)
363 emit_call_insn (GEN_SIBCALL_VALUE (valreg, funmem,
364 rounded_stack_size_rtx,
365 next_arg_reg, NULL_RTX));
366 else
367 emit_call_insn (GEN_SIBCALL (funmem, rounded_stack_size_rtx,
368 next_arg_reg,
369 GEN_INT (struct_value_size)));
370 }
371 else
372 #endif
373
374 #if defined (HAVE_call) && defined (HAVE_call_value)
375 if (HAVE_call && HAVE_call_value)
376 {
377 if (valreg)
378 emit_call_insn (GEN_CALL_VALUE (valreg, funmem, rounded_stack_size_rtx,
379 next_arg_reg, NULL_RTX));
380 else
381 emit_call_insn (GEN_CALL (funmem, rounded_stack_size_rtx, next_arg_reg,
382 GEN_INT (struct_value_size)));
383 }
384 else
385 #endif
386 gcc_unreachable ();
387
388 /* Find the call we just emitted. */
389 call_insn = last_call_insn ();
390
391 /* Some target create a fresh MEM instead of reusing the one provided
392 above. Set its MEM_EXPR. */
393 call = get_call_rtx_from (call_insn);
394 if (call
395 && MEM_EXPR (XEXP (call, 0)) == NULL_TREE
396 && MEM_EXPR (funmem) != NULL_TREE)
397 set_mem_expr (XEXP (call, 0), MEM_EXPR (funmem));
398
399 /* Put the register usage information there. */
400 add_function_usage_to (call_insn, call_fusage);
401
402 /* If this is a const call, then set the insn's unchanging bit. */
403 if (ecf_flags & ECF_CONST)
404 RTL_CONST_CALL_P (call_insn) = 1;
405
406 /* If this is a pure call, then set the insn's unchanging bit. */
407 if (ecf_flags & ECF_PURE)
408 RTL_PURE_CALL_P (call_insn) = 1;
409
410 /* If this is a const call, then set the insn's unchanging bit. */
411 if (ecf_flags & ECF_LOOPING_CONST_OR_PURE)
412 RTL_LOOPING_CONST_OR_PURE_CALL_P (call_insn) = 1;
413
414 /* Create a nothrow REG_EH_REGION note, if needed. */
415 make_reg_eh_region_note (call_insn, ecf_flags, 0);
416
417 if (ecf_flags & ECF_NORETURN)
418 add_reg_note (call_insn, REG_NORETURN, const0_rtx);
419
420 if (ecf_flags & ECF_RETURNS_TWICE)
421 {
422 add_reg_note (call_insn, REG_SETJMP, const0_rtx);
423 cfun->calls_setjmp = 1;
424 }
425
426 SIBLING_CALL_P (call_insn) = ((ecf_flags & ECF_SIBCALL) != 0);
427
428 /* Restore this now, so that we do defer pops for this call's args
429 if the context of the call as a whole permits. */
430 inhibit_defer_pop = old_inhibit_defer_pop;
431
432 if (n_popped > 0)
433 {
434 if (!already_popped)
435 CALL_INSN_FUNCTION_USAGE (call_insn)
436 = gen_rtx_EXPR_LIST (VOIDmode,
437 gen_rtx_CLOBBER (VOIDmode, stack_pointer_rtx),
438 CALL_INSN_FUNCTION_USAGE (call_insn));
439 rounded_stack_size -= n_popped;
440 rounded_stack_size_rtx = GEN_INT (rounded_stack_size);
441 stack_pointer_delta -= n_popped;
442
443 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
444
445 /* If popup is needed, stack realign must use DRAP */
446 if (SUPPORTS_STACK_ALIGNMENT)
447 crtl->need_drap = true;
448 }
449 /* For noreturn calls when not accumulating outgoing args force
450 REG_ARGS_SIZE note to prevent crossjumping of calls with different
451 args sizes. */
452 else if (!ACCUMULATE_OUTGOING_ARGS && (ecf_flags & ECF_NORETURN) != 0)
453 add_reg_note (call_insn, REG_ARGS_SIZE, GEN_INT (stack_pointer_delta));
454
455 if (!ACCUMULATE_OUTGOING_ARGS)
456 {
457 /* If returning from the subroutine does not automatically pop the args,
458 we need an instruction to pop them sooner or later.
459 Perhaps do it now; perhaps just record how much space to pop later.
460
461 If returning from the subroutine does pop the args, indicate that the
462 stack pointer will be changed. */
463
464 if (rounded_stack_size != 0)
465 {
466 if (ecf_flags & ECF_NORETURN)
467 /* Just pretend we did the pop. */
468 stack_pointer_delta -= rounded_stack_size;
469 else if (flag_defer_pop && inhibit_defer_pop == 0
470 && ! (ecf_flags & (ECF_CONST | ECF_PURE)))
471 pending_stack_adjust += rounded_stack_size;
472 else
473 adjust_stack (rounded_stack_size_rtx);
474 }
475 }
476 /* When we accumulate outgoing args, we must avoid any stack manipulations.
477 Restore the stack pointer to its original value now. Usually
478 ACCUMULATE_OUTGOING_ARGS targets don't get here, but there are exceptions.
479 On i386 ACCUMULATE_OUTGOING_ARGS can be enabled on demand, and
480 popping variants of functions exist as well.
481
482 ??? We may optimize similar to defer_pop above, but it is
483 probably not worthwhile.
484
485 ??? It will be worthwhile to enable combine_stack_adjustments even for
486 such machines. */
487 else if (n_popped)
488 anti_adjust_stack (GEN_INT (n_popped));
489 }
490
491 /* Determine if the function identified by NAME and FNDECL is one with
492 special properties we wish to know about.
493
494 For example, if the function might return more than one time (setjmp), then
495 set RETURNS_TWICE to a nonzero value.
496
497 Similarly set NORETURN if the function is in the longjmp family.
498
499 Set MAY_BE_ALLOCA for any memory allocation function that might allocate
500 space from the stack such as alloca. */
501
502 static int
503 special_function_p (const_tree fndecl, int flags)
504 {
505 if (fndecl && DECL_NAME (fndecl)
506 && IDENTIFIER_LENGTH (DECL_NAME (fndecl)) <= 17
507 /* Exclude functions not at the file scope, or not `extern',
508 since they are not the magic functions we would otherwise
509 think they are.
510 FIXME: this should be handled with attributes, not with this
511 hacky imitation of DECL_ASSEMBLER_NAME. It's (also) wrong
512 because you can declare fork() inside a function if you
513 wish. */
514 && (DECL_CONTEXT (fndecl) == NULL_TREE
515 || TREE_CODE (DECL_CONTEXT (fndecl)) == TRANSLATION_UNIT_DECL)
516 && TREE_PUBLIC (fndecl))
517 {
518 const char *name = IDENTIFIER_POINTER (DECL_NAME (fndecl));
519 const char *tname = name;
520
521 /* We assume that alloca will always be called by name. It
522 makes no sense to pass it as a pointer-to-function to
523 anything that does not understand its behavior. */
524 if (((IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 6
525 && name[0] == 'a'
526 && ! strcmp (name, "alloca"))
527 || (IDENTIFIER_LENGTH (DECL_NAME (fndecl)) == 16
528 && name[0] == '_'
529 && ! strcmp (name, "__builtin_alloca"))))
530 flags |= ECF_MAY_BE_ALLOCA;
531
532 /* Disregard prefix _, __, __x or __builtin_. */
533 if (name[0] == '_')
534 {
535 if (name[1] == '_'
536 && name[2] == 'b'
537 && !strncmp (name + 3, "uiltin_", 7))
538 tname += 10;
539 else if (name[1] == '_' && name[2] == 'x')
540 tname += 3;
541 else if (name[1] == '_')
542 tname += 2;
543 else
544 tname += 1;
545 }
546
547 if (tname[0] == 's')
548 {
549 if ((tname[1] == 'e'
550 && (! strcmp (tname, "setjmp")
551 || ! strcmp (tname, "setjmp_syscall")))
552 || (tname[1] == 'i'
553 && ! strcmp (tname, "sigsetjmp"))
554 || (tname[1] == 'a'
555 && ! strcmp (tname, "savectx")))
556 flags |= ECF_RETURNS_TWICE | ECF_LEAF;
557
558 if (tname[1] == 'i'
559 && ! strcmp (tname, "siglongjmp"))
560 flags |= ECF_NORETURN;
561 }
562 else if ((tname[0] == 'q' && tname[1] == 's'
563 && ! strcmp (tname, "qsetjmp"))
564 || (tname[0] == 'v' && tname[1] == 'f'
565 && ! strcmp (tname, "vfork"))
566 || (tname[0] == 'g' && tname[1] == 'e'
567 && !strcmp (tname, "getcontext")))
568 flags |= ECF_RETURNS_TWICE | ECF_LEAF;
569
570 else if (tname[0] == 'l' && tname[1] == 'o'
571 && ! strcmp (tname, "longjmp"))
572 flags |= ECF_NORETURN;
573 }
574
575 return flags;
576 }
577
578 /* Similar to special_function_p; return a set of ERF_ flags for the
579 function FNDECL. */
580 static int
581 decl_return_flags (tree fndecl)
582 {
583 tree attr;
584 tree type = TREE_TYPE (fndecl);
585 if (!type)
586 return 0;
587
588 attr = lookup_attribute ("fn spec", TYPE_ATTRIBUTES (type));
589 if (!attr)
590 return 0;
591
592 attr = TREE_VALUE (TREE_VALUE (attr));
593 if (!attr || TREE_STRING_LENGTH (attr) < 1)
594 return 0;
595
596 switch (TREE_STRING_POINTER (attr)[0])
597 {
598 case '1':
599 case '2':
600 case '3':
601 case '4':
602 return ERF_RETURNS_ARG | (TREE_STRING_POINTER (attr)[0] - '1');
603
604 case 'm':
605 return ERF_NOALIAS;
606
607 case '.':
608 default:
609 return 0;
610 }
611 }
612
613 /* Return nonzero when FNDECL represents a call to setjmp. */
614
615 int
616 setjmp_call_p (const_tree fndecl)
617 {
618 if (DECL_IS_RETURNS_TWICE (fndecl))
619 return ECF_RETURNS_TWICE;
620 return special_function_p (fndecl, 0) & ECF_RETURNS_TWICE;
621 }
622
623
624 /* Return true if STMT is an alloca call. */
625
626 bool
627 gimple_alloca_call_p (const_gimple stmt)
628 {
629 tree fndecl;
630
631 if (!is_gimple_call (stmt))
632 return false;
633
634 fndecl = gimple_call_fndecl (stmt);
635 if (fndecl && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
636 return true;
637
638 return false;
639 }
640
641 /* Return true when exp contains alloca call. */
642
643 bool
644 alloca_call_p (const_tree exp)
645 {
646 tree fndecl;
647 if (TREE_CODE (exp) == CALL_EXPR
648 && (fndecl = get_callee_fndecl (exp))
649 && (special_function_p (fndecl, 0) & ECF_MAY_BE_ALLOCA))
650 return true;
651 return false;
652 }
653
654 /* Return TRUE if FNDECL is either a TM builtin or a TM cloned
655 function. Return FALSE otherwise. */
656
657 static bool
658 is_tm_builtin (const_tree fndecl)
659 {
660 if (fndecl == NULL)
661 return false;
662
663 if (decl_is_tm_clone (fndecl))
664 return true;
665
666 if (DECL_BUILT_IN_CLASS (fndecl) == BUILT_IN_NORMAL)
667 {
668 switch (DECL_FUNCTION_CODE (fndecl))
669 {
670 case BUILT_IN_TM_COMMIT:
671 case BUILT_IN_TM_COMMIT_EH:
672 case BUILT_IN_TM_ABORT:
673 case BUILT_IN_TM_IRREVOCABLE:
674 case BUILT_IN_TM_GETTMCLONE_IRR:
675 case BUILT_IN_TM_MEMCPY:
676 case BUILT_IN_TM_MEMMOVE:
677 case BUILT_IN_TM_MEMSET:
678 CASE_BUILT_IN_TM_STORE (1):
679 CASE_BUILT_IN_TM_STORE (2):
680 CASE_BUILT_IN_TM_STORE (4):
681 CASE_BUILT_IN_TM_STORE (8):
682 CASE_BUILT_IN_TM_STORE (FLOAT):
683 CASE_BUILT_IN_TM_STORE (DOUBLE):
684 CASE_BUILT_IN_TM_STORE (LDOUBLE):
685 CASE_BUILT_IN_TM_STORE (M64):
686 CASE_BUILT_IN_TM_STORE (M128):
687 CASE_BUILT_IN_TM_STORE (M256):
688 CASE_BUILT_IN_TM_LOAD (1):
689 CASE_BUILT_IN_TM_LOAD (2):
690 CASE_BUILT_IN_TM_LOAD (4):
691 CASE_BUILT_IN_TM_LOAD (8):
692 CASE_BUILT_IN_TM_LOAD (FLOAT):
693 CASE_BUILT_IN_TM_LOAD (DOUBLE):
694 CASE_BUILT_IN_TM_LOAD (LDOUBLE):
695 CASE_BUILT_IN_TM_LOAD (M64):
696 CASE_BUILT_IN_TM_LOAD (M128):
697 CASE_BUILT_IN_TM_LOAD (M256):
698 case BUILT_IN_TM_LOG:
699 case BUILT_IN_TM_LOG_1:
700 case BUILT_IN_TM_LOG_2:
701 case BUILT_IN_TM_LOG_4:
702 case BUILT_IN_TM_LOG_8:
703 case BUILT_IN_TM_LOG_FLOAT:
704 case BUILT_IN_TM_LOG_DOUBLE:
705 case BUILT_IN_TM_LOG_LDOUBLE:
706 case BUILT_IN_TM_LOG_M64:
707 case BUILT_IN_TM_LOG_M128:
708 case BUILT_IN_TM_LOG_M256:
709 return true;
710 default:
711 break;
712 }
713 }
714 return false;
715 }
716
717 /* Detect flags (function attributes) from the function decl or type node. */
718
719 int
720 flags_from_decl_or_type (const_tree exp)
721 {
722 int flags = 0;
723
724 if (DECL_P (exp))
725 {
726 /* The function exp may have the `malloc' attribute. */
727 if (DECL_IS_MALLOC (exp))
728 flags |= ECF_MALLOC;
729
730 /* The function exp may have the `returns_twice' attribute. */
731 if (DECL_IS_RETURNS_TWICE (exp))
732 flags |= ECF_RETURNS_TWICE;
733
734 /* Process the pure and const attributes. */
735 if (TREE_READONLY (exp))
736 flags |= ECF_CONST;
737 if (DECL_PURE_P (exp))
738 flags |= ECF_PURE;
739 if (DECL_LOOPING_CONST_OR_PURE_P (exp))
740 flags |= ECF_LOOPING_CONST_OR_PURE;
741
742 if (DECL_IS_NOVOPS (exp))
743 flags |= ECF_NOVOPS;
744 if (lookup_attribute ("leaf", DECL_ATTRIBUTES (exp)))
745 flags |= ECF_LEAF;
746
747 if (TREE_NOTHROW (exp))
748 flags |= ECF_NOTHROW;
749
750 if (flag_tm)
751 {
752 if (is_tm_builtin (exp))
753 flags |= ECF_TM_BUILTIN;
754 else if ((flags & (ECF_CONST|ECF_NOVOPS)) != 0
755 || lookup_attribute ("transaction_pure",
756 TYPE_ATTRIBUTES (TREE_TYPE (exp))))
757 flags |= ECF_TM_PURE;
758 }
759
760 flags = special_function_p (exp, flags);
761 }
762 else if (TYPE_P (exp))
763 {
764 if (TYPE_READONLY (exp))
765 flags |= ECF_CONST;
766
767 if (flag_tm
768 && ((flags & ECF_CONST) != 0
769 || lookup_attribute ("transaction_pure", TYPE_ATTRIBUTES (exp))))
770 flags |= ECF_TM_PURE;
771 }
772
773 if (TREE_THIS_VOLATILE (exp))
774 {
775 flags |= ECF_NORETURN;
776 if (flags & (ECF_CONST|ECF_PURE))
777 flags |= ECF_LOOPING_CONST_OR_PURE;
778 }
779
780 return flags;
781 }
782
783 /* Detect flags from a CALL_EXPR. */
784
785 int
786 call_expr_flags (const_tree t)
787 {
788 int flags;
789 tree decl = get_callee_fndecl (t);
790
791 if (decl)
792 flags = flags_from_decl_or_type (decl);
793 else
794 {
795 t = TREE_TYPE (CALL_EXPR_FN (t));
796 if (t && TREE_CODE (t) == POINTER_TYPE)
797 flags = flags_from_decl_or_type (TREE_TYPE (t));
798 else
799 flags = 0;
800 }
801
802 return flags;
803 }
804
805 /* Precompute all register parameters as described by ARGS, storing values
806 into fields within the ARGS array.
807
808 NUM_ACTUALS indicates the total number elements in the ARGS array.
809
810 Set REG_PARM_SEEN if we encounter a register parameter. */
811
812 static void
813 precompute_register_parameters (int num_actuals, struct arg_data *args,
814 int *reg_parm_seen)
815 {
816 int i;
817
818 *reg_parm_seen = 0;
819
820 for (i = 0; i < num_actuals; i++)
821 if (args[i].reg != 0 && ! args[i].pass_on_stack)
822 {
823 *reg_parm_seen = 1;
824
825 if (args[i].value == 0)
826 {
827 push_temp_slots ();
828 args[i].value = expand_normal (args[i].tree_value);
829 preserve_temp_slots (args[i].value);
830 pop_temp_slots ();
831 }
832
833 /* If we are to promote the function arg to a wider mode,
834 do it now. */
835
836 if (args[i].mode != TYPE_MODE (TREE_TYPE (args[i].tree_value)))
837 args[i].value
838 = convert_modes (args[i].mode,
839 TYPE_MODE (TREE_TYPE (args[i].tree_value)),
840 args[i].value, args[i].unsignedp);
841
842 /* If the value is a non-legitimate constant, force it into a
843 pseudo now. TLS symbols sometimes need a call to resolve. */
844 if (CONSTANT_P (args[i].value)
845 && !targetm.legitimate_constant_p (args[i].mode, args[i].value))
846 args[i].value = force_reg (args[i].mode, args[i].value);
847
848 /* If we're going to have to load the value by parts, pull the
849 parts into pseudos. The part extraction process can involve
850 non-trivial computation. */
851 if (GET_CODE (args[i].reg) == PARALLEL)
852 {
853 tree type = TREE_TYPE (args[i].tree_value);
854 args[i].parallel_value
855 = emit_group_load_into_temps (args[i].reg, args[i].value,
856 type, int_size_in_bytes (type));
857 }
858
859 /* If the value is expensive, and we are inside an appropriately
860 short loop, put the value into a pseudo and then put the pseudo
861 into the hard reg.
862
863 For small register classes, also do this if this call uses
864 register parameters. This is to avoid reload conflicts while
865 loading the parameters registers. */
866
867 else if ((! (REG_P (args[i].value)
868 || (GET_CODE (args[i].value) == SUBREG
869 && REG_P (SUBREG_REG (args[i].value)))))
870 && args[i].mode != BLKmode
871 && set_src_cost (args[i].value, optimize_insn_for_speed_p ())
872 > COSTS_N_INSNS (1)
873 && ((*reg_parm_seen
874 && targetm.small_register_classes_for_mode_p (args[i].mode))
875 || optimize))
876 args[i].value = copy_to_mode_reg (args[i].mode, args[i].value);
877 }
878 }
879
880 #ifdef REG_PARM_STACK_SPACE
881
882 /* The argument list is the property of the called routine and it
883 may clobber it. If the fixed area has been used for previous
884 parameters, we must save and restore it. */
885
886 static rtx
887 save_fixed_argument_area (int reg_parm_stack_space, rtx argblock, int *low_to_save, int *high_to_save)
888 {
889 int low;
890 int high;
891
892 /* Compute the boundary of the area that needs to be saved, if any. */
893 high = reg_parm_stack_space;
894 #ifdef ARGS_GROW_DOWNWARD
895 high += 1;
896 #endif
897 if (high > highest_outgoing_arg_in_use)
898 high = highest_outgoing_arg_in_use;
899
900 for (low = 0; low < high; low++)
901 if (stack_usage_map[low] != 0)
902 {
903 int num_to_save;
904 enum machine_mode save_mode;
905 int delta;
906 rtx addr;
907 rtx stack_area;
908 rtx save_area;
909
910 while (stack_usage_map[--high] == 0)
911 ;
912
913 *low_to_save = low;
914 *high_to_save = high;
915
916 num_to_save = high - low + 1;
917 save_mode = mode_for_size (num_to_save * BITS_PER_UNIT, MODE_INT, 1);
918
919 /* If we don't have the required alignment, must do this
920 in BLKmode. */
921 if ((low & (MIN (GET_MODE_SIZE (save_mode),
922 BIGGEST_ALIGNMENT / UNITS_PER_WORD) - 1)))
923 save_mode = BLKmode;
924
925 #ifdef ARGS_GROW_DOWNWARD
926 delta = -high;
927 #else
928 delta = low;
929 #endif
930 addr = plus_constant (Pmode, argblock, delta);
931 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
932
933 set_mem_align (stack_area, PARM_BOUNDARY);
934 if (save_mode == BLKmode)
935 {
936 save_area = assign_stack_temp (BLKmode, num_to_save);
937 emit_block_move (validize_mem (save_area), stack_area,
938 GEN_INT (num_to_save), BLOCK_OP_CALL_PARM);
939 }
940 else
941 {
942 save_area = gen_reg_rtx (save_mode);
943 emit_move_insn (save_area, stack_area);
944 }
945
946 return save_area;
947 }
948
949 return NULL_RTX;
950 }
951
952 static void
953 restore_fixed_argument_area (rtx save_area, rtx argblock, int high_to_save, int low_to_save)
954 {
955 enum machine_mode save_mode = GET_MODE (save_area);
956 int delta;
957 rtx addr, stack_area;
958
959 #ifdef ARGS_GROW_DOWNWARD
960 delta = -high_to_save;
961 #else
962 delta = low_to_save;
963 #endif
964 addr = plus_constant (Pmode, argblock, delta);
965 stack_area = gen_rtx_MEM (save_mode, memory_address (save_mode, addr));
966 set_mem_align (stack_area, PARM_BOUNDARY);
967
968 if (save_mode != BLKmode)
969 emit_move_insn (stack_area, save_area);
970 else
971 emit_block_move (stack_area, validize_mem (save_area),
972 GEN_INT (high_to_save - low_to_save + 1),
973 BLOCK_OP_CALL_PARM);
974 }
975 #endif /* REG_PARM_STACK_SPACE */
976
977 /* If any elements in ARGS refer to parameters that are to be passed in
978 registers, but not in memory, and whose alignment does not permit a
979 direct copy into registers. Copy the values into a group of pseudos
980 which we will later copy into the appropriate hard registers.
981
982 Pseudos for each unaligned argument will be stored into the array
983 args[argnum].aligned_regs. The caller is responsible for deallocating
984 the aligned_regs array if it is nonzero. */
985
986 static void
987 store_unaligned_arguments_into_pseudos (struct arg_data *args, int num_actuals)
988 {
989 int i, j;
990
991 for (i = 0; i < num_actuals; i++)
992 if (args[i].reg != 0 && ! args[i].pass_on_stack
993 && GET_CODE (args[i].reg) != PARALLEL
994 && args[i].mode == BLKmode
995 && MEM_P (args[i].value)
996 && (MEM_ALIGN (args[i].value)
997 < (unsigned int) MIN (BIGGEST_ALIGNMENT, BITS_PER_WORD)))
998 {
999 int bytes = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1000 int endian_correction = 0;
1001
1002 if (args[i].partial)
1003 {
1004 gcc_assert (args[i].partial % UNITS_PER_WORD == 0);
1005 args[i].n_aligned_regs = args[i].partial / UNITS_PER_WORD;
1006 }
1007 else
1008 {
1009 args[i].n_aligned_regs
1010 = (bytes + UNITS_PER_WORD - 1) / UNITS_PER_WORD;
1011 }
1012
1013 args[i].aligned_regs = XNEWVEC (rtx, args[i].n_aligned_regs);
1014
1015 /* Structures smaller than a word are normally aligned to the
1016 least significant byte. On a BYTES_BIG_ENDIAN machine,
1017 this means we must skip the empty high order bytes when
1018 calculating the bit offset. */
1019 if (bytes < UNITS_PER_WORD
1020 #ifdef BLOCK_REG_PADDING
1021 && (BLOCK_REG_PADDING (args[i].mode,
1022 TREE_TYPE (args[i].tree_value), 1)
1023 == downward)
1024 #else
1025 && BYTES_BIG_ENDIAN
1026 #endif
1027 )
1028 endian_correction = BITS_PER_WORD - bytes * BITS_PER_UNIT;
1029
1030 for (j = 0; j < args[i].n_aligned_regs; j++)
1031 {
1032 rtx reg = gen_reg_rtx (word_mode);
1033 rtx word = operand_subword_force (args[i].value, j, BLKmode);
1034 int bitsize = MIN (bytes * BITS_PER_UNIT, BITS_PER_WORD);
1035
1036 args[i].aligned_regs[j] = reg;
1037 word = extract_bit_field (word, bitsize, 0, 1, NULL_RTX,
1038 word_mode, word_mode);
1039
1040 /* There is no need to restrict this code to loading items
1041 in TYPE_ALIGN sized hunks. The bitfield instructions can
1042 load up entire word sized registers efficiently.
1043
1044 ??? This may not be needed anymore.
1045 We use to emit a clobber here but that doesn't let later
1046 passes optimize the instructions we emit. By storing 0 into
1047 the register later passes know the first AND to zero out the
1048 bitfield being set in the register is unnecessary. The store
1049 of 0 will be deleted as will at least the first AND. */
1050
1051 emit_move_insn (reg, const0_rtx);
1052
1053 bytes -= bitsize / BITS_PER_UNIT;
1054 store_bit_field (reg, bitsize, endian_correction, 0, 0,
1055 word_mode, word);
1056 }
1057 }
1058 }
1059
1060 /* Fill in ARGS_SIZE and ARGS array based on the parameters found in
1061 CALL_EXPR EXP.
1062
1063 NUM_ACTUALS is the total number of parameters.
1064
1065 N_NAMED_ARGS is the total number of named arguments.
1066
1067 STRUCT_VALUE_ADDR_VALUE is the implicit argument for a struct return
1068 value, or null.
1069
1070 FNDECL is the tree code for the target of this call (if known)
1071
1072 ARGS_SO_FAR holds state needed by the target to know where to place
1073 the next argument.
1074
1075 REG_PARM_STACK_SPACE is the number of bytes of stack space reserved
1076 for arguments which are passed in registers.
1077
1078 OLD_STACK_LEVEL is a pointer to an rtx which olds the old stack level
1079 and may be modified by this routine.
1080
1081 OLD_PENDING_ADJ, MUST_PREALLOCATE and FLAGS are pointers to integer
1082 flags which may may be modified by this routine.
1083
1084 MAY_TAILCALL is cleared if we encounter an invisible pass-by-reference
1085 that requires allocation of stack space.
1086
1087 CALL_FROM_THUNK_P is true if this call is the jump from a thunk to
1088 the thunked-to function. */
1089
1090 static void
1091 initialize_argument_information (int num_actuals ATTRIBUTE_UNUSED,
1092 struct arg_data *args,
1093 struct args_size *args_size,
1094 int n_named_args ATTRIBUTE_UNUSED,
1095 tree exp, tree struct_value_addr_value,
1096 tree fndecl, tree fntype,
1097 cumulative_args_t args_so_far,
1098 int reg_parm_stack_space,
1099 rtx *old_stack_level, int *old_pending_adj,
1100 int *must_preallocate, int *ecf_flags,
1101 bool *may_tailcall, bool call_from_thunk_p)
1102 {
1103 CUMULATIVE_ARGS *args_so_far_pnt = get_cumulative_args (args_so_far);
1104 location_t loc = EXPR_LOCATION (exp);
1105 /* 1 if scanning parms front to back, -1 if scanning back to front. */
1106 int inc;
1107
1108 /* Count arg position in order args appear. */
1109 int argpos;
1110
1111 int i;
1112
1113 args_size->constant = 0;
1114 args_size->var = 0;
1115
1116 /* In this loop, we consider args in the order they are written.
1117 We fill up ARGS from the front or from the back if necessary
1118 so that in any case the first arg to be pushed ends up at the front. */
1119
1120 if (PUSH_ARGS_REVERSED)
1121 {
1122 i = num_actuals - 1, inc = -1;
1123 /* In this case, must reverse order of args
1124 so that we compute and push the last arg first. */
1125 }
1126 else
1127 {
1128 i = 0, inc = 1;
1129 }
1130
1131 /* First fill in the actual arguments in the ARGS array, splitting
1132 complex arguments if necessary. */
1133 {
1134 int j = i;
1135 call_expr_arg_iterator iter;
1136 tree arg;
1137
1138 if (struct_value_addr_value)
1139 {
1140 args[j].tree_value = struct_value_addr_value;
1141 j += inc;
1142 }
1143 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
1144 {
1145 tree argtype = TREE_TYPE (arg);
1146 if (targetm.calls.split_complex_arg
1147 && argtype
1148 && TREE_CODE (argtype) == COMPLEX_TYPE
1149 && targetm.calls.split_complex_arg (argtype))
1150 {
1151 tree subtype = TREE_TYPE (argtype);
1152 args[j].tree_value = build1 (REALPART_EXPR, subtype, arg);
1153 j += inc;
1154 args[j].tree_value = build1 (IMAGPART_EXPR, subtype, arg);
1155 }
1156 else
1157 args[j].tree_value = arg;
1158 j += inc;
1159 }
1160 }
1161
1162 /* I counts args in order (to be) pushed; ARGPOS counts in order written. */
1163 for (argpos = 0; argpos < num_actuals; i += inc, argpos++)
1164 {
1165 tree type = TREE_TYPE (args[i].tree_value);
1166 int unsignedp;
1167 enum machine_mode mode;
1168
1169 /* Replace erroneous argument with constant zero. */
1170 if (type == error_mark_node || !COMPLETE_TYPE_P (type))
1171 args[i].tree_value = integer_zero_node, type = integer_type_node;
1172
1173 /* If TYPE is a transparent union or record, pass things the way
1174 we would pass the first field of the union or record. We have
1175 already verified that the modes are the same. */
1176 if ((TREE_CODE (type) == UNION_TYPE || TREE_CODE (type) == RECORD_TYPE)
1177 && TYPE_TRANSPARENT_AGGR (type))
1178 type = TREE_TYPE (first_field (type));
1179
1180 /* Decide where to pass this arg.
1181
1182 args[i].reg is nonzero if all or part is passed in registers.
1183
1184 args[i].partial is nonzero if part but not all is passed in registers,
1185 and the exact value says how many bytes are passed in registers.
1186
1187 args[i].pass_on_stack is nonzero if the argument must at least be
1188 computed on the stack. It may then be loaded back into registers
1189 if args[i].reg is nonzero.
1190
1191 These decisions are driven by the FUNCTION_... macros and must agree
1192 with those made by function.c. */
1193
1194 /* See if this argument should be passed by invisible reference. */
1195 if (pass_by_reference (args_so_far_pnt, TYPE_MODE (type),
1196 type, argpos < n_named_args))
1197 {
1198 bool callee_copies;
1199 tree base = NULL_TREE;
1200
1201 callee_copies
1202 = reference_callee_copied (args_so_far_pnt, TYPE_MODE (type),
1203 type, argpos < n_named_args);
1204
1205 /* If we're compiling a thunk, pass through invisible references
1206 instead of making a copy. */
1207 if (call_from_thunk_p
1208 || (callee_copies
1209 && !TREE_ADDRESSABLE (type)
1210 && (base = get_base_address (args[i].tree_value))
1211 && TREE_CODE (base) != SSA_NAME
1212 && (!DECL_P (base) || MEM_P (DECL_RTL (base)))))
1213 {
1214 mark_addressable (args[i].tree_value);
1215
1216 /* We can't use sibcalls if a callee-copied argument is
1217 stored in the current function's frame. */
1218 if (!call_from_thunk_p && DECL_P (base) && !TREE_STATIC (base))
1219 *may_tailcall = false;
1220
1221 args[i].tree_value = build_fold_addr_expr_loc (loc,
1222 args[i].tree_value);
1223 type = TREE_TYPE (args[i].tree_value);
1224
1225 if (*ecf_flags & ECF_CONST)
1226 *ecf_flags &= ~(ECF_CONST | ECF_LOOPING_CONST_OR_PURE);
1227 }
1228 else
1229 {
1230 /* We make a copy of the object and pass the address to the
1231 function being called. */
1232 rtx copy;
1233
1234 if (!COMPLETE_TYPE_P (type)
1235 || TREE_CODE (TYPE_SIZE_UNIT (type)) != INTEGER_CST
1236 || (flag_stack_check == GENERIC_STACK_CHECK
1237 && compare_tree_int (TYPE_SIZE_UNIT (type),
1238 STACK_CHECK_MAX_VAR_SIZE) > 0))
1239 {
1240 /* This is a variable-sized object. Make space on the stack
1241 for it. */
1242 rtx size_rtx = expr_size (args[i].tree_value);
1243
1244 if (*old_stack_level == 0)
1245 {
1246 emit_stack_save (SAVE_BLOCK, old_stack_level);
1247 *old_pending_adj = pending_stack_adjust;
1248 pending_stack_adjust = 0;
1249 }
1250
1251 /* We can pass TRUE as the 4th argument because we just
1252 saved the stack pointer and will restore it right after
1253 the call. */
1254 copy = allocate_dynamic_stack_space (size_rtx,
1255 TYPE_ALIGN (type),
1256 TYPE_ALIGN (type),
1257 true);
1258 copy = gen_rtx_MEM (BLKmode, copy);
1259 set_mem_attributes (copy, type, 1);
1260 }
1261 else
1262 copy = assign_temp (type, 1, 0);
1263
1264 store_expr (args[i].tree_value, copy, 0, false);
1265
1266 /* Just change the const function to pure and then let
1267 the next test clear the pure based on
1268 callee_copies. */
1269 if (*ecf_flags & ECF_CONST)
1270 {
1271 *ecf_flags &= ~ECF_CONST;
1272 *ecf_flags |= ECF_PURE;
1273 }
1274
1275 if (!callee_copies && *ecf_flags & ECF_PURE)
1276 *ecf_flags &= ~(ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
1277
1278 args[i].tree_value
1279 = build_fold_addr_expr_loc (loc, make_tree (type, copy));
1280 type = TREE_TYPE (args[i].tree_value);
1281 *may_tailcall = false;
1282 }
1283 }
1284
1285 unsignedp = TYPE_UNSIGNED (type);
1286 mode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
1287 fndecl ? TREE_TYPE (fndecl) : fntype, 0);
1288
1289 args[i].unsignedp = unsignedp;
1290 args[i].mode = mode;
1291
1292 args[i].reg = targetm.calls.function_arg (args_so_far, mode, type,
1293 argpos < n_named_args);
1294
1295 /* If this is a sibling call and the machine has register windows, the
1296 register window has to be unwinded before calling the routine, so
1297 arguments have to go into the incoming registers. */
1298 if (targetm.calls.function_incoming_arg != targetm.calls.function_arg)
1299 args[i].tail_call_reg
1300 = targetm.calls.function_incoming_arg (args_so_far, mode, type,
1301 argpos < n_named_args);
1302 else
1303 args[i].tail_call_reg = args[i].reg;
1304
1305 if (args[i].reg)
1306 args[i].partial
1307 = targetm.calls.arg_partial_bytes (args_so_far, mode, type,
1308 argpos < n_named_args);
1309
1310 args[i].pass_on_stack = targetm.calls.must_pass_in_stack (mode, type);
1311
1312 /* If FUNCTION_ARG returned a (parallel [(expr_list (nil) ...) ...]),
1313 it means that we are to pass this arg in the register(s) designated
1314 by the PARALLEL, but also to pass it in the stack. */
1315 if (args[i].reg && GET_CODE (args[i].reg) == PARALLEL
1316 && XEXP (XVECEXP (args[i].reg, 0, 0), 0) == 0)
1317 args[i].pass_on_stack = 1;
1318
1319 /* If this is an addressable type, we must preallocate the stack
1320 since we must evaluate the object into its final location.
1321
1322 If this is to be passed in both registers and the stack, it is simpler
1323 to preallocate. */
1324 if (TREE_ADDRESSABLE (type)
1325 || (args[i].pass_on_stack && args[i].reg != 0))
1326 *must_preallocate = 1;
1327
1328 /* Compute the stack-size of this argument. */
1329 if (args[i].reg == 0 || args[i].partial != 0
1330 || reg_parm_stack_space > 0
1331 || args[i].pass_on_stack)
1332 locate_and_pad_parm (mode, type,
1333 #ifdef STACK_PARMS_IN_REG_PARM_AREA
1334 1,
1335 #else
1336 args[i].reg != 0,
1337 #endif
1338 reg_parm_stack_space,
1339 args[i].pass_on_stack ? 0 : args[i].partial,
1340 fndecl, args_size, &args[i].locate);
1341 #ifdef BLOCK_REG_PADDING
1342 else
1343 /* The argument is passed entirely in registers. See at which
1344 end it should be padded. */
1345 args[i].locate.where_pad =
1346 BLOCK_REG_PADDING (mode, type,
1347 int_size_in_bytes (type) <= UNITS_PER_WORD);
1348 #endif
1349
1350 /* Update ARGS_SIZE, the total stack space for args so far. */
1351
1352 args_size->constant += args[i].locate.size.constant;
1353 if (args[i].locate.size.var)
1354 ADD_PARM_SIZE (*args_size, args[i].locate.size.var);
1355
1356 /* Increment ARGS_SO_FAR, which has info about which arg-registers
1357 have been used, etc. */
1358
1359 targetm.calls.function_arg_advance (args_so_far, TYPE_MODE (type),
1360 type, argpos < n_named_args);
1361 }
1362 }
1363
1364 /* Update ARGS_SIZE to contain the total size for the argument block.
1365 Return the original constant component of the argument block's size.
1366
1367 REG_PARM_STACK_SPACE holds the number of bytes of stack space reserved
1368 for arguments passed in registers. */
1369
1370 static int
1371 compute_argument_block_size (int reg_parm_stack_space,
1372 struct args_size *args_size,
1373 tree fndecl ATTRIBUTE_UNUSED,
1374 tree fntype ATTRIBUTE_UNUSED,
1375 int preferred_stack_boundary ATTRIBUTE_UNUSED)
1376 {
1377 int unadjusted_args_size = args_size->constant;
1378
1379 /* For accumulate outgoing args mode we don't need to align, since the frame
1380 will be already aligned. Align to STACK_BOUNDARY in order to prevent
1381 backends from generating misaligned frame sizes. */
1382 if (ACCUMULATE_OUTGOING_ARGS && preferred_stack_boundary > STACK_BOUNDARY)
1383 preferred_stack_boundary = STACK_BOUNDARY;
1384
1385 /* Compute the actual size of the argument block required. The variable
1386 and constant sizes must be combined, the size may have to be rounded,
1387 and there may be a minimum required size. */
1388
1389 if (args_size->var)
1390 {
1391 args_size->var = ARGS_SIZE_TREE (*args_size);
1392 args_size->constant = 0;
1393
1394 preferred_stack_boundary /= BITS_PER_UNIT;
1395 if (preferred_stack_boundary > 1)
1396 {
1397 /* We don't handle this case yet. To handle it correctly we have
1398 to add the delta, round and subtract the delta.
1399 Currently no machine description requires this support. */
1400 gcc_assert (!(stack_pointer_delta & (preferred_stack_boundary - 1)));
1401 args_size->var = round_up (args_size->var, preferred_stack_boundary);
1402 }
1403
1404 if (reg_parm_stack_space > 0)
1405 {
1406 args_size->var
1407 = size_binop (MAX_EXPR, args_size->var,
1408 ssize_int (reg_parm_stack_space));
1409
1410 /* The area corresponding to register parameters is not to count in
1411 the size of the block we need. So make the adjustment. */
1412 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1413 args_size->var
1414 = size_binop (MINUS_EXPR, args_size->var,
1415 ssize_int (reg_parm_stack_space));
1416 }
1417 }
1418 else
1419 {
1420 preferred_stack_boundary /= BITS_PER_UNIT;
1421 if (preferred_stack_boundary < 1)
1422 preferred_stack_boundary = 1;
1423 args_size->constant = (((args_size->constant
1424 + stack_pointer_delta
1425 + preferred_stack_boundary - 1)
1426 / preferred_stack_boundary
1427 * preferred_stack_boundary)
1428 - stack_pointer_delta);
1429
1430 args_size->constant = MAX (args_size->constant,
1431 reg_parm_stack_space);
1432
1433 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
1434 args_size->constant -= reg_parm_stack_space;
1435 }
1436 return unadjusted_args_size;
1437 }
1438
1439 /* Precompute parameters as needed for a function call.
1440
1441 FLAGS is mask of ECF_* constants.
1442
1443 NUM_ACTUALS is the number of arguments.
1444
1445 ARGS is an array containing information for each argument; this
1446 routine fills in the INITIAL_VALUE and VALUE fields for each
1447 precomputed argument. */
1448
1449 static void
1450 precompute_arguments (int num_actuals, struct arg_data *args)
1451 {
1452 int i;
1453
1454 /* If this is a libcall, then precompute all arguments so that we do not
1455 get extraneous instructions emitted as part of the libcall sequence. */
1456
1457 /* If we preallocated the stack space, and some arguments must be passed
1458 on the stack, then we must precompute any parameter which contains a
1459 function call which will store arguments on the stack.
1460 Otherwise, evaluating the parameter may clobber previous parameters
1461 which have already been stored into the stack. (we have code to avoid
1462 such case by saving the outgoing stack arguments, but it results in
1463 worse code) */
1464 if (!ACCUMULATE_OUTGOING_ARGS)
1465 return;
1466
1467 for (i = 0; i < num_actuals; i++)
1468 {
1469 tree type;
1470 enum machine_mode mode;
1471
1472 if (TREE_CODE (args[i].tree_value) != CALL_EXPR)
1473 continue;
1474
1475 /* If this is an addressable type, we cannot pre-evaluate it. */
1476 type = TREE_TYPE (args[i].tree_value);
1477 gcc_assert (!TREE_ADDRESSABLE (type));
1478
1479 args[i].initial_value = args[i].value
1480 = expand_normal (args[i].tree_value);
1481
1482 mode = TYPE_MODE (type);
1483 if (mode != args[i].mode)
1484 {
1485 int unsignedp = args[i].unsignedp;
1486 args[i].value
1487 = convert_modes (args[i].mode, mode,
1488 args[i].value, args[i].unsignedp);
1489
1490 /* CSE will replace this only if it contains args[i].value
1491 pseudo, so convert it down to the declared mode using
1492 a SUBREG. */
1493 if (REG_P (args[i].value)
1494 && GET_MODE_CLASS (args[i].mode) == MODE_INT
1495 && promote_mode (type, mode, &unsignedp) != args[i].mode)
1496 {
1497 args[i].initial_value
1498 = gen_lowpart_SUBREG (mode, args[i].value);
1499 SUBREG_PROMOTED_VAR_P (args[i].initial_value) = 1;
1500 SUBREG_PROMOTED_UNSIGNED_SET (args[i].initial_value,
1501 args[i].unsignedp);
1502 }
1503 }
1504 }
1505 }
1506
1507 /* Given the current state of MUST_PREALLOCATE and information about
1508 arguments to a function call in NUM_ACTUALS, ARGS and ARGS_SIZE,
1509 compute and return the final value for MUST_PREALLOCATE. */
1510
1511 static int
1512 finalize_must_preallocate (int must_preallocate, int num_actuals,
1513 struct arg_data *args, struct args_size *args_size)
1514 {
1515 /* See if we have or want to preallocate stack space.
1516
1517 If we would have to push a partially-in-regs parm
1518 before other stack parms, preallocate stack space instead.
1519
1520 If the size of some parm is not a multiple of the required stack
1521 alignment, we must preallocate.
1522
1523 If the total size of arguments that would otherwise create a copy in
1524 a temporary (such as a CALL) is more than half the total argument list
1525 size, preallocation is faster.
1526
1527 Another reason to preallocate is if we have a machine (like the m88k)
1528 where stack alignment is required to be maintained between every
1529 pair of insns, not just when the call is made. However, we assume here
1530 that such machines either do not have push insns (and hence preallocation
1531 would occur anyway) or the problem is taken care of with
1532 PUSH_ROUNDING. */
1533
1534 if (! must_preallocate)
1535 {
1536 int partial_seen = 0;
1537 int copy_to_evaluate_size = 0;
1538 int i;
1539
1540 for (i = 0; i < num_actuals && ! must_preallocate; i++)
1541 {
1542 if (args[i].partial > 0 && ! args[i].pass_on_stack)
1543 partial_seen = 1;
1544 else if (partial_seen && args[i].reg == 0)
1545 must_preallocate = 1;
1546
1547 if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode
1548 && (TREE_CODE (args[i].tree_value) == CALL_EXPR
1549 || TREE_CODE (args[i].tree_value) == TARGET_EXPR
1550 || TREE_CODE (args[i].tree_value) == COND_EXPR
1551 || TREE_ADDRESSABLE (TREE_TYPE (args[i].tree_value))))
1552 copy_to_evaluate_size
1553 += int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1554 }
1555
1556 if (copy_to_evaluate_size * 2 >= args_size->constant
1557 && args_size->constant > 0)
1558 must_preallocate = 1;
1559 }
1560 return must_preallocate;
1561 }
1562
1563 /* If we preallocated stack space, compute the address of each argument
1564 and store it into the ARGS array.
1565
1566 We need not ensure it is a valid memory address here; it will be
1567 validized when it is used.
1568
1569 ARGBLOCK is an rtx for the address of the outgoing arguments. */
1570
1571 static void
1572 compute_argument_addresses (struct arg_data *args, rtx argblock, int num_actuals)
1573 {
1574 if (argblock)
1575 {
1576 rtx arg_reg = argblock;
1577 int i, arg_offset = 0;
1578
1579 if (GET_CODE (argblock) == PLUS)
1580 arg_reg = XEXP (argblock, 0), arg_offset = INTVAL (XEXP (argblock, 1));
1581
1582 for (i = 0; i < num_actuals; i++)
1583 {
1584 rtx offset = ARGS_SIZE_RTX (args[i].locate.offset);
1585 rtx slot_offset = ARGS_SIZE_RTX (args[i].locate.slot_offset);
1586 rtx addr;
1587 unsigned int align, boundary;
1588 unsigned int units_on_stack = 0;
1589 enum machine_mode partial_mode = VOIDmode;
1590
1591 /* Skip this parm if it will not be passed on the stack. */
1592 if (! args[i].pass_on_stack
1593 && args[i].reg != 0
1594 && args[i].partial == 0)
1595 continue;
1596
1597 if (CONST_INT_P (offset))
1598 addr = plus_constant (Pmode, arg_reg, INTVAL (offset));
1599 else
1600 addr = gen_rtx_PLUS (Pmode, arg_reg, offset);
1601
1602 addr = plus_constant (Pmode, addr, arg_offset);
1603
1604 if (args[i].partial != 0)
1605 {
1606 /* Only part of the parameter is being passed on the stack.
1607 Generate a simple memory reference of the correct size. */
1608 units_on_stack = args[i].locate.size.constant;
1609 partial_mode = mode_for_size (units_on_stack * BITS_PER_UNIT,
1610 MODE_INT, 1);
1611 args[i].stack = gen_rtx_MEM (partial_mode, addr);
1612 set_mem_size (args[i].stack, units_on_stack);
1613 }
1614 else
1615 {
1616 args[i].stack = gen_rtx_MEM (args[i].mode, addr);
1617 set_mem_attributes (args[i].stack,
1618 TREE_TYPE (args[i].tree_value), 1);
1619 }
1620 align = BITS_PER_UNIT;
1621 boundary = args[i].locate.boundary;
1622 if (args[i].locate.where_pad != downward)
1623 align = boundary;
1624 else if (CONST_INT_P (offset))
1625 {
1626 align = INTVAL (offset) * BITS_PER_UNIT | boundary;
1627 align = align & -align;
1628 }
1629 set_mem_align (args[i].stack, align);
1630
1631 if (CONST_INT_P (slot_offset))
1632 addr = plus_constant (Pmode, arg_reg, INTVAL (slot_offset));
1633 else
1634 addr = gen_rtx_PLUS (Pmode, arg_reg, slot_offset);
1635
1636 addr = plus_constant (Pmode, addr, arg_offset);
1637
1638 if (args[i].partial != 0)
1639 {
1640 /* Only part of the parameter is being passed on the stack.
1641 Generate a simple memory reference of the correct size.
1642 */
1643 args[i].stack_slot = gen_rtx_MEM (partial_mode, addr);
1644 set_mem_size (args[i].stack_slot, units_on_stack);
1645 }
1646 else
1647 {
1648 args[i].stack_slot = gen_rtx_MEM (args[i].mode, addr);
1649 set_mem_attributes (args[i].stack_slot,
1650 TREE_TYPE (args[i].tree_value), 1);
1651 }
1652 set_mem_align (args[i].stack_slot, args[i].locate.boundary);
1653
1654 /* Function incoming arguments may overlap with sibling call
1655 outgoing arguments and we cannot allow reordering of reads
1656 from function arguments with stores to outgoing arguments
1657 of sibling calls. */
1658 set_mem_alias_set (args[i].stack, 0);
1659 set_mem_alias_set (args[i].stack_slot, 0);
1660 }
1661 }
1662 }
1663
1664 /* Given a FNDECL and EXP, return an rtx suitable for use as a target address
1665 in a call instruction.
1666
1667 FNDECL is the tree node for the target function. For an indirect call
1668 FNDECL will be NULL_TREE.
1669
1670 ADDR is the operand 0 of CALL_EXPR for this call. */
1671
1672 static rtx
1673 rtx_for_function_call (tree fndecl, tree addr)
1674 {
1675 rtx funexp;
1676
1677 /* Get the function to call, in the form of RTL. */
1678 if (fndecl)
1679 {
1680 if (!TREE_USED (fndecl) && fndecl != current_function_decl)
1681 TREE_USED (fndecl) = 1;
1682
1683 /* Get a SYMBOL_REF rtx for the function address. */
1684 funexp = XEXP (DECL_RTL (fndecl), 0);
1685 }
1686 else
1687 /* Generate an rtx (probably a pseudo-register) for the address. */
1688 {
1689 push_temp_slots ();
1690 funexp = expand_normal (addr);
1691 pop_temp_slots (); /* FUNEXP can't be BLKmode. */
1692 }
1693 return funexp;
1694 }
1695
1696 /* Internal state for internal_arg_pointer_based_exp and its helpers. */
1697 static struct
1698 {
1699 /* Last insn that has been scanned by internal_arg_pointer_based_exp_scan,
1700 or NULL_RTX if none has been scanned yet. */
1701 rtx scan_start;
1702 /* Vector indexed by REGNO - FIRST_PSEUDO_REGISTER, recording if a pseudo is
1703 based on crtl->args.internal_arg_pointer. The element is NULL_RTX if the
1704 pseudo isn't based on it, a CONST_INT offset if the pseudo is based on it
1705 with fixed offset, or PC if this is with variable or unknown offset. */
1706 vec<rtx> cache;
1707 } internal_arg_pointer_exp_state;
1708
1709 static rtx internal_arg_pointer_based_exp (rtx, bool);
1710
1711 /* Helper function for internal_arg_pointer_based_exp. Scan insns in
1712 the tail call sequence, starting with first insn that hasn't been
1713 scanned yet, and note for each pseudo on the LHS whether it is based
1714 on crtl->args.internal_arg_pointer or not, and what offset from that
1715 that pointer it has. */
1716
1717 static void
1718 internal_arg_pointer_based_exp_scan (void)
1719 {
1720 rtx insn, scan_start = internal_arg_pointer_exp_state.scan_start;
1721
1722 if (scan_start == NULL_RTX)
1723 insn = get_insns ();
1724 else
1725 insn = NEXT_INSN (scan_start);
1726
1727 while (insn)
1728 {
1729 rtx set = single_set (insn);
1730 if (set && REG_P (SET_DEST (set)) && !HARD_REGISTER_P (SET_DEST (set)))
1731 {
1732 rtx val = NULL_RTX;
1733 unsigned int idx = REGNO (SET_DEST (set)) - FIRST_PSEUDO_REGISTER;
1734 /* Punt on pseudos set multiple times. */
1735 if (idx < internal_arg_pointer_exp_state.cache.length ()
1736 && (internal_arg_pointer_exp_state.cache[idx]
1737 != NULL_RTX))
1738 val = pc_rtx;
1739 else
1740 val = internal_arg_pointer_based_exp (SET_SRC (set), false);
1741 if (val != NULL_RTX)
1742 {
1743 if (idx >= internal_arg_pointer_exp_state.cache.length ())
1744 internal_arg_pointer_exp_state.cache
1745 .safe_grow_cleared (idx + 1);
1746 internal_arg_pointer_exp_state.cache[idx] = val;
1747 }
1748 }
1749 if (NEXT_INSN (insn) == NULL_RTX)
1750 scan_start = insn;
1751 insn = NEXT_INSN (insn);
1752 }
1753
1754 internal_arg_pointer_exp_state.scan_start = scan_start;
1755 }
1756
1757 /* Helper function for internal_arg_pointer_based_exp, called through
1758 for_each_rtx. Return 1 if *LOC is a register based on
1759 crtl->args.internal_arg_pointer. Return -1 if *LOC is not based on it
1760 and the subexpressions need not be examined. Otherwise return 0. */
1761
1762 static int
1763 internal_arg_pointer_based_exp_1 (rtx *loc, void *data ATTRIBUTE_UNUSED)
1764 {
1765 if (REG_P (*loc) && internal_arg_pointer_based_exp (*loc, false) != NULL_RTX)
1766 return 1;
1767 if (MEM_P (*loc))
1768 return -1;
1769 return 0;
1770 }
1771
1772 /* Compute whether RTL is based on crtl->args.internal_arg_pointer. Return
1773 NULL_RTX if RTL isn't based on it, a CONST_INT offset if RTL is based on
1774 it with fixed offset, or PC if this is with variable or unknown offset.
1775 TOPLEVEL is true if the function is invoked at the topmost level. */
1776
1777 static rtx
1778 internal_arg_pointer_based_exp (rtx rtl, bool toplevel)
1779 {
1780 if (CONSTANT_P (rtl))
1781 return NULL_RTX;
1782
1783 if (rtl == crtl->args.internal_arg_pointer)
1784 return const0_rtx;
1785
1786 if (REG_P (rtl) && HARD_REGISTER_P (rtl))
1787 return NULL_RTX;
1788
1789 if (GET_CODE (rtl) == PLUS && CONST_INT_P (XEXP (rtl, 1)))
1790 {
1791 rtx val = internal_arg_pointer_based_exp (XEXP (rtl, 0), toplevel);
1792 if (val == NULL_RTX || val == pc_rtx)
1793 return val;
1794 return plus_constant (Pmode, val, INTVAL (XEXP (rtl, 1)));
1795 }
1796
1797 /* When called at the topmost level, scan pseudo assignments in between the
1798 last scanned instruction in the tail call sequence and the latest insn
1799 in that sequence. */
1800 if (toplevel)
1801 internal_arg_pointer_based_exp_scan ();
1802
1803 if (REG_P (rtl))
1804 {
1805 unsigned int idx = REGNO (rtl) - FIRST_PSEUDO_REGISTER;
1806 if (idx < internal_arg_pointer_exp_state.cache.length ())
1807 return internal_arg_pointer_exp_state.cache[idx];
1808
1809 return NULL_RTX;
1810 }
1811
1812 if (for_each_rtx (&rtl, internal_arg_pointer_based_exp_1, NULL))
1813 return pc_rtx;
1814
1815 return NULL_RTX;
1816 }
1817
1818 /* Return true if and only if SIZE storage units (usually bytes)
1819 starting from address ADDR overlap with already clobbered argument
1820 area. This function is used to determine if we should give up a
1821 sibcall. */
1822
1823 static bool
1824 mem_overlaps_already_clobbered_arg_p (rtx addr, unsigned HOST_WIDE_INT size)
1825 {
1826 HOST_WIDE_INT i;
1827 rtx val;
1828
1829 if (bitmap_empty_p (stored_args_map))
1830 return false;
1831 val = internal_arg_pointer_based_exp (addr, true);
1832 if (val == NULL_RTX)
1833 return false;
1834 else if (val == pc_rtx)
1835 return true;
1836 else
1837 i = INTVAL (val);
1838 #ifdef STACK_GROWS_DOWNWARD
1839 i -= crtl->args.pretend_args_size;
1840 #else
1841 i += crtl->args.pretend_args_size;
1842 #endif
1843
1844 #ifdef ARGS_GROW_DOWNWARD
1845 i = -i - size;
1846 #endif
1847 if (size > 0)
1848 {
1849 unsigned HOST_WIDE_INT k;
1850
1851 for (k = 0; k < size; k++)
1852 if (i + k < SBITMAP_SIZE (stored_args_map)
1853 && bitmap_bit_p (stored_args_map, i + k))
1854 return true;
1855 }
1856
1857 return false;
1858 }
1859
1860 /* Do the register loads required for any wholly-register parms or any
1861 parms which are passed both on the stack and in a register. Their
1862 expressions were already evaluated.
1863
1864 Mark all register-parms as living through the call, putting these USE
1865 insns in the CALL_INSN_FUNCTION_USAGE field.
1866
1867 When IS_SIBCALL, perform the check_sibcall_argument_overlap
1868 checking, setting *SIBCALL_FAILURE if appropriate. */
1869
1870 static void
1871 load_register_parameters (struct arg_data *args, int num_actuals,
1872 rtx *call_fusage, int flags, int is_sibcall,
1873 int *sibcall_failure)
1874 {
1875 int i, j;
1876
1877 for (i = 0; i < num_actuals; i++)
1878 {
1879 rtx reg = ((flags & ECF_SIBCALL)
1880 ? args[i].tail_call_reg : args[i].reg);
1881 if (reg)
1882 {
1883 int partial = args[i].partial;
1884 int nregs;
1885 int size = 0;
1886 rtx before_arg = get_last_insn ();
1887 /* Set non-negative if we must move a word at a time, even if
1888 just one word (e.g, partial == 4 && mode == DFmode). Set
1889 to -1 if we just use a normal move insn. This value can be
1890 zero if the argument is a zero size structure. */
1891 nregs = -1;
1892 if (GET_CODE (reg) == PARALLEL)
1893 ;
1894 else if (partial)
1895 {
1896 gcc_assert (partial % UNITS_PER_WORD == 0);
1897 nregs = partial / UNITS_PER_WORD;
1898 }
1899 else if (TYPE_MODE (TREE_TYPE (args[i].tree_value)) == BLKmode)
1900 {
1901 size = int_size_in_bytes (TREE_TYPE (args[i].tree_value));
1902 nregs = (size + (UNITS_PER_WORD - 1)) / UNITS_PER_WORD;
1903 }
1904 else
1905 size = GET_MODE_SIZE (args[i].mode);
1906
1907 /* Handle calls that pass values in multiple non-contiguous
1908 locations. The Irix 6 ABI has examples of this. */
1909
1910 if (GET_CODE (reg) == PARALLEL)
1911 emit_group_move (reg, args[i].parallel_value);
1912
1913 /* If simple case, just do move. If normal partial, store_one_arg
1914 has already loaded the register for us. In all other cases,
1915 load the register(s) from memory. */
1916
1917 else if (nregs == -1)
1918 {
1919 emit_move_insn (reg, args[i].value);
1920 #ifdef BLOCK_REG_PADDING
1921 /* Handle case where we have a value that needs shifting
1922 up to the msb. eg. a QImode value and we're padding
1923 upward on a BYTES_BIG_ENDIAN machine. */
1924 if (size < UNITS_PER_WORD
1925 && (args[i].locate.where_pad
1926 == (BYTES_BIG_ENDIAN ? upward : downward)))
1927 {
1928 rtx x;
1929 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
1930
1931 /* Assigning REG here rather than a temp makes CALL_FUSAGE
1932 report the whole reg as used. Strictly speaking, the
1933 call only uses SIZE bytes at the msb end, but it doesn't
1934 seem worth generating rtl to say that. */
1935 reg = gen_rtx_REG (word_mode, REGNO (reg));
1936 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
1937 if (x != reg)
1938 emit_move_insn (reg, x);
1939 }
1940 #endif
1941 }
1942
1943 /* If we have pre-computed the values to put in the registers in
1944 the case of non-aligned structures, copy them in now. */
1945
1946 else if (args[i].n_aligned_regs != 0)
1947 for (j = 0; j < args[i].n_aligned_regs; j++)
1948 emit_move_insn (gen_rtx_REG (word_mode, REGNO (reg) + j),
1949 args[i].aligned_regs[j]);
1950
1951 else if (partial == 0 || args[i].pass_on_stack)
1952 {
1953 rtx mem = validize_mem (args[i].value);
1954
1955 /* Check for overlap with already clobbered argument area,
1956 providing that this has non-zero size. */
1957 if (is_sibcall
1958 && (size == 0
1959 || mem_overlaps_already_clobbered_arg_p
1960 (XEXP (args[i].value, 0), size)))
1961 *sibcall_failure = 1;
1962
1963 /* Handle a BLKmode that needs shifting. */
1964 if (nregs == 1 && size < UNITS_PER_WORD
1965 #ifdef BLOCK_REG_PADDING
1966 && args[i].locate.where_pad == downward
1967 #else
1968 && BYTES_BIG_ENDIAN
1969 #endif
1970 )
1971 {
1972 rtx tem = operand_subword_force (mem, 0, args[i].mode);
1973 rtx ri = gen_rtx_REG (word_mode, REGNO (reg));
1974 rtx x = gen_reg_rtx (word_mode);
1975 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
1976 enum tree_code dir = BYTES_BIG_ENDIAN ? RSHIFT_EXPR
1977 : LSHIFT_EXPR;
1978
1979 emit_move_insn (x, tem);
1980 x = expand_shift (dir, word_mode, x, shift, ri, 1);
1981 if (x != ri)
1982 emit_move_insn (ri, x);
1983 }
1984 else
1985 move_block_to_reg (REGNO (reg), mem, nregs, args[i].mode);
1986 }
1987
1988 /* When a parameter is a block, and perhaps in other cases, it is
1989 possible that it did a load from an argument slot that was
1990 already clobbered. */
1991 if (is_sibcall
1992 && check_sibcall_argument_overlap (before_arg, &args[i], 0))
1993 *sibcall_failure = 1;
1994
1995 /* Handle calls that pass values in multiple non-contiguous
1996 locations. The Irix 6 ABI has examples of this. */
1997 if (GET_CODE (reg) == PARALLEL)
1998 use_group_regs (call_fusage, reg);
1999 else if (nregs == -1)
2000 use_reg_mode (call_fusage, reg,
2001 TYPE_MODE (TREE_TYPE (args[i].tree_value)));
2002 else if (nregs > 0)
2003 use_regs (call_fusage, REGNO (reg), nregs);
2004 }
2005 }
2006 }
2007
2008 /* We need to pop PENDING_STACK_ADJUST bytes. But, if the arguments
2009 wouldn't fill up an even multiple of PREFERRED_UNIT_STACK_BOUNDARY
2010 bytes, then we would need to push some additional bytes to pad the
2011 arguments. So, we compute an adjust to the stack pointer for an
2012 amount that will leave the stack under-aligned by UNADJUSTED_ARGS_SIZE
2013 bytes. Then, when the arguments are pushed the stack will be perfectly
2014 aligned. ARGS_SIZE->CONSTANT is set to the number of bytes that should
2015 be popped after the call. Returns the adjustment. */
2016
2017 static int
2018 combine_pending_stack_adjustment_and_call (int unadjusted_args_size,
2019 struct args_size *args_size,
2020 unsigned int preferred_unit_stack_boundary)
2021 {
2022 /* The number of bytes to pop so that the stack will be
2023 under-aligned by UNADJUSTED_ARGS_SIZE bytes. */
2024 HOST_WIDE_INT adjustment;
2025 /* The alignment of the stack after the arguments are pushed, if we
2026 just pushed the arguments without adjust the stack here. */
2027 unsigned HOST_WIDE_INT unadjusted_alignment;
2028
2029 unadjusted_alignment
2030 = ((stack_pointer_delta + unadjusted_args_size)
2031 % preferred_unit_stack_boundary);
2032
2033 /* We want to get rid of as many of the PENDING_STACK_ADJUST bytes
2034 as possible -- leaving just enough left to cancel out the
2035 UNADJUSTED_ALIGNMENT. In other words, we want to ensure that the
2036 PENDING_STACK_ADJUST is non-negative, and congruent to
2037 -UNADJUSTED_ALIGNMENT modulo the PREFERRED_UNIT_STACK_BOUNDARY. */
2038
2039 /* Begin by trying to pop all the bytes. */
2040 unadjusted_alignment
2041 = (unadjusted_alignment
2042 - (pending_stack_adjust % preferred_unit_stack_boundary));
2043 adjustment = pending_stack_adjust;
2044 /* Push enough additional bytes that the stack will be aligned
2045 after the arguments are pushed. */
2046 if (preferred_unit_stack_boundary > 1)
2047 {
2048 if (unadjusted_alignment > 0)
2049 adjustment -= preferred_unit_stack_boundary - unadjusted_alignment;
2050 else
2051 adjustment += unadjusted_alignment;
2052 }
2053
2054 /* Now, sets ARGS_SIZE->CONSTANT so that we pop the right number of
2055 bytes after the call. The right number is the entire
2056 PENDING_STACK_ADJUST less our ADJUSTMENT plus the amount required
2057 by the arguments in the first place. */
2058 args_size->constant
2059 = pending_stack_adjust - adjustment + unadjusted_args_size;
2060
2061 return adjustment;
2062 }
2063
2064 /* Scan X expression if it does not dereference any argument slots
2065 we already clobbered by tail call arguments (as noted in stored_args_map
2066 bitmap).
2067 Return nonzero if X expression dereferences such argument slots,
2068 zero otherwise. */
2069
2070 static int
2071 check_sibcall_argument_overlap_1 (rtx x)
2072 {
2073 RTX_CODE code;
2074 int i, j;
2075 const char *fmt;
2076
2077 if (x == NULL_RTX)
2078 return 0;
2079
2080 code = GET_CODE (x);
2081
2082 /* We need not check the operands of the CALL expression itself. */
2083 if (code == CALL)
2084 return 0;
2085
2086 if (code == MEM)
2087 return mem_overlaps_already_clobbered_arg_p (XEXP (x, 0),
2088 GET_MODE_SIZE (GET_MODE (x)));
2089
2090 /* Scan all subexpressions. */
2091 fmt = GET_RTX_FORMAT (code);
2092 for (i = 0; i < GET_RTX_LENGTH (code); i++, fmt++)
2093 {
2094 if (*fmt == 'e')
2095 {
2096 if (check_sibcall_argument_overlap_1 (XEXP (x, i)))
2097 return 1;
2098 }
2099 else if (*fmt == 'E')
2100 {
2101 for (j = 0; j < XVECLEN (x, i); j++)
2102 if (check_sibcall_argument_overlap_1 (XVECEXP (x, i, j)))
2103 return 1;
2104 }
2105 }
2106 return 0;
2107 }
2108
2109 /* Scan sequence after INSN if it does not dereference any argument slots
2110 we already clobbered by tail call arguments (as noted in stored_args_map
2111 bitmap). If MARK_STORED_ARGS_MAP, add stack slots for ARG to
2112 stored_args_map bitmap afterwards (when ARG is a register MARK_STORED_ARGS_MAP
2113 should be 0). Return nonzero if sequence after INSN dereferences such argument
2114 slots, zero otherwise. */
2115
2116 static int
2117 check_sibcall_argument_overlap (rtx insn, struct arg_data *arg, int mark_stored_args_map)
2118 {
2119 int low, high;
2120
2121 if (insn == NULL_RTX)
2122 insn = get_insns ();
2123 else
2124 insn = NEXT_INSN (insn);
2125
2126 for (; insn; insn = NEXT_INSN (insn))
2127 if (INSN_P (insn)
2128 && check_sibcall_argument_overlap_1 (PATTERN (insn)))
2129 break;
2130
2131 if (mark_stored_args_map)
2132 {
2133 #ifdef ARGS_GROW_DOWNWARD
2134 low = -arg->locate.slot_offset.constant - arg->locate.size.constant;
2135 #else
2136 low = arg->locate.slot_offset.constant;
2137 #endif
2138
2139 for (high = low + arg->locate.size.constant; low < high; low++)
2140 bitmap_set_bit (stored_args_map, low);
2141 }
2142 return insn != NULL_RTX;
2143 }
2144
2145 /* Given that a function returns a value of mode MODE at the most
2146 significant end of hard register VALUE, shift VALUE left or right
2147 as specified by LEFT_P. Return true if some action was needed. */
2148
2149 bool
2150 shift_return_value (enum machine_mode mode, bool left_p, rtx value)
2151 {
2152 HOST_WIDE_INT shift;
2153
2154 gcc_assert (REG_P (value) && HARD_REGISTER_P (value));
2155 shift = GET_MODE_BITSIZE (GET_MODE (value)) - GET_MODE_BITSIZE (mode);
2156 if (shift == 0)
2157 return false;
2158
2159 /* Use ashr rather than lshr for right shifts. This is for the benefit
2160 of the MIPS port, which requires SImode values to be sign-extended
2161 when stored in 64-bit registers. */
2162 if (!force_expand_binop (GET_MODE (value), left_p ? ashl_optab : ashr_optab,
2163 value, GEN_INT (shift), value, 1, OPTAB_WIDEN))
2164 gcc_unreachable ();
2165 return true;
2166 }
2167
2168 /* If X is a likely-spilled register value, copy it to a pseudo
2169 register and return that register. Return X otherwise. */
2170
2171 static rtx
2172 avoid_likely_spilled_reg (rtx x)
2173 {
2174 rtx new_rtx;
2175
2176 if (REG_P (x)
2177 && HARD_REGISTER_P (x)
2178 && targetm.class_likely_spilled_p (REGNO_REG_CLASS (REGNO (x))))
2179 {
2180 /* Make sure that we generate a REG rather than a CONCAT.
2181 Moves into CONCATs can need nontrivial instructions,
2182 and the whole point of this function is to avoid
2183 using the hard register directly in such a situation. */
2184 generating_concat_p = 0;
2185 new_rtx = gen_reg_rtx (GET_MODE (x));
2186 generating_concat_p = 1;
2187 emit_move_insn (new_rtx, x);
2188 return new_rtx;
2189 }
2190 return x;
2191 }
2192
2193 /* Generate all the code for a CALL_EXPR exp
2194 and return an rtx for its value.
2195 Store the value in TARGET (specified as an rtx) if convenient.
2196 If the value is stored in TARGET then TARGET is returned.
2197 If IGNORE is nonzero, then we ignore the value of the function call. */
2198
2199 rtx
2200 expand_call (tree exp, rtx target, int ignore)
2201 {
2202 /* Nonzero if we are currently expanding a call. */
2203 static int currently_expanding_call = 0;
2204
2205 /* RTX for the function to be called. */
2206 rtx funexp;
2207 /* Sequence of insns to perform a normal "call". */
2208 rtx normal_call_insns = NULL_RTX;
2209 /* Sequence of insns to perform a tail "call". */
2210 rtx tail_call_insns = NULL_RTX;
2211 /* Data type of the function. */
2212 tree funtype;
2213 tree type_arg_types;
2214 tree rettype;
2215 /* Declaration of the function being called,
2216 or 0 if the function is computed (not known by name). */
2217 tree fndecl = 0;
2218 /* The type of the function being called. */
2219 tree fntype;
2220 bool try_tail_call = CALL_EXPR_TAILCALL (exp);
2221 int pass;
2222
2223 /* Register in which non-BLKmode value will be returned,
2224 or 0 if no value or if value is BLKmode. */
2225 rtx valreg;
2226 /* Address where we should return a BLKmode value;
2227 0 if value not BLKmode. */
2228 rtx structure_value_addr = 0;
2229 /* Nonzero if that address is being passed by treating it as
2230 an extra, implicit first parameter. Otherwise,
2231 it is passed by being copied directly into struct_value_rtx. */
2232 int structure_value_addr_parm = 0;
2233 /* Holds the value of implicit argument for the struct value. */
2234 tree structure_value_addr_value = NULL_TREE;
2235 /* Size of aggregate value wanted, or zero if none wanted
2236 or if we are using the non-reentrant PCC calling convention
2237 or expecting the value in registers. */
2238 HOST_WIDE_INT struct_value_size = 0;
2239 /* Nonzero if called function returns an aggregate in memory PCC style,
2240 by returning the address of where to find it. */
2241 int pcc_struct_value = 0;
2242 rtx struct_value = 0;
2243
2244 /* Number of actual parameters in this call, including struct value addr. */
2245 int num_actuals;
2246 /* Number of named args. Args after this are anonymous ones
2247 and they must all go on the stack. */
2248 int n_named_args;
2249 /* Number of complex actual arguments that need to be split. */
2250 int num_complex_actuals = 0;
2251
2252 /* Vector of information about each argument.
2253 Arguments are numbered in the order they will be pushed,
2254 not the order they are written. */
2255 struct arg_data *args;
2256
2257 /* Total size in bytes of all the stack-parms scanned so far. */
2258 struct args_size args_size;
2259 struct args_size adjusted_args_size;
2260 /* Size of arguments before any adjustments (such as rounding). */
2261 int unadjusted_args_size;
2262 /* Data on reg parms scanned so far. */
2263 CUMULATIVE_ARGS args_so_far_v;
2264 cumulative_args_t args_so_far;
2265 /* Nonzero if a reg parm has been scanned. */
2266 int reg_parm_seen;
2267 /* Nonzero if this is an indirect function call. */
2268
2269 /* Nonzero if we must avoid push-insns in the args for this call.
2270 If stack space is allocated for register parameters, but not by the
2271 caller, then it is preallocated in the fixed part of the stack frame.
2272 So the entire argument block must then be preallocated (i.e., we
2273 ignore PUSH_ROUNDING in that case). */
2274
2275 int must_preallocate = !PUSH_ARGS;
2276
2277 /* Size of the stack reserved for parameter registers. */
2278 int reg_parm_stack_space = 0;
2279
2280 /* Address of space preallocated for stack parms
2281 (on machines that lack push insns), or 0 if space not preallocated. */
2282 rtx argblock = 0;
2283
2284 /* Mask of ECF_ and ERF_ flags. */
2285 int flags = 0;
2286 int return_flags = 0;
2287 #ifdef REG_PARM_STACK_SPACE
2288 /* Define the boundary of the register parm stack space that needs to be
2289 saved, if any. */
2290 int low_to_save, high_to_save;
2291 rtx save_area = 0; /* Place that it is saved */
2292 #endif
2293
2294 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
2295 char *initial_stack_usage_map = stack_usage_map;
2296 char *stack_usage_map_buf = NULL;
2297
2298 int old_stack_allocated;
2299
2300 /* State variables to track stack modifications. */
2301 rtx old_stack_level = 0;
2302 int old_stack_arg_under_construction = 0;
2303 int old_pending_adj = 0;
2304 int old_inhibit_defer_pop = inhibit_defer_pop;
2305
2306 /* Some stack pointer alterations we make are performed via
2307 allocate_dynamic_stack_space. This modifies the stack_pointer_delta,
2308 which we then also need to save/restore along the way. */
2309 int old_stack_pointer_delta = 0;
2310
2311 rtx call_fusage;
2312 tree addr = CALL_EXPR_FN (exp);
2313 int i;
2314 /* The alignment of the stack, in bits. */
2315 unsigned HOST_WIDE_INT preferred_stack_boundary;
2316 /* The alignment of the stack, in bytes. */
2317 unsigned HOST_WIDE_INT preferred_unit_stack_boundary;
2318 /* The static chain value to use for this call. */
2319 rtx static_chain_value;
2320 /* See if this is "nothrow" function call. */
2321 if (TREE_NOTHROW (exp))
2322 flags |= ECF_NOTHROW;
2323
2324 /* See if we can find a DECL-node for the actual function, and get the
2325 function attributes (flags) from the function decl or type node. */
2326 fndecl = get_callee_fndecl (exp);
2327 if (fndecl)
2328 {
2329 fntype = TREE_TYPE (fndecl);
2330 flags |= flags_from_decl_or_type (fndecl);
2331 return_flags |= decl_return_flags (fndecl);
2332 }
2333 else
2334 {
2335 fntype = TREE_TYPE (TREE_TYPE (addr));
2336 flags |= flags_from_decl_or_type (fntype);
2337 }
2338 rettype = TREE_TYPE (exp);
2339
2340 struct_value = targetm.calls.struct_value_rtx (fntype, 0);
2341
2342 /* Warn if this value is an aggregate type,
2343 regardless of which calling convention we are using for it. */
2344 if (AGGREGATE_TYPE_P (rettype))
2345 warning (OPT_Waggregate_return, "function call has aggregate value");
2346
2347 /* If the result of a non looping pure or const function call is
2348 ignored (or void), and none of its arguments are volatile, we can
2349 avoid expanding the call and just evaluate the arguments for
2350 side-effects. */
2351 if ((flags & (ECF_CONST | ECF_PURE))
2352 && (!(flags & ECF_LOOPING_CONST_OR_PURE))
2353 && (ignore || target == const0_rtx
2354 || TYPE_MODE (rettype) == VOIDmode))
2355 {
2356 bool volatilep = false;
2357 tree arg;
2358 call_expr_arg_iterator iter;
2359
2360 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2361 if (TREE_THIS_VOLATILE (arg))
2362 {
2363 volatilep = true;
2364 break;
2365 }
2366
2367 if (! volatilep)
2368 {
2369 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2370 expand_expr (arg, const0_rtx, VOIDmode, EXPAND_NORMAL);
2371 return const0_rtx;
2372 }
2373 }
2374
2375 #ifdef REG_PARM_STACK_SPACE
2376 reg_parm_stack_space = REG_PARM_STACK_SPACE (!fndecl ? fntype : fndecl);
2377 #endif
2378
2379 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
2380 && reg_parm_stack_space > 0 && PUSH_ARGS)
2381 must_preallocate = 1;
2382
2383 /* Set up a place to return a structure. */
2384
2385 /* Cater to broken compilers. */
2386 if (aggregate_value_p (exp, fntype))
2387 {
2388 /* This call returns a big structure. */
2389 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
2390
2391 #ifdef PCC_STATIC_STRUCT_RETURN
2392 {
2393 pcc_struct_value = 1;
2394 }
2395 #else /* not PCC_STATIC_STRUCT_RETURN */
2396 {
2397 struct_value_size = int_size_in_bytes (rettype);
2398
2399 if (target && MEM_P (target) && CALL_EXPR_RETURN_SLOT_OPT (exp))
2400 structure_value_addr = XEXP (target, 0);
2401 else
2402 {
2403 /* For variable-sized objects, we must be called with a target
2404 specified. If we were to allocate space on the stack here,
2405 we would have no way of knowing when to free it. */
2406 rtx d = assign_temp (rettype, 1, 1);
2407 structure_value_addr = XEXP (d, 0);
2408 target = 0;
2409 }
2410 }
2411 #endif /* not PCC_STATIC_STRUCT_RETURN */
2412 }
2413
2414 /* Figure out the amount to which the stack should be aligned. */
2415 preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
2416 if (fndecl)
2417 {
2418 struct cgraph_rtl_info *i = cgraph_rtl_info (fndecl);
2419 /* Without automatic stack alignment, we can't increase preferred
2420 stack boundary. With automatic stack alignment, it is
2421 unnecessary since unless we can guarantee that all callers will
2422 align the outgoing stack properly, callee has to align its
2423 stack anyway. */
2424 if (i
2425 && i->preferred_incoming_stack_boundary
2426 && i->preferred_incoming_stack_boundary < preferred_stack_boundary)
2427 preferred_stack_boundary = i->preferred_incoming_stack_boundary;
2428 }
2429
2430 /* Operand 0 is a pointer-to-function; get the type of the function. */
2431 funtype = TREE_TYPE (addr);
2432 gcc_assert (POINTER_TYPE_P (funtype));
2433 funtype = TREE_TYPE (funtype);
2434
2435 /* Count whether there are actual complex arguments that need to be split
2436 into their real and imaginary parts. Munge the type_arg_types
2437 appropriately here as well. */
2438 if (targetm.calls.split_complex_arg)
2439 {
2440 call_expr_arg_iterator iter;
2441 tree arg;
2442 FOR_EACH_CALL_EXPR_ARG (arg, iter, exp)
2443 {
2444 tree type = TREE_TYPE (arg);
2445 if (type && TREE_CODE (type) == COMPLEX_TYPE
2446 && targetm.calls.split_complex_arg (type))
2447 num_complex_actuals++;
2448 }
2449 type_arg_types = split_complex_types (TYPE_ARG_TYPES (funtype));
2450 }
2451 else
2452 type_arg_types = TYPE_ARG_TYPES (funtype);
2453
2454 if (flags & ECF_MAY_BE_ALLOCA)
2455 cfun->calls_alloca = 1;
2456
2457 /* If struct_value_rtx is 0, it means pass the address
2458 as if it were an extra parameter. Put the argument expression
2459 in structure_value_addr_value. */
2460 if (structure_value_addr && struct_value == 0)
2461 {
2462 /* If structure_value_addr is a REG other than
2463 virtual_outgoing_args_rtx, we can use always use it. If it
2464 is not a REG, we must always copy it into a register.
2465 If it is virtual_outgoing_args_rtx, we must copy it to another
2466 register in some cases. */
2467 rtx temp = (!REG_P (structure_value_addr)
2468 || (ACCUMULATE_OUTGOING_ARGS
2469 && stack_arg_under_construction
2470 && structure_value_addr == virtual_outgoing_args_rtx)
2471 ? copy_addr_to_reg (convert_memory_address
2472 (Pmode, structure_value_addr))
2473 : structure_value_addr);
2474
2475 structure_value_addr_value =
2476 make_tree (build_pointer_type (TREE_TYPE (funtype)), temp);
2477 structure_value_addr_parm = 1;
2478 }
2479
2480 /* Count the arguments and set NUM_ACTUALS. */
2481 num_actuals =
2482 call_expr_nargs (exp) + num_complex_actuals + structure_value_addr_parm;
2483
2484 /* Compute number of named args.
2485 First, do a raw count of the args for INIT_CUMULATIVE_ARGS. */
2486
2487 if (type_arg_types != 0)
2488 n_named_args
2489 = (list_length (type_arg_types)
2490 /* Count the struct value address, if it is passed as a parm. */
2491 + structure_value_addr_parm);
2492 else
2493 /* If we know nothing, treat all args as named. */
2494 n_named_args = num_actuals;
2495
2496 /* Start updating where the next arg would go.
2497
2498 On some machines (such as the PA) indirect calls have a different
2499 calling convention than normal calls. The fourth argument in
2500 INIT_CUMULATIVE_ARGS tells the backend if this is an indirect call
2501 or not. */
2502 INIT_CUMULATIVE_ARGS (args_so_far_v, funtype, NULL_RTX, fndecl, n_named_args);
2503 args_so_far = pack_cumulative_args (&args_so_far_v);
2504
2505 /* Now possibly adjust the number of named args.
2506 Normally, don't include the last named arg if anonymous args follow.
2507 We do include the last named arg if
2508 targetm.calls.strict_argument_naming() returns nonzero.
2509 (If no anonymous args follow, the result of list_length is actually
2510 one too large. This is harmless.)
2511
2512 If targetm.calls.pretend_outgoing_varargs_named() returns
2513 nonzero, and targetm.calls.strict_argument_naming() returns zero,
2514 this machine will be able to place unnamed args that were passed
2515 in registers into the stack. So treat all args as named. This
2516 allows the insns emitting for a specific argument list to be
2517 independent of the function declaration.
2518
2519 If targetm.calls.pretend_outgoing_varargs_named() returns zero,
2520 we do not have any reliable way to pass unnamed args in
2521 registers, so we must force them into memory. */
2522
2523 if (type_arg_types != 0
2524 && targetm.calls.strict_argument_naming (args_so_far))
2525 ;
2526 else if (type_arg_types != 0
2527 && ! targetm.calls.pretend_outgoing_varargs_named (args_so_far))
2528 /* Don't include the last named arg. */
2529 --n_named_args;
2530 else
2531 /* Treat all args as named. */
2532 n_named_args = num_actuals;
2533
2534 /* Make a vector to hold all the information about each arg. */
2535 args = XALLOCAVEC (struct arg_data, num_actuals);
2536 memset (args, 0, num_actuals * sizeof (struct arg_data));
2537
2538 /* Build up entries in the ARGS array, compute the size of the
2539 arguments into ARGS_SIZE, etc. */
2540 initialize_argument_information (num_actuals, args, &args_size,
2541 n_named_args, exp,
2542 structure_value_addr_value, fndecl, fntype,
2543 args_so_far, reg_parm_stack_space,
2544 &old_stack_level, &old_pending_adj,
2545 &must_preallocate, &flags,
2546 &try_tail_call, CALL_FROM_THUNK_P (exp));
2547
2548 if (args_size.var)
2549 must_preallocate = 1;
2550
2551 /* Now make final decision about preallocating stack space. */
2552 must_preallocate = finalize_must_preallocate (must_preallocate,
2553 num_actuals, args,
2554 &args_size);
2555
2556 /* If the structure value address will reference the stack pointer, we
2557 must stabilize it. We don't need to do this if we know that we are
2558 not going to adjust the stack pointer in processing this call. */
2559
2560 if (structure_value_addr
2561 && (reg_mentioned_p (virtual_stack_dynamic_rtx, structure_value_addr)
2562 || reg_mentioned_p (virtual_outgoing_args_rtx,
2563 structure_value_addr))
2564 && (args_size.var
2565 || (!ACCUMULATE_OUTGOING_ARGS && args_size.constant)))
2566 structure_value_addr = copy_to_reg (structure_value_addr);
2567
2568 /* Tail calls can make things harder to debug, and we've traditionally
2569 pushed these optimizations into -O2. Don't try if we're already
2570 expanding a call, as that means we're an argument. Don't try if
2571 there's cleanups, as we know there's code to follow the call. */
2572
2573 if (currently_expanding_call++ != 0
2574 || !flag_optimize_sibling_calls
2575 || args_size.var
2576 || dbg_cnt (tail_call) == false)
2577 try_tail_call = 0;
2578
2579 /* Rest of purposes for tail call optimizations to fail. */
2580 if (
2581 #ifdef HAVE_sibcall_epilogue
2582 !HAVE_sibcall_epilogue
2583 #else
2584 1
2585 #endif
2586 || !try_tail_call
2587 /* Doing sibling call optimization needs some work, since
2588 structure_value_addr can be allocated on the stack.
2589 It does not seem worth the effort since few optimizable
2590 sibling calls will return a structure. */
2591 || structure_value_addr != NULL_RTX
2592 #ifdef REG_PARM_STACK_SPACE
2593 /* If outgoing reg parm stack space changes, we can not do sibcall. */
2594 || (OUTGOING_REG_PARM_STACK_SPACE (funtype)
2595 != OUTGOING_REG_PARM_STACK_SPACE (TREE_TYPE (current_function_decl)))
2596 || (reg_parm_stack_space != REG_PARM_STACK_SPACE (fndecl))
2597 #endif
2598 /* Check whether the target is able to optimize the call
2599 into a sibcall. */
2600 || !targetm.function_ok_for_sibcall (fndecl, exp)
2601 /* Functions that do not return exactly once may not be sibcall
2602 optimized. */
2603 || (flags & (ECF_RETURNS_TWICE | ECF_NORETURN))
2604 || TYPE_VOLATILE (TREE_TYPE (TREE_TYPE (addr)))
2605 /* If the called function is nested in the current one, it might access
2606 some of the caller's arguments, but could clobber them beforehand if
2607 the argument areas are shared. */
2608 || (fndecl && decl_function_context (fndecl) == current_function_decl)
2609 /* If this function requires more stack slots than the current
2610 function, we cannot change it into a sibling call.
2611 crtl->args.pretend_args_size is not part of the
2612 stack allocated by our caller. */
2613 || args_size.constant > (crtl->args.size
2614 - crtl->args.pretend_args_size)
2615 /* If the callee pops its own arguments, then it must pop exactly
2616 the same number of arguments as the current function. */
2617 || (targetm.calls.return_pops_args (fndecl, funtype, args_size.constant)
2618 != targetm.calls.return_pops_args (current_function_decl,
2619 TREE_TYPE (current_function_decl),
2620 crtl->args.size))
2621 || !lang_hooks.decls.ok_for_sibcall (fndecl))
2622 try_tail_call = 0;
2623
2624 /* Check if caller and callee disagree in promotion of function
2625 return value. */
2626 if (try_tail_call)
2627 {
2628 enum machine_mode caller_mode, caller_promoted_mode;
2629 enum machine_mode callee_mode, callee_promoted_mode;
2630 int caller_unsignedp, callee_unsignedp;
2631 tree caller_res = DECL_RESULT (current_function_decl);
2632
2633 caller_unsignedp = TYPE_UNSIGNED (TREE_TYPE (caller_res));
2634 caller_mode = DECL_MODE (caller_res);
2635 callee_unsignedp = TYPE_UNSIGNED (TREE_TYPE (funtype));
2636 callee_mode = TYPE_MODE (TREE_TYPE (funtype));
2637 caller_promoted_mode
2638 = promote_function_mode (TREE_TYPE (caller_res), caller_mode,
2639 &caller_unsignedp,
2640 TREE_TYPE (current_function_decl), 1);
2641 callee_promoted_mode
2642 = promote_function_mode (TREE_TYPE (funtype), callee_mode,
2643 &callee_unsignedp,
2644 funtype, 1);
2645 if (caller_mode != VOIDmode
2646 && (caller_promoted_mode != callee_promoted_mode
2647 || ((caller_mode != caller_promoted_mode
2648 || callee_mode != callee_promoted_mode)
2649 && (caller_unsignedp != callee_unsignedp
2650 || GET_MODE_BITSIZE (caller_mode)
2651 < GET_MODE_BITSIZE (callee_mode)))))
2652 try_tail_call = 0;
2653 }
2654
2655 /* Ensure current function's preferred stack boundary is at least
2656 what we need. Stack alignment may also increase preferred stack
2657 boundary. */
2658 if (crtl->preferred_stack_boundary < preferred_stack_boundary)
2659 crtl->preferred_stack_boundary = preferred_stack_boundary;
2660 else
2661 preferred_stack_boundary = crtl->preferred_stack_boundary;
2662
2663 preferred_unit_stack_boundary = preferred_stack_boundary / BITS_PER_UNIT;
2664
2665 /* We want to make two insn chains; one for a sibling call, the other
2666 for a normal call. We will select one of the two chains after
2667 initial RTL generation is complete. */
2668 for (pass = try_tail_call ? 0 : 1; pass < 2; pass++)
2669 {
2670 int sibcall_failure = 0;
2671 /* We want to emit any pending stack adjustments before the tail
2672 recursion "call". That way we know any adjustment after the tail
2673 recursion call can be ignored if we indeed use the tail
2674 call expansion. */
2675 int save_pending_stack_adjust = 0;
2676 int save_stack_pointer_delta = 0;
2677 rtx insns;
2678 rtx before_call, next_arg_reg, after_args;
2679
2680 if (pass == 0)
2681 {
2682 /* State variables we need to save and restore between
2683 iterations. */
2684 save_pending_stack_adjust = pending_stack_adjust;
2685 save_stack_pointer_delta = stack_pointer_delta;
2686 }
2687 if (pass)
2688 flags &= ~ECF_SIBCALL;
2689 else
2690 flags |= ECF_SIBCALL;
2691
2692 /* Other state variables that we must reinitialize each time
2693 through the loop (that are not initialized by the loop itself). */
2694 argblock = 0;
2695 call_fusage = 0;
2696
2697 /* Start a new sequence for the normal call case.
2698
2699 From this point on, if the sibling call fails, we want to set
2700 sibcall_failure instead of continuing the loop. */
2701 start_sequence ();
2702
2703 /* Don't let pending stack adjusts add up to too much.
2704 Also, do all pending adjustments now if there is any chance
2705 this might be a call to alloca or if we are expanding a sibling
2706 call sequence.
2707 Also do the adjustments before a throwing call, otherwise
2708 exception handling can fail; PR 19225. */
2709 if (pending_stack_adjust >= 32
2710 || (pending_stack_adjust > 0
2711 && (flags & ECF_MAY_BE_ALLOCA))
2712 || (pending_stack_adjust > 0
2713 && flag_exceptions && !(flags & ECF_NOTHROW))
2714 || pass == 0)
2715 do_pending_stack_adjust ();
2716
2717 /* Precompute any arguments as needed. */
2718 if (pass)
2719 precompute_arguments (num_actuals, args);
2720
2721 /* Now we are about to start emitting insns that can be deleted
2722 if a libcall is deleted. */
2723 if (pass && (flags & ECF_MALLOC))
2724 start_sequence ();
2725
2726 if (pass == 0 && crtl->stack_protect_guard)
2727 stack_protect_epilogue ();
2728
2729 adjusted_args_size = args_size;
2730 /* Compute the actual size of the argument block required. The variable
2731 and constant sizes must be combined, the size may have to be rounded,
2732 and there may be a minimum required size. When generating a sibcall
2733 pattern, do not round up, since we'll be re-using whatever space our
2734 caller provided. */
2735 unadjusted_args_size
2736 = compute_argument_block_size (reg_parm_stack_space,
2737 &adjusted_args_size,
2738 fndecl, fntype,
2739 (pass == 0 ? 0
2740 : preferred_stack_boundary));
2741
2742 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
2743
2744 /* The argument block when performing a sibling call is the
2745 incoming argument block. */
2746 if (pass == 0)
2747 {
2748 argblock = crtl->args.internal_arg_pointer;
2749 argblock
2750 #ifdef STACK_GROWS_DOWNWARD
2751 = plus_constant (Pmode, argblock, crtl->args.pretend_args_size);
2752 #else
2753 = plus_constant (Pmode, argblock, -crtl->args.pretend_args_size);
2754 #endif
2755 stored_args_map = sbitmap_alloc (args_size.constant);
2756 bitmap_clear (stored_args_map);
2757 }
2758
2759 /* If we have no actual push instructions, or shouldn't use them,
2760 make space for all args right now. */
2761 else if (adjusted_args_size.var != 0)
2762 {
2763 if (old_stack_level == 0)
2764 {
2765 emit_stack_save (SAVE_BLOCK, &old_stack_level);
2766 old_stack_pointer_delta = stack_pointer_delta;
2767 old_pending_adj = pending_stack_adjust;
2768 pending_stack_adjust = 0;
2769 /* stack_arg_under_construction says whether a stack arg is
2770 being constructed at the old stack level. Pushing the stack
2771 gets a clean outgoing argument block. */
2772 old_stack_arg_under_construction = stack_arg_under_construction;
2773 stack_arg_under_construction = 0;
2774 }
2775 argblock = push_block (ARGS_SIZE_RTX (adjusted_args_size), 0, 0);
2776 if (flag_stack_usage_info)
2777 current_function_has_unbounded_dynamic_stack_size = 1;
2778 }
2779 else
2780 {
2781 /* Note that we must go through the motions of allocating an argument
2782 block even if the size is zero because we may be storing args
2783 in the area reserved for register arguments, which may be part of
2784 the stack frame. */
2785
2786 int needed = adjusted_args_size.constant;
2787
2788 /* Store the maximum argument space used. It will be pushed by
2789 the prologue (if ACCUMULATE_OUTGOING_ARGS, or stack overflow
2790 checking). */
2791
2792 if (needed > crtl->outgoing_args_size)
2793 crtl->outgoing_args_size = needed;
2794
2795 if (must_preallocate)
2796 {
2797 if (ACCUMULATE_OUTGOING_ARGS)
2798 {
2799 /* Since the stack pointer will never be pushed, it is
2800 possible for the evaluation of a parm to clobber
2801 something we have already written to the stack.
2802 Since most function calls on RISC machines do not use
2803 the stack, this is uncommon, but must work correctly.
2804
2805 Therefore, we save any area of the stack that was already
2806 written and that we are using. Here we set up to do this
2807 by making a new stack usage map from the old one. The
2808 actual save will be done by store_one_arg.
2809
2810 Another approach might be to try to reorder the argument
2811 evaluations to avoid this conflicting stack usage. */
2812
2813 /* Since we will be writing into the entire argument area,
2814 the map must be allocated for its entire size, not just
2815 the part that is the responsibility of the caller. */
2816 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
2817 needed += reg_parm_stack_space;
2818
2819 #ifdef ARGS_GROW_DOWNWARD
2820 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2821 needed + 1);
2822 #else
2823 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
2824 needed);
2825 #endif
2826 free (stack_usage_map_buf);
2827 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
2828 stack_usage_map = stack_usage_map_buf;
2829
2830 if (initial_highest_arg_in_use)
2831 memcpy (stack_usage_map, initial_stack_usage_map,
2832 initial_highest_arg_in_use);
2833
2834 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
2835 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
2836 (highest_outgoing_arg_in_use
2837 - initial_highest_arg_in_use));
2838 needed = 0;
2839
2840 /* The address of the outgoing argument list must not be
2841 copied to a register here, because argblock would be left
2842 pointing to the wrong place after the call to
2843 allocate_dynamic_stack_space below. */
2844
2845 argblock = virtual_outgoing_args_rtx;
2846 }
2847 else
2848 {
2849 if (inhibit_defer_pop == 0)
2850 {
2851 /* Try to reuse some or all of the pending_stack_adjust
2852 to get this space. */
2853 needed
2854 = (combine_pending_stack_adjustment_and_call
2855 (unadjusted_args_size,
2856 &adjusted_args_size,
2857 preferred_unit_stack_boundary));
2858
2859 /* combine_pending_stack_adjustment_and_call computes
2860 an adjustment before the arguments are allocated.
2861 Account for them and see whether or not the stack
2862 needs to go up or down. */
2863 needed = unadjusted_args_size - needed;
2864
2865 if (needed < 0)
2866 {
2867 /* We're releasing stack space. */
2868 /* ??? We can avoid any adjustment at all if we're
2869 already aligned. FIXME. */
2870 pending_stack_adjust = -needed;
2871 do_pending_stack_adjust ();
2872 needed = 0;
2873 }
2874 else
2875 /* We need to allocate space. We'll do that in
2876 push_block below. */
2877 pending_stack_adjust = 0;
2878 }
2879
2880 /* Special case this because overhead of `push_block' in
2881 this case is non-trivial. */
2882 if (needed == 0)
2883 argblock = virtual_outgoing_args_rtx;
2884 else
2885 {
2886 argblock = push_block (GEN_INT (needed), 0, 0);
2887 #ifdef ARGS_GROW_DOWNWARD
2888 argblock = plus_constant (Pmode, argblock, needed);
2889 #endif
2890 }
2891
2892 /* We only really need to call `copy_to_reg' in the case
2893 where push insns are going to be used to pass ARGBLOCK
2894 to a function call in ARGS. In that case, the stack
2895 pointer changes value from the allocation point to the
2896 call point, and hence the value of
2897 VIRTUAL_OUTGOING_ARGS_RTX changes as well. But might
2898 as well always do it. */
2899 argblock = copy_to_reg (argblock);
2900 }
2901 }
2902 }
2903
2904 if (ACCUMULATE_OUTGOING_ARGS)
2905 {
2906 /* The save/restore code in store_one_arg handles all
2907 cases except one: a constructor call (including a C
2908 function returning a BLKmode struct) to initialize
2909 an argument. */
2910 if (stack_arg_under_construction)
2911 {
2912 rtx push_size
2913 = GEN_INT (adjusted_args_size.constant
2914 + (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype
2915 : TREE_TYPE (fndecl))) ? 0
2916 : reg_parm_stack_space));
2917 if (old_stack_level == 0)
2918 {
2919 emit_stack_save (SAVE_BLOCK, &old_stack_level);
2920 old_stack_pointer_delta = stack_pointer_delta;
2921 old_pending_adj = pending_stack_adjust;
2922 pending_stack_adjust = 0;
2923 /* stack_arg_under_construction says whether a stack
2924 arg is being constructed at the old stack level.
2925 Pushing the stack gets a clean outgoing argument
2926 block. */
2927 old_stack_arg_under_construction
2928 = stack_arg_under_construction;
2929 stack_arg_under_construction = 0;
2930 /* Make a new map for the new argument list. */
2931 free (stack_usage_map_buf);
2932 stack_usage_map_buf = XCNEWVEC (char, highest_outgoing_arg_in_use);
2933 stack_usage_map = stack_usage_map_buf;
2934 highest_outgoing_arg_in_use = 0;
2935 }
2936 /* We can pass TRUE as the 4th argument because we just
2937 saved the stack pointer and will restore it right after
2938 the call. */
2939 allocate_dynamic_stack_space (push_size, 0,
2940 BIGGEST_ALIGNMENT, true);
2941 }
2942
2943 /* If argument evaluation might modify the stack pointer,
2944 copy the address of the argument list to a register. */
2945 for (i = 0; i < num_actuals; i++)
2946 if (args[i].pass_on_stack)
2947 {
2948 argblock = copy_addr_to_reg (argblock);
2949 break;
2950 }
2951 }
2952
2953 compute_argument_addresses (args, argblock, num_actuals);
2954
2955 /* If we push args individually in reverse order, perform stack alignment
2956 before the first push (the last arg). */
2957 if (PUSH_ARGS_REVERSED && argblock == 0
2958 && adjusted_args_size.constant != unadjusted_args_size)
2959 {
2960 /* When the stack adjustment is pending, we get better code
2961 by combining the adjustments. */
2962 if (pending_stack_adjust
2963 && ! inhibit_defer_pop)
2964 {
2965 pending_stack_adjust
2966 = (combine_pending_stack_adjustment_and_call
2967 (unadjusted_args_size,
2968 &adjusted_args_size,
2969 preferred_unit_stack_boundary));
2970 do_pending_stack_adjust ();
2971 }
2972 else if (argblock == 0)
2973 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
2974 - unadjusted_args_size));
2975 }
2976 /* Now that the stack is properly aligned, pops can't safely
2977 be deferred during the evaluation of the arguments. */
2978 NO_DEFER_POP;
2979
2980 /* Record the maximum pushed stack space size. We need to delay
2981 doing it this far to take into account the optimization done
2982 by combine_pending_stack_adjustment_and_call. */
2983 if (flag_stack_usage_info
2984 && !ACCUMULATE_OUTGOING_ARGS
2985 && pass
2986 && adjusted_args_size.var == 0)
2987 {
2988 int pushed = adjusted_args_size.constant + pending_stack_adjust;
2989 if (pushed > current_function_pushed_stack_size)
2990 current_function_pushed_stack_size = pushed;
2991 }
2992
2993 funexp = rtx_for_function_call (fndecl, addr);
2994
2995 /* Figure out the register where the value, if any, will come back. */
2996 valreg = 0;
2997 if (TYPE_MODE (rettype) != VOIDmode
2998 && ! structure_value_addr)
2999 {
3000 if (pcc_struct_value)
3001 valreg = hard_function_value (build_pointer_type (rettype),
3002 fndecl, NULL, (pass == 0));
3003 else
3004 valreg = hard_function_value (rettype, fndecl, fntype,
3005 (pass == 0));
3006
3007 /* If VALREG is a PARALLEL whose first member has a zero
3008 offset, use that. This is for targets such as m68k that
3009 return the same value in multiple places. */
3010 if (GET_CODE (valreg) == PARALLEL)
3011 {
3012 rtx elem = XVECEXP (valreg, 0, 0);
3013 rtx where = XEXP (elem, 0);
3014 rtx offset = XEXP (elem, 1);
3015 if (offset == const0_rtx
3016 && GET_MODE (where) == GET_MODE (valreg))
3017 valreg = where;
3018 }
3019 }
3020
3021 /* Precompute all register parameters. It isn't safe to compute anything
3022 once we have started filling any specific hard regs. */
3023 precompute_register_parameters (num_actuals, args, &reg_parm_seen);
3024
3025 if (CALL_EXPR_STATIC_CHAIN (exp))
3026 static_chain_value = expand_normal (CALL_EXPR_STATIC_CHAIN (exp));
3027 else
3028 static_chain_value = 0;
3029
3030 #ifdef REG_PARM_STACK_SPACE
3031 /* Save the fixed argument area if it's part of the caller's frame and
3032 is clobbered by argument setup for this call. */
3033 if (ACCUMULATE_OUTGOING_ARGS && pass)
3034 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3035 &low_to_save, &high_to_save);
3036 #endif
3037
3038 /* Now store (and compute if necessary) all non-register parms.
3039 These come before register parms, since they can require block-moves,
3040 which could clobber the registers used for register parms.
3041 Parms which have partial registers are not stored here,
3042 but we do preallocate space here if they want that. */
3043
3044 for (i = 0; i < num_actuals; i++)
3045 {
3046 if (args[i].reg == 0 || args[i].pass_on_stack)
3047 {
3048 rtx before_arg = get_last_insn ();
3049
3050 if (store_one_arg (&args[i], argblock, flags,
3051 adjusted_args_size.var != 0,
3052 reg_parm_stack_space)
3053 || (pass == 0
3054 && check_sibcall_argument_overlap (before_arg,
3055 &args[i], 1)))
3056 sibcall_failure = 1;
3057 }
3058
3059 if (args[i].stack)
3060 call_fusage
3061 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[i].tree_value)),
3062 gen_rtx_USE (VOIDmode, args[i].stack),
3063 call_fusage);
3064 }
3065
3066 /* If we have a parm that is passed in registers but not in memory
3067 and whose alignment does not permit a direct copy into registers,
3068 make a group of pseudos that correspond to each register that we
3069 will later fill. */
3070 if (STRICT_ALIGNMENT)
3071 store_unaligned_arguments_into_pseudos (args, num_actuals);
3072
3073 /* Now store any partially-in-registers parm.
3074 This is the last place a block-move can happen. */
3075 if (reg_parm_seen)
3076 for (i = 0; i < num_actuals; i++)
3077 if (args[i].partial != 0 && ! args[i].pass_on_stack)
3078 {
3079 rtx before_arg = get_last_insn ();
3080
3081 if (store_one_arg (&args[i], argblock, flags,
3082 adjusted_args_size.var != 0,
3083 reg_parm_stack_space)
3084 || (pass == 0
3085 && check_sibcall_argument_overlap (before_arg,
3086 &args[i], 1)))
3087 sibcall_failure = 1;
3088 }
3089
3090 /* If we pushed args in forward order, perform stack alignment
3091 after pushing the last arg. */
3092 if (!PUSH_ARGS_REVERSED && argblock == 0)
3093 anti_adjust_stack (GEN_INT (adjusted_args_size.constant
3094 - unadjusted_args_size));
3095
3096 /* If register arguments require space on the stack and stack space
3097 was not preallocated, allocate stack space here for arguments
3098 passed in registers. */
3099 if (OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl)))
3100 && !ACCUMULATE_OUTGOING_ARGS
3101 && must_preallocate == 0 && reg_parm_stack_space > 0)
3102 anti_adjust_stack (GEN_INT (reg_parm_stack_space));
3103
3104 /* Pass the function the address in which to return a
3105 structure value. */
3106 if (pass != 0 && structure_value_addr && ! structure_value_addr_parm)
3107 {
3108 structure_value_addr
3109 = convert_memory_address (Pmode, structure_value_addr);
3110 emit_move_insn (struct_value,
3111 force_reg (Pmode,
3112 force_operand (structure_value_addr,
3113 NULL_RTX)));
3114
3115 if (REG_P (struct_value))
3116 use_reg (&call_fusage, struct_value);
3117 }
3118
3119 after_args = get_last_insn ();
3120 funexp = prepare_call_address (fndecl, funexp, static_chain_value,
3121 &call_fusage, reg_parm_seen, pass == 0);
3122
3123 load_register_parameters (args, num_actuals, &call_fusage, flags,
3124 pass == 0, &sibcall_failure);
3125
3126 /* Save a pointer to the last insn before the call, so that we can
3127 later safely search backwards to find the CALL_INSN. */
3128 before_call = get_last_insn ();
3129
3130 /* Set up next argument register. For sibling calls on machines
3131 with register windows this should be the incoming register. */
3132 if (pass == 0)
3133 next_arg_reg = targetm.calls.function_incoming_arg (args_so_far,
3134 VOIDmode,
3135 void_type_node,
3136 true);
3137 else
3138 next_arg_reg = targetm.calls.function_arg (args_so_far,
3139 VOIDmode, void_type_node,
3140 true);
3141
3142 if (pass == 1 && (return_flags & ERF_RETURNS_ARG))
3143 {
3144 int arg_nr = return_flags & ERF_RETURN_ARG_MASK;
3145 if (PUSH_ARGS_REVERSED)
3146 arg_nr = num_actuals - arg_nr - 1;
3147 if (arg_nr >= 0
3148 && arg_nr < num_actuals
3149 && args[arg_nr].reg
3150 && valreg
3151 && REG_P (valreg)
3152 && GET_MODE (args[arg_nr].reg) == GET_MODE (valreg))
3153 call_fusage
3154 = gen_rtx_EXPR_LIST (TYPE_MODE (TREE_TYPE (args[arg_nr].tree_value)),
3155 gen_rtx_SET (VOIDmode, valreg, args[arg_nr].reg),
3156 call_fusage);
3157 }
3158 /* All arguments and registers used for the call must be set up by
3159 now! */
3160
3161 /* Stack must be properly aligned now. */
3162 gcc_assert (!pass
3163 || !(stack_pointer_delta % preferred_unit_stack_boundary));
3164
3165 /* Generate the actual call instruction. */
3166 emit_call_1 (funexp, exp, fndecl, funtype, unadjusted_args_size,
3167 adjusted_args_size.constant, struct_value_size,
3168 next_arg_reg, valreg, old_inhibit_defer_pop, call_fusage,
3169 flags, args_so_far);
3170
3171 /* If the call setup or the call itself overlaps with anything
3172 of the argument setup we probably clobbered our call address.
3173 In that case we can't do sibcalls. */
3174 if (pass == 0
3175 && check_sibcall_argument_overlap (after_args, 0, 0))
3176 sibcall_failure = 1;
3177
3178 /* If a non-BLKmode value is returned at the most significant end
3179 of a register, shift the register right by the appropriate amount
3180 and update VALREG accordingly. BLKmode values are handled by the
3181 group load/store machinery below. */
3182 if (!structure_value_addr
3183 && !pcc_struct_value
3184 && TYPE_MODE (rettype) != VOIDmode
3185 && TYPE_MODE (rettype) != BLKmode
3186 && REG_P (valreg)
3187 && targetm.calls.return_in_msb (rettype))
3188 {
3189 if (shift_return_value (TYPE_MODE (rettype), false, valreg))
3190 sibcall_failure = 1;
3191 valreg = gen_rtx_REG (TYPE_MODE (rettype), REGNO (valreg));
3192 }
3193
3194 if (pass && (flags & ECF_MALLOC))
3195 {
3196 rtx temp = gen_reg_rtx (GET_MODE (valreg));
3197 rtx last, insns;
3198
3199 /* The return value from a malloc-like function is a pointer. */
3200 if (TREE_CODE (rettype) == POINTER_TYPE)
3201 mark_reg_pointer (temp, MALLOC_ABI_ALIGNMENT);
3202
3203 emit_move_insn (temp, valreg);
3204
3205 /* The return value from a malloc-like function can not alias
3206 anything else. */
3207 last = get_last_insn ();
3208 add_reg_note (last, REG_NOALIAS, temp);
3209
3210 /* Write out the sequence. */
3211 insns = get_insns ();
3212 end_sequence ();
3213 emit_insn (insns);
3214 valreg = temp;
3215 }
3216
3217 /* For calls to `setjmp', etc., inform
3218 function.c:setjmp_warnings that it should complain if
3219 nonvolatile values are live. For functions that cannot
3220 return, inform flow that control does not fall through. */
3221
3222 if ((flags & ECF_NORETURN) || pass == 0)
3223 {
3224 /* The barrier must be emitted
3225 immediately after the CALL_INSN. Some ports emit more
3226 than just a CALL_INSN above, so we must search for it here. */
3227
3228 rtx last = get_last_insn ();
3229 while (!CALL_P (last))
3230 {
3231 last = PREV_INSN (last);
3232 /* There was no CALL_INSN? */
3233 gcc_assert (last != before_call);
3234 }
3235
3236 emit_barrier_after (last);
3237
3238 /* Stack adjustments after a noreturn call are dead code.
3239 However when NO_DEFER_POP is in effect, we must preserve
3240 stack_pointer_delta. */
3241 if (inhibit_defer_pop == 0)
3242 {
3243 stack_pointer_delta = old_stack_allocated;
3244 pending_stack_adjust = 0;
3245 }
3246 }
3247
3248 /* If value type not void, return an rtx for the value. */
3249
3250 if (TYPE_MODE (rettype) == VOIDmode
3251 || ignore)
3252 target = const0_rtx;
3253 else if (structure_value_addr)
3254 {
3255 if (target == 0 || !MEM_P (target))
3256 {
3257 target
3258 = gen_rtx_MEM (TYPE_MODE (rettype),
3259 memory_address (TYPE_MODE (rettype),
3260 structure_value_addr));
3261 set_mem_attributes (target, rettype, 1);
3262 }
3263 }
3264 else if (pcc_struct_value)
3265 {
3266 /* This is the special C++ case where we need to
3267 know what the true target was. We take care to
3268 never use this value more than once in one expression. */
3269 target = gen_rtx_MEM (TYPE_MODE (rettype),
3270 copy_to_reg (valreg));
3271 set_mem_attributes (target, rettype, 1);
3272 }
3273 /* Handle calls that return values in multiple non-contiguous locations.
3274 The Irix 6 ABI has examples of this. */
3275 else if (GET_CODE (valreg) == PARALLEL)
3276 {
3277 if (target == 0)
3278 target = emit_group_move_into_temps (valreg);
3279 else if (rtx_equal_p (target, valreg))
3280 ;
3281 else if (GET_CODE (target) == PARALLEL)
3282 /* Handle the result of a emit_group_move_into_temps
3283 call in the previous pass. */
3284 emit_group_move (target, valreg);
3285 else
3286 emit_group_store (target, valreg, rettype,
3287 int_size_in_bytes (rettype));
3288 }
3289 else if (target
3290 && GET_MODE (target) == TYPE_MODE (rettype)
3291 && GET_MODE (target) == GET_MODE (valreg))
3292 {
3293 bool may_overlap = false;
3294
3295 /* We have to copy a return value in a CLASS_LIKELY_SPILLED hard
3296 reg to a plain register. */
3297 if (!REG_P (target) || HARD_REGISTER_P (target))
3298 valreg = avoid_likely_spilled_reg (valreg);
3299
3300 /* If TARGET is a MEM in the argument area, and we have
3301 saved part of the argument area, then we can't store
3302 directly into TARGET as it may get overwritten when we
3303 restore the argument save area below. Don't work too
3304 hard though and simply force TARGET to a register if it
3305 is a MEM; the optimizer is quite likely to sort it out. */
3306 if (ACCUMULATE_OUTGOING_ARGS && pass && MEM_P (target))
3307 for (i = 0; i < num_actuals; i++)
3308 if (args[i].save_area)
3309 {
3310 may_overlap = true;
3311 break;
3312 }
3313
3314 if (may_overlap)
3315 target = copy_to_reg (valreg);
3316 else
3317 {
3318 /* TARGET and VALREG cannot be equal at this point
3319 because the latter would not have
3320 REG_FUNCTION_VALUE_P true, while the former would if
3321 it were referring to the same register.
3322
3323 If they refer to the same register, this move will be
3324 a no-op, except when function inlining is being
3325 done. */
3326 emit_move_insn (target, valreg);
3327
3328 /* If we are setting a MEM, this code must be executed.
3329 Since it is emitted after the call insn, sibcall
3330 optimization cannot be performed in that case. */
3331 if (MEM_P (target))
3332 sibcall_failure = 1;
3333 }
3334 }
3335 else
3336 target = copy_to_reg (avoid_likely_spilled_reg (valreg));
3337
3338 /* If we promoted this return value, make the proper SUBREG.
3339 TARGET might be const0_rtx here, so be careful. */
3340 if (REG_P (target)
3341 && TYPE_MODE (rettype) != BLKmode
3342 && GET_MODE (target) != TYPE_MODE (rettype))
3343 {
3344 tree type = rettype;
3345 int unsignedp = TYPE_UNSIGNED (type);
3346 int offset = 0;
3347 enum machine_mode pmode;
3348
3349 /* Ensure we promote as expected, and get the new unsignedness. */
3350 pmode = promote_function_mode (type, TYPE_MODE (type), &unsignedp,
3351 funtype, 1);
3352 gcc_assert (GET_MODE (target) == pmode);
3353
3354 if ((WORDS_BIG_ENDIAN || BYTES_BIG_ENDIAN)
3355 && (GET_MODE_SIZE (GET_MODE (target))
3356 > GET_MODE_SIZE (TYPE_MODE (type))))
3357 {
3358 offset = GET_MODE_SIZE (GET_MODE (target))
3359 - GET_MODE_SIZE (TYPE_MODE (type));
3360 if (! BYTES_BIG_ENDIAN)
3361 offset = (offset / UNITS_PER_WORD) * UNITS_PER_WORD;
3362 else if (! WORDS_BIG_ENDIAN)
3363 offset %= UNITS_PER_WORD;
3364 }
3365
3366 target = gen_rtx_SUBREG (TYPE_MODE (type), target, offset);
3367 SUBREG_PROMOTED_VAR_P (target) = 1;
3368 SUBREG_PROMOTED_UNSIGNED_SET (target, unsignedp);
3369 }
3370
3371 /* If size of args is variable or this was a constructor call for a stack
3372 argument, restore saved stack-pointer value. */
3373
3374 if (old_stack_level)
3375 {
3376 rtx prev = get_last_insn ();
3377
3378 emit_stack_restore (SAVE_BLOCK, old_stack_level);
3379 stack_pointer_delta = old_stack_pointer_delta;
3380
3381 fixup_args_size_notes (prev, get_last_insn (), stack_pointer_delta);
3382
3383 pending_stack_adjust = old_pending_adj;
3384 old_stack_allocated = stack_pointer_delta - pending_stack_adjust;
3385 stack_arg_under_construction = old_stack_arg_under_construction;
3386 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3387 stack_usage_map = initial_stack_usage_map;
3388 sibcall_failure = 1;
3389 }
3390 else if (ACCUMULATE_OUTGOING_ARGS && pass)
3391 {
3392 #ifdef REG_PARM_STACK_SPACE
3393 if (save_area)
3394 restore_fixed_argument_area (save_area, argblock,
3395 high_to_save, low_to_save);
3396 #endif
3397
3398 /* If we saved any argument areas, restore them. */
3399 for (i = 0; i < num_actuals; i++)
3400 if (args[i].save_area)
3401 {
3402 enum machine_mode save_mode = GET_MODE (args[i].save_area);
3403 rtx stack_area
3404 = gen_rtx_MEM (save_mode,
3405 memory_address (save_mode,
3406 XEXP (args[i].stack_slot, 0)));
3407
3408 if (save_mode != BLKmode)
3409 emit_move_insn (stack_area, args[i].save_area);
3410 else
3411 emit_block_move (stack_area, args[i].save_area,
3412 GEN_INT (args[i].locate.size.constant),
3413 BLOCK_OP_CALL_PARM);
3414 }
3415
3416 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
3417 stack_usage_map = initial_stack_usage_map;
3418 }
3419
3420 /* If this was alloca, record the new stack level for nonlocal gotos.
3421 Check for the handler slots since we might not have a save area
3422 for non-local gotos. */
3423
3424 if ((flags & ECF_MAY_BE_ALLOCA) && cfun->nonlocal_goto_save_area != 0)
3425 update_nonlocal_goto_save_area ();
3426
3427 /* Free up storage we no longer need. */
3428 for (i = 0; i < num_actuals; ++i)
3429 free (args[i].aligned_regs);
3430
3431 insns = get_insns ();
3432 end_sequence ();
3433
3434 if (pass == 0)
3435 {
3436 tail_call_insns = insns;
3437
3438 /* Restore the pending stack adjustment now that we have
3439 finished generating the sibling call sequence. */
3440
3441 pending_stack_adjust = save_pending_stack_adjust;
3442 stack_pointer_delta = save_stack_pointer_delta;
3443
3444 /* Prepare arg structure for next iteration. */
3445 for (i = 0; i < num_actuals; i++)
3446 {
3447 args[i].value = 0;
3448 args[i].aligned_regs = 0;
3449 args[i].stack = 0;
3450 }
3451
3452 sbitmap_free (stored_args_map);
3453 internal_arg_pointer_exp_state.scan_start = NULL_RTX;
3454 internal_arg_pointer_exp_state.cache.release ();
3455 }
3456 else
3457 {
3458 normal_call_insns = insns;
3459
3460 /* Verify that we've deallocated all the stack we used. */
3461 gcc_assert ((flags & ECF_NORETURN)
3462 || (old_stack_allocated
3463 == stack_pointer_delta - pending_stack_adjust));
3464 }
3465
3466 /* If something prevents making this a sibling call,
3467 zero out the sequence. */
3468 if (sibcall_failure)
3469 tail_call_insns = NULL_RTX;
3470 else
3471 break;
3472 }
3473
3474 /* If tail call production succeeded, we need to remove REG_EQUIV notes on
3475 arguments too, as argument area is now clobbered by the call. */
3476 if (tail_call_insns)
3477 {
3478 emit_insn (tail_call_insns);
3479 crtl->tail_call_emit = true;
3480 }
3481 else
3482 emit_insn (normal_call_insns);
3483
3484 currently_expanding_call--;
3485
3486 free (stack_usage_map_buf);
3487
3488 return target;
3489 }
3490
3491 /* A sibling call sequence invalidates any REG_EQUIV notes made for
3492 this function's incoming arguments.
3493
3494 At the start of RTL generation we know the only REG_EQUIV notes
3495 in the rtl chain are those for incoming arguments, so we can look
3496 for REG_EQUIV notes between the start of the function and the
3497 NOTE_INSN_FUNCTION_BEG.
3498
3499 This is (slight) overkill. We could keep track of the highest
3500 argument we clobber and be more selective in removing notes, but it
3501 does not seem to be worth the effort. */
3502
3503 void
3504 fixup_tail_calls (void)
3505 {
3506 rtx insn;
3507
3508 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
3509 {
3510 rtx note;
3511
3512 /* There are never REG_EQUIV notes for the incoming arguments
3513 after the NOTE_INSN_FUNCTION_BEG note, so stop if we see it. */
3514 if (NOTE_P (insn)
3515 && NOTE_KIND (insn) == NOTE_INSN_FUNCTION_BEG)
3516 break;
3517
3518 note = find_reg_note (insn, REG_EQUIV, 0);
3519 if (note)
3520 remove_note (insn, note);
3521 note = find_reg_note (insn, REG_EQUIV, 0);
3522 gcc_assert (!note);
3523 }
3524 }
3525
3526 /* Traverse a list of TYPES and expand all complex types into their
3527 components. */
3528 static tree
3529 split_complex_types (tree types)
3530 {
3531 tree p;
3532
3533 /* Before allocating memory, check for the common case of no complex. */
3534 for (p = types; p; p = TREE_CHAIN (p))
3535 {
3536 tree type = TREE_VALUE (p);
3537 if (TREE_CODE (type) == COMPLEX_TYPE
3538 && targetm.calls.split_complex_arg (type))
3539 goto found;
3540 }
3541 return types;
3542
3543 found:
3544 types = copy_list (types);
3545
3546 for (p = types; p; p = TREE_CHAIN (p))
3547 {
3548 tree complex_type = TREE_VALUE (p);
3549
3550 if (TREE_CODE (complex_type) == COMPLEX_TYPE
3551 && targetm.calls.split_complex_arg (complex_type))
3552 {
3553 tree next, imag;
3554
3555 /* Rewrite complex type with component type. */
3556 TREE_VALUE (p) = TREE_TYPE (complex_type);
3557 next = TREE_CHAIN (p);
3558
3559 /* Add another component type for the imaginary part. */
3560 imag = build_tree_list (NULL_TREE, TREE_VALUE (p));
3561 TREE_CHAIN (p) = imag;
3562 TREE_CHAIN (imag) = next;
3563
3564 /* Skip the newly created node. */
3565 p = TREE_CHAIN (p);
3566 }
3567 }
3568
3569 return types;
3570 }
3571 \f
3572 /* Output a library call to function FUN (a SYMBOL_REF rtx).
3573 The RETVAL parameter specifies whether return value needs to be saved, other
3574 parameters are documented in the emit_library_call function below. */
3575
3576 static rtx
3577 emit_library_call_value_1 (int retval, rtx orgfun, rtx value,
3578 enum libcall_type fn_type,
3579 enum machine_mode outmode, int nargs, va_list p)
3580 {
3581 /* Total size in bytes of all the stack-parms scanned so far. */
3582 struct args_size args_size;
3583 /* Size of arguments before any adjustments (such as rounding). */
3584 struct args_size original_args_size;
3585 int argnum;
3586 rtx fun;
3587 /* Todo, choose the correct decl type of orgfun. Sadly this information
3588 isn't present here, so we default to native calling abi here. */
3589 tree fndecl ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3590 tree fntype ATTRIBUTE_UNUSED = NULL_TREE; /* library calls default to host calling abi ? */
3591 int inc;
3592 int count;
3593 rtx argblock = 0;
3594 CUMULATIVE_ARGS args_so_far_v;
3595 cumulative_args_t args_so_far;
3596 struct arg
3597 {
3598 rtx value;
3599 enum machine_mode mode;
3600 rtx reg;
3601 int partial;
3602 struct locate_and_pad_arg_data locate;
3603 rtx save_area;
3604 };
3605 struct arg *argvec;
3606 int old_inhibit_defer_pop = inhibit_defer_pop;
3607 rtx call_fusage = 0;
3608 rtx mem_value = 0;
3609 rtx valreg;
3610 int pcc_struct_value = 0;
3611 int struct_value_size = 0;
3612 int flags;
3613 int reg_parm_stack_space = 0;
3614 int needed;
3615 rtx before_call;
3616 tree tfom; /* type_for_mode (outmode, 0) */
3617
3618 #ifdef REG_PARM_STACK_SPACE
3619 /* Define the boundary of the register parm stack space that needs to be
3620 save, if any. */
3621 int low_to_save = 0, high_to_save = 0;
3622 rtx save_area = 0; /* Place that it is saved. */
3623 #endif
3624
3625 /* Size of the stack reserved for parameter registers. */
3626 int initial_highest_arg_in_use = highest_outgoing_arg_in_use;
3627 char *initial_stack_usage_map = stack_usage_map;
3628 char *stack_usage_map_buf = NULL;
3629
3630 rtx struct_value = targetm.calls.struct_value_rtx (0, 0);
3631
3632 #ifdef REG_PARM_STACK_SPACE
3633 reg_parm_stack_space = REG_PARM_STACK_SPACE ((tree) 0);
3634 #endif
3635
3636 /* By default, library functions can not throw. */
3637 flags = ECF_NOTHROW;
3638
3639 switch (fn_type)
3640 {
3641 case LCT_NORMAL:
3642 break;
3643 case LCT_CONST:
3644 flags |= ECF_CONST;
3645 break;
3646 case LCT_PURE:
3647 flags |= ECF_PURE;
3648 break;
3649 case LCT_NORETURN:
3650 flags |= ECF_NORETURN;
3651 break;
3652 case LCT_THROW:
3653 flags = ECF_NORETURN;
3654 break;
3655 case LCT_RETURNS_TWICE:
3656 flags = ECF_RETURNS_TWICE;
3657 break;
3658 }
3659 fun = orgfun;
3660
3661 /* Ensure current function's preferred stack boundary is at least
3662 what we need. */
3663 if (crtl->preferred_stack_boundary < PREFERRED_STACK_BOUNDARY)
3664 crtl->preferred_stack_boundary = PREFERRED_STACK_BOUNDARY;
3665
3666 /* If this kind of value comes back in memory,
3667 decide where in memory it should come back. */
3668 if (outmode != VOIDmode)
3669 {
3670 tfom = lang_hooks.types.type_for_mode (outmode, 0);
3671 if (aggregate_value_p (tfom, 0))
3672 {
3673 #ifdef PCC_STATIC_STRUCT_RETURN
3674 rtx pointer_reg
3675 = hard_function_value (build_pointer_type (tfom), 0, 0, 0);
3676 mem_value = gen_rtx_MEM (outmode, pointer_reg);
3677 pcc_struct_value = 1;
3678 if (value == 0)
3679 value = gen_reg_rtx (outmode);
3680 #else /* not PCC_STATIC_STRUCT_RETURN */
3681 struct_value_size = GET_MODE_SIZE (outmode);
3682 if (value != 0 && MEM_P (value))
3683 mem_value = value;
3684 else
3685 mem_value = assign_temp (tfom, 1, 1);
3686 #endif
3687 /* This call returns a big structure. */
3688 flags &= ~(ECF_CONST | ECF_PURE | ECF_LOOPING_CONST_OR_PURE);
3689 }
3690 }
3691 else
3692 tfom = void_type_node;
3693
3694 /* ??? Unfinished: must pass the memory address as an argument. */
3695
3696 /* Copy all the libcall-arguments out of the varargs data
3697 and into a vector ARGVEC.
3698
3699 Compute how to pass each argument. We only support a very small subset
3700 of the full argument passing conventions to limit complexity here since
3701 library functions shouldn't have many args. */
3702
3703 argvec = XALLOCAVEC (struct arg, nargs + 1);
3704 memset (argvec, 0, (nargs + 1) * sizeof (struct arg));
3705
3706 #ifdef INIT_CUMULATIVE_LIBCALL_ARGS
3707 INIT_CUMULATIVE_LIBCALL_ARGS (args_so_far_v, outmode, fun);
3708 #else
3709 INIT_CUMULATIVE_ARGS (args_so_far_v, NULL_TREE, fun, 0, nargs);
3710 #endif
3711 args_so_far = pack_cumulative_args (&args_so_far_v);
3712
3713 args_size.constant = 0;
3714 args_size.var = 0;
3715
3716 count = 0;
3717
3718 push_temp_slots ();
3719
3720 /* If there's a structure value address to be passed,
3721 either pass it in the special place, or pass it as an extra argument. */
3722 if (mem_value && struct_value == 0 && ! pcc_struct_value)
3723 {
3724 rtx addr = XEXP (mem_value, 0);
3725
3726 nargs++;
3727
3728 /* Make sure it is a reasonable operand for a move or push insn. */
3729 if (!REG_P (addr) && !MEM_P (addr)
3730 && !(CONSTANT_P (addr)
3731 && targetm.legitimate_constant_p (Pmode, addr)))
3732 addr = force_operand (addr, NULL_RTX);
3733
3734 argvec[count].value = addr;
3735 argvec[count].mode = Pmode;
3736 argvec[count].partial = 0;
3737
3738 argvec[count].reg = targetm.calls.function_arg (args_so_far,
3739 Pmode, NULL_TREE, true);
3740 gcc_assert (targetm.calls.arg_partial_bytes (args_so_far, Pmode,
3741 NULL_TREE, 1) == 0);
3742
3743 locate_and_pad_parm (Pmode, NULL_TREE,
3744 #ifdef STACK_PARMS_IN_REG_PARM_AREA
3745 1,
3746 #else
3747 argvec[count].reg != 0,
3748 #endif
3749 reg_parm_stack_space, 0,
3750 NULL_TREE, &args_size, &argvec[count].locate);
3751
3752 if (argvec[count].reg == 0 || argvec[count].partial != 0
3753 || reg_parm_stack_space > 0)
3754 args_size.constant += argvec[count].locate.size.constant;
3755
3756 targetm.calls.function_arg_advance (args_so_far, Pmode, (tree) 0, true);
3757
3758 count++;
3759 }
3760
3761 for (; count < nargs; count++)
3762 {
3763 rtx val = va_arg (p, rtx);
3764 enum machine_mode mode = (enum machine_mode) va_arg (p, int);
3765 int unsigned_p = 0;
3766
3767 /* We cannot convert the arg value to the mode the library wants here;
3768 must do it earlier where we know the signedness of the arg. */
3769 gcc_assert (mode != BLKmode
3770 && (GET_MODE (val) == mode || GET_MODE (val) == VOIDmode));
3771
3772 /* Make sure it is a reasonable operand for a move or push insn. */
3773 if (!REG_P (val) && !MEM_P (val)
3774 && !(CONSTANT_P (val) && targetm.legitimate_constant_p (mode, val)))
3775 val = force_operand (val, NULL_RTX);
3776
3777 if (pass_by_reference (&args_so_far_v, mode, NULL_TREE, 1))
3778 {
3779 rtx slot;
3780 int must_copy
3781 = !reference_callee_copied (&args_so_far_v, mode, NULL_TREE, 1);
3782
3783 /* If this was a CONST function, it is now PURE since it now
3784 reads memory. */
3785 if (flags & ECF_CONST)
3786 {
3787 flags &= ~ECF_CONST;
3788 flags |= ECF_PURE;
3789 }
3790
3791 if (MEM_P (val) && !must_copy)
3792 {
3793 tree val_expr = MEM_EXPR (val);
3794 if (val_expr)
3795 mark_addressable (val_expr);
3796 slot = val;
3797 }
3798 else
3799 {
3800 slot = assign_temp (lang_hooks.types.type_for_mode (mode, 0),
3801 1, 1);
3802 emit_move_insn (slot, val);
3803 }
3804
3805 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
3806 gen_rtx_USE (VOIDmode, slot),
3807 call_fusage);
3808 if (must_copy)
3809 call_fusage = gen_rtx_EXPR_LIST (VOIDmode,
3810 gen_rtx_CLOBBER (VOIDmode,
3811 slot),
3812 call_fusage);
3813
3814 mode = Pmode;
3815 val = force_operand (XEXP (slot, 0), NULL_RTX);
3816 }
3817
3818 mode = promote_function_mode (NULL_TREE, mode, &unsigned_p, NULL_TREE, 0);
3819 argvec[count].mode = mode;
3820 argvec[count].value = convert_modes (mode, GET_MODE (val), val, unsigned_p);
3821 argvec[count].reg = targetm.calls.function_arg (args_so_far, mode,
3822 NULL_TREE, true);
3823
3824 argvec[count].partial
3825 = targetm.calls.arg_partial_bytes (args_so_far, mode, NULL_TREE, 1);
3826
3827 if (argvec[count].reg == 0
3828 || argvec[count].partial != 0
3829 || reg_parm_stack_space > 0)
3830 {
3831 locate_and_pad_parm (mode, NULL_TREE,
3832 #ifdef STACK_PARMS_IN_REG_PARM_AREA
3833 1,
3834 #else
3835 argvec[count].reg != 0,
3836 #endif
3837 reg_parm_stack_space, argvec[count].partial,
3838 NULL_TREE, &args_size, &argvec[count].locate);
3839 args_size.constant += argvec[count].locate.size.constant;
3840 gcc_assert (!argvec[count].locate.size.var);
3841 }
3842 #ifdef BLOCK_REG_PADDING
3843 else
3844 /* The argument is passed entirely in registers. See at which
3845 end it should be padded. */
3846 argvec[count].locate.where_pad =
3847 BLOCK_REG_PADDING (mode, NULL_TREE,
3848 GET_MODE_SIZE (mode) <= UNITS_PER_WORD);
3849 #endif
3850
3851 targetm.calls.function_arg_advance (args_so_far, mode, (tree) 0, true);
3852 }
3853
3854 /* If this machine requires an external definition for library
3855 functions, write one out. */
3856 assemble_external_libcall (fun);
3857
3858 original_args_size = args_size;
3859 args_size.constant = (((args_size.constant
3860 + stack_pointer_delta
3861 + STACK_BYTES - 1)
3862 / STACK_BYTES
3863 * STACK_BYTES)
3864 - stack_pointer_delta);
3865
3866 args_size.constant = MAX (args_size.constant,
3867 reg_parm_stack_space);
3868
3869 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
3870 args_size.constant -= reg_parm_stack_space;
3871
3872 if (args_size.constant > crtl->outgoing_args_size)
3873 crtl->outgoing_args_size = args_size.constant;
3874
3875 if (flag_stack_usage_info && !ACCUMULATE_OUTGOING_ARGS)
3876 {
3877 int pushed = args_size.constant + pending_stack_adjust;
3878 if (pushed > current_function_pushed_stack_size)
3879 current_function_pushed_stack_size = pushed;
3880 }
3881
3882 if (ACCUMULATE_OUTGOING_ARGS)
3883 {
3884 /* Since the stack pointer will never be pushed, it is possible for
3885 the evaluation of a parm to clobber something we have already
3886 written to the stack. Since most function calls on RISC machines
3887 do not use the stack, this is uncommon, but must work correctly.
3888
3889 Therefore, we save any area of the stack that was already written
3890 and that we are using. Here we set up to do this by making a new
3891 stack usage map from the old one.
3892
3893 Another approach might be to try to reorder the argument
3894 evaluations to avoid this conflicting stack usage. */
3895
3896 needed = args_size.constant;
3897
3898 /* Since we will be writing into the entire argument area, the
3899 map must be allocated for its entire size, not just the part that
3900 is the responsibility of the caller. */
3901 if (! OUTGOING_REG_PARM_STACK_SPACE ((!fndecl ? fntype : TREE_TYPE (fndecl))))
3902 needed += reg_parm_stack_space;
3903
3904 #ifdef ARGS_GROW_DOWNWARD
3905 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3906 needed + 1);
3907 #else
3908 highest_outgoing_arg_in_use = MAX (initial_highest_arg_in_use,
3909 needed);
3910 #endif
3911 stack_usage_map_buf = XNEWVEC (char, highest_outgoing_arg_in_use);
3912 stack_usage_map = stack_usage_map_buf;
3913
3914 if (initial_highest_arg_in_use)
3915 memcpy (stack_usage_map, initial_stack_usage_map,
3916 initial_highest_arg_in_use);
3917
3918 if (initial_highest_arg_in_use != highest_outgoing_arg_in_use)
3919 memset (&stack_usage_map[initial_highest_arg_in_use], 0,
3920 highest_outgoing_arg_in_use - initial_highest_arg_in_use);
3921 needed = 0;
3922
3923 /* We must be careful to use virtual regs before they're instantiated,
3924 and real regs afterwards. Loop optimization, for example, can create
3925 new libcalls after we've instantiated the virtual regs, and if we
3926 use virtuals anyway, they won't match the rtl patterns. */
3927
3928 if (virtuals_instantiated)
3929 argblock = plus_constant (Pmode, stack_pointer_rtx,
3930 STACK_POINTER_OFFSET);
3931 else
3932 argblock = virtual_outgoing_args_rtx;
3933 }
3934 else
3935 {
3936 if (!PUSH_ARGS)
3937 argblock = push_block (GEN_INT (args_size.constant), 0, 0);
3938 }
3939
3940 /* If we push args individually in reverse order, perform stack alignment
3941 before the first push (the last arg). */
3942 if (argblock == 0 && PUSH_ARGS_REVERSED)
3943 anti_adjust_stack (GEN_INT (args_size.constant
3944 - original_args_size.constant));
3945
3946 if (PUSH_ARGS_REVERSED)
3947 {
3948 inc = -1;
3949 argnum = nargs - 1;
3950 }
3951 else
3952 {
3953 inc = 1;
3954 argnum = 0;
3955 }
3956
3957 #ifdef REG_PARM_STACK_SPACE
3958 if (ACCUMULATE_OUTGOING_ARGS)
3959 {
3960 /* The argument list is the property of the called routine and it
3961 may clobber it. If the fixed area has been used for previous
3962 parameters, we must save and restore it. */
3963 save_area = save_fixed_argument_area (reg_parm_stack_space, argblock,
3964 &low_to_save, &high_to_save);
3965 }
3966 #endif
3967
3968 /* Push the args that need to be pushed. */
3969
3970 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
3971 are to be pushed. */
3972 for (count = 0; count < nargs; count++, argnum += inc)
3973 {
3974 enum machine_mode mode = argvec[argnum].mode;
3975 rtx val = argvec[argnum].value;
3976 rtx reg = argvec[argnum].reg;
3977 int partial = argvec[argnum].partial;
3978 unsigned int parm_align = argvec[argnum].locate.boundary;
3979 int lower_bound = 0, upper_bound = 0, i;
3980
3981 if (! (reg != 0 && partial == 0))
3982 {
3983 rtx use;
3984
3985 if (ACCUMULATE_OUTGOING_ARGS)
3986 {
3987 /* If this is being stored into a pre-allocated, fixed-size,
3988 stack area, save any previous data at that location. */
3989
3990 #ifdef ARGS_GROW_DOWNWARD
3991 /* stack_slot is negative, but we want to index stack_usage_map
3992 with positive values. */
3993 upper_bound = -argvec[argnum].locate.slot_offset.constant + 1;
3994 lower_bound = upper_bound - argvec[argnum].locate.size.constant;
3995 #else
3996 lower_bound = argvec[argnum].locate.slot_offset.constant;
3997 upper_bound = lower_bound + argvec[argnum].locate.size.constant;
3998 #endif
3999
4000 i = lower_bound;
4001 /* Don't worry about things in the fixed argument area;
4002 it has already been saved. */
4003 if (i < reg_parm_stack_space)
4004 i = reg_parm_stack_space;
4005 while (i < upper_bound && stack_usage_map[i] == 0)
4006 i++;
4007
4008 if (i < upper_bound)
4009 {
4010 /* We need to make a save area. */
4011 unsigned int size
4012 = argvec[argnum].locate.size.constant * BITS_PER_UNIT;
4013 enum machine_mode save_mode
4014 = mode_for_size (size, MODE_INT, 1);
4015 rtx adr
4016 = plus_constant (Pmode, argblock,
4017 argvec[argnum].locate.offset.constant);
4018 rtx stack_area
4019 = gen_rtx_MEM (save_mode, memory_address (save_mode, adr));
4020
4021 if (save_mode == BLKmode)
4022 {
4023 argvec[argnum].save_area
4024 = assign_stack_temp (BLKmode,
4025 argvec[argnum].locate.size.constant
4026 );
4027
4028 emit_block_move (validize_mem (argvec[argnum].save_area),
4029 stack_area,
4030 GEN_INT (argvec[argnum].locate.size.constant),
4031 BLOCK_OP_CALL_PARM);
4032 }
4033 else
4034 {
4035 argvec[argnum].save_area = gen_reg_rtx (save_mode);
4036
4037 emit_move_insn (argvec[argnum].save_area, stack_area);
4038 }
4039 }
4040 }
4041
4042 emit_push_insn (val, mode, NULL_TREE, NULL_RTX, parm_align,
4043 partial, reg, 0, argblock,
4044 GEN_INT (argvec[argnum].locate.offset.constant),
4045 reg_parm_stack_space,
4046 ARGS_SIZE_RTX (argvec[argnum].locate.alignment_pad));
4047
4048 /* Now mark the segment we just used. */
4049 if (ACCUMULATE_OUTGOING_ARGS)
4050 for (i = lower_bound; i < upper_bound; i++)
4051 stack_usage_map[i] = 1;
4052
4053 NO_DEFER_POP;
4054
4055 /* Indicate argument access so that alias.c knows that these
4056 values are live. */
4057 if (argblock)
4058 use = plus_constant (Pmode, argblock,
4059 argvec[argnum].locate.offset.constant);
4060 else
4061 /* When arguments are pushed, trying to tell alias.c where
4062 exactly this argument is won't work, because the
4063 auto-increment causes confusion. So we merely indicate
4064 that we access something with a known mode somewhere on
4065 the stack. */
4066 use = gen_rtx_PLUS (Pmode, virtual_outgoing_args_rtx,
4067 gen_rtx_SCRATCH (Pmode));
4068 use = gen_rtx_MEM (argvec[argnum].mode, use);
4069 use = gen_rtx_USE (VOIDmode, use);
4070 call_fusage = gen_rtx_EXPR_LIST (VOIDmode, use, call_fusage);
4071 }
4072 }
4073
4074 /* If we pushed args in forward order, perform stack alignment
4075 after pushing the last arg. */
4076 if (argblock == 0 && !PUSH_ARGS_REVERSED)
4077 anti_adjust_stack (GEN_INT (args_size.constant
4078 - original_args_size.constant));
4079
4080 if (PUSH_ARGS_REVERSED)
4081 argnum = nargs - 1;
4082 else
4083 argnum = 0;
4084
4085 fun = prepare_call_address (NULL, fun, NULL, &call_fusage, 0, 0);
4086
4087 /* Now load any reg parms into their regs. */
4088
4089 /* ARGNUM indexes the ARGVEC array in the order in which the arguments
4090 are to be pushed. */
4091 for (count = 0; count < nargs; count++, argnum += inc)
4092 {
4093 enum machine_mode mode = argvec[argnum].mode;
4094 rtx val = argvec[argnum].value;
4095 rtx reg = argvec[argnum].reg;
4096 int partial = argvec[argnum].partial;
4097 #ifdef BLOCK_REG_PADDING
4098 int size = 0;
4099 #endif
4100
4101 /* Handle calls that pass values in multiple non-contiguous
4102 locations. The PA64 has examples of this for library calls. */
4103 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4104 emit_group_load (reg, val, NULL_TREE, GET_MODE_SIZE (mode));
4105 else if (reg != 0 && partial == 0)
4106 {
4107 emit_move_insn (reg, val);
4108 #ifdef BLOCK_REG_PADDING
4109 size = GET_MODE_SIZE (argvec[argnum].mode);
4110
4111 /* Copied from load_register_parameters. */
4112
4113 /* Handle case where we have a value that needs shifting
4114 up to the msb. eg. a QImode value and we're padding
4115 upward on a BYTES_BIG_ENDIAN machine. */
4116 if (size < UNITS_PER_WORD
4117 && (argvec[argnum].locate.where_pad
4118 == (BYTES_BIG_ENDIAN ? upward : downward)))
4119 {
4120 rtx x;
4121 int shift = (UNITS_PER_WORD - size) * BITS_PER_UNIT;
4122
4123 /* Assigning REG here rather than a temp makes CALL_FUSAGE
4124 report the whole reg as used. Strictly speaking, the
4125 call only uses SIZE bytes at the msb end, but it doesn't
4126 seem worth generating rtl to say that. */
4127 reg = gen_rtx_REG (word_mode, REGNO (reg));
4128 x = expand_shift (LSHIFT_EXPR, word_mode, reg, shift, reg, 1);
4129 if (x != reg)
4130 emit_move_insn (reg, x);
4131 }
4132 #endif
4133 }
4134
4135 NO_DEFER_POP;
4136 }
4137
4138 /* Any regs containing parms remain in use through the call. */
4139 for (count = 0; count < nargs; count++)
4140 {
4141 rtx reg = argvec[count].reg;
4142 if (reg != 0 && GET_CODE (reg) == PARALLEL)
4143 use_group_regs (&call_fusage, reg);
4144 else if (reg != 0)
4145 {
4146 int partial = argvec[count].partial;
4147 if (partial)
4148 {
4149 int nregs;
4150 gcc_assert (partial % UNITS_PER_WORD == 0);
4151 nregs = partial / UNITS_PER_WORD;
4152 use_regs (&call_fusage, REGNO (reg), nregs);
4153 }
4154 else
4155 use_reg (&call_fusage, reg);
4156 }
4157 }
4158
4159 /* Pass the function the address in which to return a structure value. */
4160 if (mem_value != 0 && struct_value != 0 && ! pcc_struct_value)
4161 {
4162 emit_move_insn (struct_value,
4163 force_reg (Pmode,
4164 force_operand (XEXP (mem_value, 0),
4165 NULL_RTX)));
4166 if (REG_P (struct_value))
4167 use_reg (&call_fusage, struct_value);
4168 }
4169
4170 /* Don't allow popping to be deferred, since then
4171 cse'ing of library calls could delete a call and leave the pop. */
4172 NO_DEFER_POP;
4173 valreg = (mem_value == 0 && outmode != VOIDmode
4174 ? hard_libcall_value (outmode, orgfun) : NULL_RTX);
4175
4176 /* Stack must be properly aligned now. */
4177 gcc_assert (!(stack_pointer_delta
4178 & (PREFERRED_STACK_BOUNDARY / BITS_PER_UNIT - 1)));
4179
4180 before_call = get_last_insn ();
4181
4182 /* We pass the old value of inhibit_defer_pop + 1 to emit_call_1, which
4183 will set inhibit_defer_pop to that value. */
4184 /* The return type is needed to decide how many bytes the function pops.
4185 Signedness plays no role in that, so for simplicity, we pretend it's
4186 always signed. We also assume that the list of arguments passed has
4187 no impact, so we pretend it is unknown. */
4188
4189 emit_call_1 (fun, NULL,
4190 get_identifier (XSTR (orgfun, 0)),
4191 build_function_type (tfom, NULL_TREE),
4192 original_args_size.constant, args_size.constant,
4193 struct_value_size,
4194 targetm.calls.function_arg (args_so_far,
4195 VOIDmode, void_type_node, true),
4196 valreg,
4197 old_inhibit_defer_pop + 1, call_fusage, flags, args_so_far);
4198
4199 /* Right-shift returned value if necessary. */
4200 if (!pcc_struct_value
4201 && TYPE_MODE (tfom) != BLKmode
4202 && targetm.calls.return_in_msb (tfom))
4203 {
4204 shift_return_value (TYPE_MODE (tfom), false, valreg);
4205 valreg = gen_rtx_REG (TYPE_MODE (tfom), REGNO (valreg));
4206 }
4207
4208 /* For calls to `setjmp', etc., inform function.c:setjmp_warnings
4209 that it should complain if nonvolatile values are live. For
4210 functions that cannot return, inform flow that control does not
4211 fall through. */
4212 if (flags & ECF_NORETURN)
4213 {
4214 /* The barrier note must be emitted
4215 immediately after the CALL_INSN. Some ports emit more than
4216 just a CALL_INSN above, so we must search for it here. */
4217 rtx last = get_last_insn ();
4218 while (!CALL_P (last))
4219 {
4220 last = PREV_INSN (last);
4221 /* There was no CALL_INSN? */
4222 gcc_assert (last != before_call);
4223 }
4224
4225 emit_barrier_after (last);
4226 }
4227
4228 /* Consider that "regular" libcalls, i.e. all of them except for LCT_THROW
4229 and LCT_RETURNS_TWICE, cannot perform non-local gotos. */
4230 if (flags & ECF_NOTHROW)
4231 {
4232 rtx last = get_last_insn ();
4233 while (!CALL_P (last))
4234 {
4235 last = PREV_INSN (last);
4236 /* There was no CALL_INSN? */
4237 gcc_assert (last != before_call);
4238 }
4239
4240 make_reg_eh_region_note_nothrow_nononlocal (last);
4241 }
4242
4243 /* Now restore inhibit_defer_pop to its actual original value. */
4244 OK_DEFER_POP;
4245
4246 pop_temp_slots ();
4247
4248 /* Copy the value to the right place. */
4249 if (outmode != VOIDmode && retval)
4250 {
4251 if (mem_value)
4252 {
4253 if (value == 0)
4254 value = mem_value;
4255 if (value != mem_value)
4256 emit_move_insn (value, mem_value);
4257 }
4258 else if (GET_CODE (valreg) == PARALLEL)
4259 {
4260 if (value == 0)
4261 value = gen_reg_rtx (outmode);
4262 emit_group_store (value, valreg, NULL_TREE, GET_MODE_SIZE (outmode));
4263 }
4264 else
4265 {
4266 /* Convert to the proper mode if a promotion has been active. */
4267 if (GET_MODE (valreg) != outmode)
4268 {
4269 int unsignedp = TYPE_UNSIGNED (tfom);
4270
4271 gcc_assert (promote_function_mode (tfom, outmode, &unsignedp,
4272 fndecl ? TREE_TYPE (fndecl) : fntype, 1)
4273 == GET_MODE (valreg));
4274 valreg = convert_modes (outmode, GET_MODE (valreg), valreg, 0);
4275 }
4276
4277 if (value != 0)
4278 emit_move_insn (value, valreg);
4279 else
4280 value = valreg;
4281 }
4282 }
4283
4284 if (ACCUMULATE_OUTGOING_ARGS)
4285 {
4286 #ifdef REG_PARM_STACK_SPACE
4287 if (save_area)
4288 restore_fixed_argument_area (save_area, argblock,
4289 high_to_save, low_to_save);
4290 #endif
4291
4292 /* If we saved any argument areas, restore them. */
4293 for (count = 0; count < nargs; count++)
4294 if (argvec[count].save_area)
4295 {
4296 enum machine_mode save_mode = GET_MODE (argvec[count].save_area);
4297 rtx adr = plus_constant (Pmode, argblock,
4298 argvec[count].locate.offset.constant);
4299 rtx stack_area = gen_rtx_MEM (save_mode,
4300 memory_address (save_mode, adr));
4301
4302 if (save_mode == BLKmode)
4303 emit_block_move (stack_area,
4304 validize_mem (argvec[count].save_area),
4305 GEN_INT (argvec[count].locate.size.constant),
4306 BLOCK_OP_CALL_PARM);
4307 else
4308 emit_move_insn (stack_area, argvec[count].save_area);
4309 }
4310
4311 highest_outgoing_arg_in_use = initial_highest_arg_in_use;
4312 stack_usage_map = initial_stack_usage_map;
4313 }
4314
4315 free (stack_usage_map_buf);
4316
4317 return value;
4318
4319 }
4320 \f
4321 /* Output a library call to function FUN (a SYMBOL_REF rtx)
4322 (emitting the queue unless NO_QUEUE is nonzero),
4323 for a value of mode OUTMODE,
4324 with NARGS different arguments, passed as alternating rtx values
4325 and machine_modes to convert them to.
4326
4327 FN_TYPE should be LCT_NORMAL for `normal' calls, LCT_CONST for
4328 `const' calls, LCT_PURE for `pure' calls, or other LCT_ value for
4329 other types of library calls. */
4330
4331 void
4332 emit_library_call (rtx orgfun, enum libcall_type fn_type,
4333 enum machine_mode outmode, int nargs, ...)
4334 {
4335 va_list p;
4336
4337 va_start (p, nargs);
4338 emit_library_call_value_1 (0, orgfun, NULL_RTX, fn_type, outmode, nargs, p);
4339 va_end (p);
4340 }
4341 \f
4342 /* Like emit_library_call except that an extra argument, VALUE,
4343 comes second and says where to store the result.
4344 (If VALUE is zero, this function chooses a convenient way
4345 to return the value.
4346
4347 This function returns an rtx for where the value is to be found.
4348 If VALUE is nonzero, VALUE is returned. */
4349
4350 rtx
4351 emit_library_call_value (rtx orgfun, rtx value,
4352 enum libcall_type fn_type,
4353 enum machine_mode outmode, int nargs, ...)
4354 {
4355 rtx result;
4356 va_list p;
4357
4358 va_start (p, nargs);
4359 result = emit_library_call_value_1 (1, orgfun, value, fn_type, outmode,
4360 nargs, p);
4361 va_end (p);
4362
4363 return result;
4364 }
4365 \f
4366 /* Store a single argument for a function call
4367 into the register or memory area where it must be passed.
4368 *ARG describes the argument value and where to pass it.
4369
4370 ARGBLOCK is the address of the stack-block for all the arguments,
4371 or 0 on a machine where arguments are pushed individually.
4372
4373 MAY_BE_ALLOCA nonzero says this could be a call to `alloca'
4374 so must be careful about how the stack is used.
4375
4376 VARIABLE_SIZE nonzero says that this was a variable-sized outgoing
4377 argument stack. This is used if ACCUMULATE_OUTGOING_ARGS to indicate
4378 that we need not worry about saving and restoring the stack.
4379
4380 FNDECL is the declaration of the function we are calling.
4381
4382 Return nonzero if this arg should cause sibcall failure,
4383 zero otherwise. */
4384
4385 static int
4386 store_one_arg (struct arg_data *arg, rtx argblock, int flags,
4387 int variable_size ATTRIBUTE_UNUSED, int reg_parm_stack_space)
4388 {
4389 tree pval = arg->tree_value;
4390 rtx reg = 0;
4391 int partial = 0;
4392 int used = 0;
4393 int i, lower_bound = 0, upper_bound = 0;
4394 int sibcall_failure = 0;
4395
4396 if (TREE_CODE (pval) == ERROR_MARK)
4397 return 1;
4398
4399 /* Push a new temporary level for any temporaries we make for
4400 this argument. */
4401 push_temp_slots ();
4402
4403 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL))
4404 {
4405 /* If this is being stored into a pre-allocated, fixed-size, stack area,
4406 save any previous data at that location. */
4407 if (argblock && ! variable_size && arg->stack)
4408 {
4409 #ifdef ARGS_GROW_DOWNWARD
4410 /* stack_slot is negative, but we want to index stack_usage_map
4411 with positive values. */
4412 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4413 upper_bound = -INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1)) + 1;
4414 else
4415 upper_bound = 0;
4416
4417 lower_bound = upper_bound - arg->locate.size.constant;
4418 #else
4419 if (GET_CODE (XEXP (arg->stack_slot, 0)) == PLUS)
4420 lower_bound = INTVAL (XEXP (XEXP (arg->stack_slot, 0), 1));
4421 else
4422 lower_bound = 0;
4423
4424 upper_bound = lower_bound + arg->locate.size.constant;
4425 #endif
4426
4427 i = lower_bound;
4428 /* Don't worry about things in the fixed argument area;
4429 it has already been saved. */
4430 if (i < reg_parm_stack_space)
4431 i = reg_parm_stack_space;
4432 while (i < upper_bound && stack_usage_map[i] == 0)
4433 i++;
4434
4435 if (i < upper_bound)
4436 {
4437 /* We need to make a save area. */
4438 unsigned int size = arg->locate.size.constant * BITS_PER_UNIT;
4439 enum machine_mode save_mode = mode_for_size (size, MODE_INT, 1);
4440 rtx adr = memory_address (save_mode, XEXP (arg->stack_slot, 0));
4441 rtx stack_area = gen_rtx_MEM (save_mode, adr);
4442
4443 if (save_mode == BLKmode)
4444 {
4445 tree ot = TREE_TYPE (arg->tree_value);
4446 tree nt = build_qualified_type (ot, (TYPE_QUALS (ot)
4447 | TYPE_QUAL_CONST));
4448
4449 arg->save_area = assign_temp (nt, 1, 1);
4450 preserve_temp_slots (arg->save_area);
4451 emit_block_move (validize_mem (arg->save_area), stack_area,
4452 GEN_INT (arg->locate.size.constant),
4453 BLOCK_OP_CALL_PARM);
4454 }
4455 else
4456 {
4457 arg->save_area = gen_reg_rtx (save_mode);
4458 emit_move_insn (arg->save_area, stack_area);
4459 }
4460 }
4461 }
4462 }
4463
4464 /* If this isn't going to be placed on both the stack and in registers,
4465 set up the register and number of words. */
4466 if (! arg->pass_on_stack)
4467 {
4468 if (flags & ECF_SIBCALL)
4469 reg = arg->tail_call_reg;
4470 else
4471 reg = arg->reg;
4472 partial = arg->partial;
4473 }
4474
4475 /* Being passed entirely in a register. We shouldn't be called in
4476 this case. */
4477 gcc_assert (reg == 0 || partial != 0);
4478
4479 /* If this arg needs special alignment, don't load the registers
4480 here. */
4481 if (arg->n_aligned_regs != 0)
4482 reg = 0;
4483
4484 /* If this is being passed partially in a register, we can't evaluate
4485 it directly into its stack slot. Otherwise, we can. */
4486 if (arg->value == 0)
4487 {
4488 /* stack_arg_under_construction is nonzero if a function argument is
4489 being evaluated directly into the outgoing argument list and
4490 expand_call must take special action to preserve the argument list
4491 if it is called recursively.
4492
4493 For scalar function arguments stack_usage_map is sufficient to
4494 determine which stack slots must be saved and restored. Scalar
4495 arguments in general have pass_on_stack == 0.
4496
4497 If this argument is initialized by a function which takes the
4498 address of the argument (a C++ constructor or a C function
4499 returning a BLKmode structure), then stack_usage_map is
4500 insufficient and expand_call must push the stack around the
4501 function call. Such arguments have pass_on_stack == 1.
4502
4503 Note that it is always safe to set stack_arg_under_construction,
4504 but this generates suboptimal code if set when not needed. */
4505
4506 if (arg->pass_on_stack)
4507 stack_arg_under_construction++;
4508
4509 arg->value = expand_expr (pval,
4510 (partial
4511 || TYPE_MODE (TREE_TYPE (pval)) != arg->mode)
4512 ? NULL_RTX : arg->stack,
4513 VOIDmode, EXPAND_STACK_PARM);
4514
4515 /* If we are promoting object (or for any other reason) the mode
4516 doesn't agree, convert the mode. */
4517
4518 if (arg->mode != TYPE_MODE (TREE_TYPE (pval)))
4519 arg->value = convert_modes (arg->mode, TYPE_MODE (TREE_TYPE (pval)),
4520 arg->value, arg->unsignedp);
4521
4522 if (arg->pass_on_stack)
4523 stack_arg_under_construction--;
4524 }
4525
4526 /* Check for overlap with already clobbered argument area. */
4527 if ((flags & ECF_SIBCALL)
4528 && MEM_P (arg->value)
4529 && mem_overlaps_already_clobbered_arg_p (XEXP (arg->value, 0),
4530 arg->locate.size.constant))
4531 sibcall_failure = 1;
4532
4533 /* Don't allow anything left on stack from computation
4534 of argument to alloca. */
4535 if (flags & ECF_MAY_BE_ALLOCA)
4536 do_pending_stack_adjust ();
4537
4538 if (arg->value == arg->stack)
4539 /* If the value is already in the stack slot, we are done. */
4540 ;
4541 else if (arg->mode != BLKmode)
4542 {
4543 int size;
4544 unsigned int parm_align;
4545
4546 /* Argument is a scalar, not entirely passed in registers.
4547 (If part is passed in registers, arg->partial says how much
4548 and emit_push_insn will take care of putting it there.)
4549
4550 Push it, and if its size is less than the
4551 amount of space allocated to it,
4552 also bump stack pointer by the additional space.
4553 Note that in C the default argument promotions
4554 will prevent such mismatches. */
4555
4556 size = GET_MODE_SIZE (arg->mode);
4557 /* Compute how much space the push instruction will push.
4558 On many machines, pushing a byte will advance the stack
4559 pointer by a halfword. */
4560 #ifdef PUSH_ROUNDING
4561 size = PUSH_ROUNDING (size);
4562 #endif
4563 used = size;
4564
4565 /* Compute how much space the argument should get:
4566 round up to a multiple of the alignment for arguments. */
4567 if (none != FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)))
4568 used = (((size + PARM_BOUNDARY / BITS_PER_UNIT - 1)
4569 / (PARM_BOUNDARY / BITS_PER_UNIT))
4570 * (PARM_BOUNDARY / BITS_PER_UNIT));
4571
4572 /* Compute the alignment of the pushed argument. */
4573 parm_align = arg->locate.boundary;
4574 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4575 {
4576 int pad = used - size;
4577 if (pad)
4578 {
4579 unsigned int pad_align = (pad & -pad) * BITS_PER_UNIT;
4580 parm_align = MIN (parm_align, pad_align);
4581 }
4582 }
4583
4584 /* This isn't already where we want it on the stack, so put it there.
4585 This can either be done with push or copy insns. */
4586 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), NULL_RTX,
4587 parm_align, partial, reg, used - size, argblock,
4588 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4589 ARGS_SIZE_RTX (arg->locate.alignment_pad));
4590
4591 /* Unless this is a partially-in-register argument, the argument is now
4592 in the stack. */
4593 if (partial == 0)
4594 arg->value = arg->stack;
4595 }
4596 else
4597 {
4598 /* BLKmode, at least partly to be pushed. */
4599
4600 unsigned int parm_align;
4601 int excess;
4602 rtx size_rtx;
4603
4604 /* Pushing a nonscalar.
4605 If part is passed in registers, PARTIAL says how much
4606 and emit_push_insn will take care of putting it there. */
4607
4608 /* Round its size up to a multiple
4609 of the allocation unit for arguments. */
4610
4611 if (arg->locate.size.var != 0)
4612 {
4613 excess = 0;
4614 size_rtx = ARGS_SIZE_RTX (arg->locate.size);
4615 }
4616 else
4617 {
4618 /* PUSH_ROUNDING has no effect on us, because emit_push_insn
4619 for BLKmode is careful to avoid it. */
4620 excess = (arg->locate.size.constant
4621 - int_size_in_bytes (TREE_TYPE (pval))
4622 + partial);
4623 size_rtx = expand_expr (size_in_bytes (TREE_TYPE (pval)),
4624 NULL_RTX, TYPE_MODE (sizetype),
4625 EXPAND_NORMAL);
4626 }
4627
4628 parm_align = arg->locate.boundary;
4629
4630 /* When an argument is padded down, the block is aligned to
4631 PARM_BOUNDARY, but the actual argument isn't. */
4632 if (FUNCTION_ARG_PADDING (arg->mode, TREE_TYPE (pval)) == downward)
4633 {
4634 if (arg->locate.size.var)
4635 parm_align = BITS_PER_UNIT;
4636 else if (excess)
4637 {
4638 unsigned int excess_align = (excess & -excess) * BITS_PER_UNIT;
4639 parm_align = MIN (parm_align, excess_align);
4640 }
4641 }
4642
4643 if ((flags & ECF_SIBCALL) && MEM_P (arg->value))
4644 {
4645 /* emit_push_insn might not work properly if arg->value and
4646 argblock + arg->locate.offset areas overlap. */
4647 rtx x = arg->value;
4648 int i = 0;
4649
4650 if (XEXP (x, 0) == crtl->args.internal_arg_pointer
4651 || (GET_CODE (XEXP (x, 0)) == PLUS
4652 && XEXP (XEXP (x, 0), 0) ==
4653 crtl->args.internal_arg_pointer
4654 && CONST_INT_P (XEXP (XEXP (x, 0), 1))))
4655 {
4656 if (XEXP (x, 0) != crtl->args.internal_arg_pointer)
4657 i = INTVAL (XEXP (XEXP (x, 0), 1));
4658
4659 /* expand_call should ensure this. */
4660 gcc_assert (!arg->locate.offset.var
4661 && arg->locate.size.var == 0
4662 && CONST_INT_P (size_rtx));
4663
4664 if (arg->locate.offset.constant > i)
4665 {
4666 if (arg->locate.offset.constant < i + INTVAL (size_rtx))
4667 sibcall_failure = 1;
4668 }
4669 else if (arg->locate.offset.constant < i)
4670 {
4671 /* Use arg->locate.size.constant instead of size_rtx
4672 because we only care about the part of the argument
4673 on the stack. */
4674 if (i < (arg->locate.offset.constant
4675 + arg->locate.size.constant))
4676 sibcall_failure = 1;
4677 }
4678 else
4679 {
4680 /* Even though they appear to be at the same location,
4681 if part of the outgoing argument is in registers,
4682 they aren't really at the same location. Check for
4683 this by making sure that the incoming size is the
4684 same as the outgoing size. */
4685 if (arg->locate.size.constant != INTVAL (size_rtx))
4686 sibcall_failure = 1;
4687 }
4688 }
4689 }
4690
4691 emit_push_insn (arg->value, arg->mode, TREE_TYPE (pval), size_rtx,
4692 parm_align, partial, reg, excess, argblock,
4693 ARGS_SIZE_RTX (arg->locate.offset), reg_parm_stack_space,
4694 ARGS_SIZE_RTX (arg->locate.alignment_pad));
4695
4696 /* Unless this is a partially-in-register argument, the argument is now
4697 in the stack.
4698
4699 ??? Unlike the case above, in which we want the actual
4700 address of the data, so that we can load it directly into a
4701 register, here we want the address of the stack slot, so that
4702 it's properly aligned for word-by-word copying or something
4703 like that. It's not clear that this is always correct. */
4704 if (partial == 0)
4705 arg->value = arg->stack_slot;
4706 }
4707
4708 if (arg->reg && GET_CODE (arg->reg) == PARALLEL)
4709 {
4710 tree type = TREE_TYPE (arg->tree_value);
4711 arg->parallel_value
4712 = emit_group_load_into_temps (arg->reg, arg->value, type,
4713 int_size_in_bytes (type));
4714 }
4715
4716 /* Mark all slots this store used. */
4717 if (ACCUMULATE_OUTGOING_ARGS && !(flags & ECF_SIBCALL)
4718 && argblock && ! variable_size && arg->stack)
4719 for (i = lower_bound; i < upper_bound; i++)
4720 stack_usage_map[i] = 1;
4721
4722 /* Once we have pushed something, pops can't safely
4723 be deferred during the rest of the arguments. */
4724 NO_DEFER_POP;
4725
4726 /* Free any temporary slots made in processing this argument. */
4727 pop_temp_slots ();
4728
4729 return sibcall_failure;
4730 }
4731
4732 /* Nonzero if we do not know how to pass TYPE solely in registers. */
4733
4734 bool
4735 must_pass_in_stack_var_size (enum machine_mode mode ATTRIBUTE_UNUSED,
4736 const_tree type)
4737 {
4738 if (!type)
4739 return false;
4740
4741 /* If the type has variable size... */
4742 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4743 return true;
4744
4745 /* If the type is marked as addressable (it is required
4746 to be constructed into the stack)... */
4747 if (TREE_ADDRESSABLE (type))
4748 return true;
4749
4750 return false;
4751 }
4752
4753 /* Another version of the TARGET_MUST_PASS_IN_STACK hook. This one
4754 takes trailing padding of a structure into account. */
4755 /* ??? Should be able to merge these two by examining BLOCK_REG_PADDING. */
4756
4757 bool
4758 must_pass_in_stack_var_size_or_pad (enum machine_mode mode, const_tree type)
4759 {
4760 if (!type)
4761 return false;
4762
4763 /* If the type has variable size... */
4764 if (TREE_CODE (TYPE_SIZE (type)) != INTEGER_CST)
4765 return true;
4766
4767 /* If the type is marked as addressable (it is required
4768 to be constructed into the stack)... */
4769 if (TREE_ADDRESSABLE (type))
4770 return true;
4771
4772 /* If the padding and mode of the type is such that a copy into
4773 a register would put it into the wrong part of the register. */
4774 if (mode == BLKmode
4775 && int_size_in_bytes (type) % (PARM_BOUNDARY / BITS_PER_UNIT)
4776 && (FUNCTION_ARG_PADDING (mode, type)
4777 == (BYTES_BIG_ENDIAN ? upward : downward)))
4778 return true;
4779
4780 return false;
4781 }
This page took 0.25636 seconds and 5 git commands to generate.