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