* configure: Rebuilt.
[official-gcc.git] / gcc / integrate.c
blob07055f2abcba1ca354771d0b53da5b2d56baeef3
1 /* Procedure integration for GNU CC.
2 Copyright (C) 1988, 91, 93-98, 1999 Free Software Foundation, Inc.
3 Contributed by Michael Tiemann (tiemann@cygnus.com)
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
23 #include "config.h"
24 #include "system.h"
26 #include "rtl.h"
27 #include "tree.h"
28 #include "regs.h"
29 #include "flags.h"
30 #include "insn-config.h"
31 #include "insn-flags.h"
32 #include "expr.h"
33 #include "output.h"
34 #include "recog.h"
35 #include "integrate.h"
36 #include "real.h"
37 #include "except.h"
38 #include "function.h"
39 #include "toplev.h"
40 #include "intl.h"
42 #include "obstack.h"
43 #define obstack_chunk_alloc xmalloc
44 #define obstack_chunk_free free
46 extern struct obstack *function_maybepermanent_obstack;
48 /* Similar, but round to the next highest integer that meets the
49 alignment. */
50 #define CEIL_ROUND(VALUE,ALIGN) (((VALUE) + (ALIGN) - 1) & ~((ALIGN)- 1))
52 /* Default max number of insns a function can have and still be inline.
53 This is overridden on RISC machines. */
54 #ifndef INTEGRATE_THRESHOLD
55 /* Inlining small functions might save more space then not inlining at
56 all. Assume 1 instruction for the call and 1.5 insns per argument. */
57 #define INTEGRATE_THRESHOLD(DECL) \
58 (optimize_size \
59 ? (1 + (3 * list_length (DECL_ARGUMENTS (DECL))) / 2) \
60 : (8 * (8 + list_length (DECL_ARGUMENTS (DECL)))))
61 #endif
63 static rtx initialize_for_inline PROTO((tree, int, int, int, int));
64 static void finish_inline PROTO((tree, rtx));
65 static void adjust_copied_decl_tree PROTO((tree));
66 static tree copy_decl_list PROTO((tree));
67 static tree copy_decl_tree PROTO((tree));
68 static void copy_decl_rtls PROTO((tree));
69 static void save_constants PROTO((rtx *));
70 static void note_modified_parmregs PROTO((rtx, rtx));
71 static rtx copy_for_inline PROTO((rtx));
72 static void integrate_parm_decls PROTO((tree, struct inline_remap *,
73 rtvec));
74 static void integrate_decl_tree PROTO((tree, int,
75 struct inline_remap *));
76 static void save_constants_in_decl_trees PROTO ((tree));
77 static void subst_constants PROTO((rtx *, rtx,
78 struct inline_remap *));
79 static void restore_constants PROTO((rtx *));
80 static void set_block_origin_self PROTO((tree));
81 static void set_decl_origin_self PROTO((tree));
82 static void set_block_abstract_flags PROTO((tree, int));
83 static void process_reg_param PROTO((struct inline_remap *, rtx,
84 rtx));
87 void set_decl_abstract_flags PROTO((tree, int));
88 static tree copy_and_set_decl_abstract_origin PROTO((tree));
90 /* Returns the Ith entry in the label_map contained in MAP. If the
91 Ith entry has not yet been set, return a fresh label. This function
92 performs a lazy initialization of label_map, thereby avoiding huge memory
93 explosions when the label_map gets very large. */
95 rtx
96 get_label_from_map (map, i)
97 struct inline_remap *map;
98 int i;
100 rtx x = map->label_map[i];
102 if (x == NULL_RTX)
103 x = map->label_map[i] = gen_label_rtx();
105 return x;
108 /* Zero if the current function (whose FUNCTION_DECL is FNDECL)
109 is safe and reasonable to integrate into other functions.
110 Nonzero means value is a warning msgid with a single %s
111 for the function's name. */
113 const char *
114 function_cannot_inline_p (fndecl)
115 register tree fndecl;
117 register rtx insn;
118 tree last = tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl)));
119 int max_insns = INTEGRATE_THRESHOLD (fndecl);
120 register int ninsns = 0;
121 register tree parms;
122 rtx result;
124 /* No inlines with varargs. */
125 if ((last && TREE_VALUE (last) != void_type_node)
126 || current_function_varargs)
127 return N_("varargs function cannot be inline");
129 if (current_function_calls_alloca)
130 return N_("function using alloca cannot be inline");
132 if (current_function_contains_functions)
133 return N_("function with nested functions cannot be inline");
135 if (current_function_cannot_inline)
136 return current_function_cannot_inline;
138 /* If its not even close, don't even look. */
139 if (!DECL_INLINE (fndecl) && get_max_uid () > 3 * max_insns)
140 return N_("function too large to be inline");
142 #if 0
143 /* Don't inline functions which do not specify a function prototype and
144 have BLKmode argument or take the address of a parameter. */
145 for (parms = DECL_ARGUMENTS (fndecl); parms; parms = TREE_CHAIN (parms))
147 if (TYPE_MODE (TREE_TYPE (parms)) == BLKmode)
148 TREE_ADDRESSABLE (parms) = 1;
149 if (last == NULL_TREE && TREE_ADDRESSABLE (parms))
150 return N_("no prototype, and parameter address used; cannot be inline");
152 #endif
154 /* We can't inline functions that return structures
155 the old-fashioned PCC way, copying into a static block. */
156 if (current_function_returns_pcc_struct)
157 return N_("inline functions not supported for this return value type");
159 /* We can't inline functions that return structures of varying size. */
160 if (int_size_in_bytes (TREE_TYPE (TREE_TYPE (fndecl))) < 0)
161 return N_("function with varying-size return value cannot be inline");
163 /* Cannot inline a function with a varying size argument or one that
164 receives a transparent union. */
165 for (parms = DECL_ARGUMENTS (fndecl); parms; parms = TREE_CHAIN (parms))
167 if (int_size_in_bytes (TREE_TYPE (parms)) < 0)
168 return N_("function with varying-size parameter cannot be inline");
169 else if (TYPE_TRANSPARENT_UNION (TREE_TYPE (parms)))
170 return N_("function with transparent unit parameter cannot be inline");
173 if (!DECL_INLINE (fndecl) && get_max_uid () > max_insns)
175 for (ninsns = 0, insn = get_first_nonparm_insn ();
176 insn && ninsns < max_insns;
177 insn = NEXT_INSN (insn))
178 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
179 ninsns++;
181 if (ninsns >= max_insns)
182 return N_("function too large to be inline");
185 /* We will not inline a function which uses computed goto. The addresses of
186 its local labels, which may be tucked into global storage, are of course
187 not constant across instantiations, which causes unexpected behaviour. */
188 if (current_function_has_computed_jump)
189 return N_("function with computed jump cannot inline");
191 /* We cannot inline a nested function that jumps to a nonlocal label. */
192 if (current_function_has_nonlocal_goto)
193 return N_("function with nonlocal goto cannot be inline");
195 /* This is a hack, until the inliner is taught about eh regions at
196 the start of the function. */
197 for (insn = get_insns ();
198 insn
199 && ! (GET_CODE (insn) == NOTE
200 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_BEG);
201 insn = NEXT_INSN (insn))
203 if (insn && GET_CODE (insn) == NOTE
204 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_BEG)
205 return N_("function with complex parameters cannot be inline");
208 /* We can't inline functions that return a PARALLEL rtx. */
209 result = DECL_RTL (DECL_RESULT (fndecl));
210 if (result && GET_CODE (result) == PARALLEL)
211 return N_("inline functions not supported for this return value type");
213 return 0;
216 /* Variables used within save_for_inline. */
218 /* Mapping from old pseudo-register to new pseudo-registers.
219 The first element of this map is reg_map[FIRST_PSEUDO_REGISTER].
220 It is allocated in `save_for_inline' and `expand_inline_function',
221 and deallocated on exit from each of those routines. */
222 static rtx *reg_map;
224 /* Mapping from old code-labels to new code-labels.
225 The first element of this map is label_map[min_labelno].
226 It is allocated in `save_for_inline' and `expand_inline_function',
227 and deallocated on exit from each of those routines. */
228 static rtx *label_map;
230 /* Mapping from old insn uid's to copied insns.
231 It is allocated in `save_for_inline' and `expand_inline_function',
232 and deallocated on exit from each of those routines. */
233 static rtx *insn_map;
235 /* Map pseudo reg number into the PARM_DECL for the parm living in the reg.
236 Zero for a reg that isn't a parm's home.
237 Only reg numbers less than max_parm_reg are mapped here. */
238 static tree *parmdecl_map;
240 /* Keep track of first pseudo-register beyond those that are parms. */
241 extern int max_parm_reg;
242 extern rtx *parm_reg_stack_loc;
244 /* When an insn is being copied by copy_for_inline,
245 this is nonzero if we have copied an ASM_OPERANDS.
246 In that case, it is the original input-operand vector. */
247 static rtvec orig_asm_operands_vector;
249 /* When an insn is being copied by copy_for_inline,
250 this is nonzero if we have copied an ASM_OPERANDS.
251 In that case, it is the copied input-operand vector. */
252 static rtvec copy_asm_operands_vector;
254 /* Likewise, this is the copied constraints vector. */
255 static rtvec copy_asm_constraints_vector;
257 /* In save_for_inline, nonzero if past the parm-initialization insns. */
258 static int in_nonparm_insns;
260 /* subroutines passed to duplicate_eh_handlers to map exception labels */
262 static rtx
263 save_for_inline_eh_labelmap (label)
264 rtx label;
266 int index = CODE_LABEL_NUMBER (label);
267 return label_map[index];
270 /* Subroutine for `save_for_inline{copying,nocopy}'. Performs initialization
271 needed to save FNDECL's insns and info for future inline expansion. */
273 static rtx
274 initialize_for_inline (fndecl, min_labelno, max_labelno, max_reg, copy)
275 tree fndecl;
276 int min_labelno;
277 int max_labelno;
278 int max_reg;
279 int copy;
281 int function_flags, i;
282 rtvec arg_vector;
283 tree parms;
285 /* Compute the values of any flags we must restore when inlining this. */
287 function_flags
288 = (current_function_calls_alloca * FUNCTION_FLAGS_CALLS_ALLOCA
289 + current_function_calls_setjmp * FUNCTION_FLAGS_CALLS_SETJMP
290 + current_function_calls_longjmp * FUNCTION_FLAGS_CALLS_LONGJMP
291 + current_function_returns_struct * FUNCTION_FLAGS_RETURNS_STRUCT
292 + (current_function_returns_pcc_struct
293 * FUNCTION_FLAGS_RETURNS_PCC_STRUCT)
294 + current_function_needs_context * FUNCTION_FLAGS_NEEDS_CONTEXT
295 + (current_function_has_nonlocal_label
296 * FUNCTION_FLAGS_HAS_NONLOCAL_LABEL)
297 + current_function_returns_pointer * FUNCTION_FLAGS_RETURNS_POINTER
298 + current_function_uses_const_pool * FUNCTION_FLAGS_USES_CONST_POOL
299 + (current_function_uses_pic_offset_table
300 * FUNCTION_FLAGS_USES_PIC_OFFSET_TABLE)
301 + current_function_has_computed_jump * FUNCTION_FLAGS_HAS_COMPUTED_JUMP);
303 /* Clear out PARMDECL_MAP. It was allocated in the caller's frame. */
304 bzero ((char *) parmdecl_map, max_parm_reg * sizeof (tree));
305 arg_vector = rtvec_alloc (list_length (DECL_ARGUMENTS (fndecl)));
307 for (parms = DECL_ARGUMENTS (fndecl), i = 0;
308 parms;
309 parms = TREE_CHAIN (parms), i++)
311 rtx p = DECL_RTL (parms);
312 int copied_incoming = 0;
314 /* If we have (mem (addressof (mem ...))), use the inner MEM since
315 otherwise the copy_rtx call below will not unshare the MEM since
316 it shares ADDRESSOF. */
317 if (GET_CODE (p) == MEM && GET_CODE (XEXP (p, 0)) == ADDRESSOF
318 && GET_CODE (XEXP (XEXP (p, 0), 0)) == MEM)
319 p = XEXP (XEXP (p, 0), 0);
321 if (GET_CODE (p) == MEM && copy)
323 /* Copy the rtl so that modifications of the addresses
324 later in compilation won't affect this arg_vector.
325 Virtual register instantiation can screw the address
326 of the rtl. */
327 rtx new = copy_rtx (p);
329 /* Don't leave the old copy anywhere in this decl. */
330 if (DECL_RTL (parms) == DECL_INCOMING_RTL (parms)
331 || (GET_CODE (DECL_RTL (parms)) == MEM
332 && GET_CODE (DECL_INCOMING_RTL (parms)) == MEM
333 && (XEXP (DECL_RTL (parms), 0)
334 == XEXP (DECL_INCOMING_RTL (parms), 0))))
335 DECL_INCOMING_RTL (parms) = new, copied_incoming = 1;
337 DECL_RTL (parms) = new;
340 RTVEC_ELT (arg_vector, i) = p;
342 if (GET_CODE (p) == REG)
343 parmdecl_map[REGNO (p)] = parms;
344 else if (GET_CODE (p) == CONCAT)
346 rtx preal = gen_realpart (GET_MODE (XEXP (p, 0)), p);
347 rtx pimag = gen_imagpart (GET_MODE (preal), p);
349 if (GET_CODE (preal) == REG)
350 parmdecl_map[REGNO (preal)] = parms;
351 if (GET_CODE (pimag) == REG)
352 parmdecl_map[REGNO (pimag)] = parms;
355 /* This flag is cleared later
356 if the function ever modifies the value of the parm. */
357 TREE_READONLY (parms) = 1;
359 /* Copy DECL_INCOMING_RTL if not done already. This can
360 happen if DECL_RTL is a reg. */
361 if (copy && ! copied_incoming)
363 p = DECL_INCOMING_RTL (parms);
365 /* If we have (mem (addressof (mem ...))), use the inner MEM since
366 otherwise the copy_rtx call below will not unshare the MEM since
367 it shares ADDRESSOF. */
368 if (GET_CODE (p) == MEM && GET_CODE (XEXP (p, 0)) == ADDRESSOF
369 && GET_CODE (XEXP (XEXP (p, 0), 0)) == MEM)
370 p = XEXP (XEXP (p, 0), 0);
372 if (GET_CODE (p) == MEM)
373 DECL_INCOMING_RTL (parms) = copy_rtx (p);
377 /* Assume we start out in the insns that set up the parameters. */
378 in_nonparm_insns = 0;
380 /* The list of DECL_SAVED_INSNS, starts off with a header which
381 contains the following information:
383 the first insn of the function (not including the insns that copy
384 parameters into registers).
385 the first parameter insn of the function,
386 the first label used by that function,
387 the last label used by that function,
388 the highest register number used for parameters,
389 the total number of registers used,
390 the size of the incoming stack area for parameters,
391 the number of bytes popped on return,
392 the stack slot list,
393 the labels that are forced to exist,
394 some flags that are used to restore compiler globals,
395 the value of current_function_outgoing_args_size,
396 the original argument vector,
397 the original DECL_INITIAL,
398 and pointers to the table of pseudo regs, pointer flags, and alignment. */
400 return gen_inline_header_rtx (NULL_RTX, NULL_RTX, min_labelno, max_labelno,
401 max_parm_reg, max_reg,
402 current_function_args_size,
403 current_function_pops_args,
404 stack_slot_list, forced_labels, function_flags,
405 current_function_outgoing_args_size,
406 arg_vector, (rtx) DECL_INITIAL (fndecl),
407 (rtvec) regno_reg_rtx, regno_pointer_flag,
408 regno_pointer_align,
409 (rtvec) parm_reg_stack_loc);
412 /* Subroutine for `save_for_inline{copying,nocopy}'. Finishes up the
413 things that must be done to make FNDECL expandable as an inline function.
414 HEAD contains the chain of insns to which FNDECL will expand. */
416 static void
417 finish_inline (fndecl, head)
418 tree fndecl;
419 rtx head;
421 FIRST_FUNCTION_INSN (head) = get_first_nonparm_insn ();
422 FIRST_PARM_INSN (head) = get_insns ();
423 DECL_SAVED_INSNS (fndecl) = head;
424 DECL_FRAME_SIZE (fndecl) = get_frame_size ();
427 /* Adjust the BLOCK_END_NOTE pointers in a given copied DECL tree so that
428 they all point to the new (copied) rtxs. */
430 static void
431 adjust_copied_decl_tree (block)
432 register tree block;
434 register tree subblock;
435 register rtx original_end;
437 original_end = BLOCK_END_NOTE (block);
438 if (original_end)
440 BLOCK_END_NOTE (block) = (rtx) NOTE_SOURCE_FILE (original_end);
441 NOTE_SOURCE_FILE (original_end) = 0;
444 /* Process all subblocks. */
445 for (subblock = BLOCK_SUBBLOCKS (block);
446 subblock;
447 subblock = TREE_CHAIN (subblock))
448 adjust_copied_decl_tree (subblock);
451 /* Make the insns and PARM_DECLs of the current function permanent
452 and record other information in DECL_SAVED_INSNS to allow inlining
453 of this function in subsequent calls.
455 This function is called when we are going to immediately compile
456 the insns for FNDECL. The insns in maybepermanent_obstack cannot be
457 modified by the compilation process, so we copy all of them to
458 new storage and consider the new insns to be the insn chain to be
459 compiled. Our caller (rest_of_compilation) saves the original
460 DECL_INITIAL and DECL_ARGUMENTS; here we copy them. */
462 /* ??? The nonlocal_label list should be adjusted also. However, since
463 a function that contains a nested function never gets inlined currently,
464 the nonlocal_label list will always be empty, so we don't worry about
465 it for now. */
467 void
468 save_for_inline_copying (fndecl)
469 tree fndecl;
471 rtx first_insn, last_insn, insn;
472 rtx head, copy;
473 int max_labelno, min_labelno, i, len;
474 int max_reg;
475 int max_uid;
476 rtx first_nonparm_insn;
477 char *new, *new1;
478 rtx *new_parm_reg_stack_loc;
479 rtx *new2;
481 /* Make and emit a return-label if we have not already done so.
482 Do this before recording the bounds on label numbers. */
484 if (return_label == 0)
486 return_label = gen_label_rtx ();
487 emit_label (return_label);
490 /* Get some bounds on the labels and registers used. */
492 max_labelno = max_label_num ();
493 min_labelno = get_first_label_num ();
494 max_reg = max_reg_num ();
496 /* Set up PARMDECL_MAP which maps pseudo-reg number to its PARM_DECL.
497 Later we set TREE_READONLY to 0 if the parm is modified inside the fn.
498 Also set up ARG_VECTOR, which holds the unmodified DECL_RTX values
499 for the parms, prior to elimination of virtual registers.
500 These values are needed for substituting parms properly. */
502 parmdecl_map = (tree *) alloca (max_parm_reg * sizeof (tree));
504 head = initialize_for_inline (fndecl, min_labelno, max_labelno, max_reg, 1);
506 if (current_function_uses_const_pool)
508 /* Replace any constant pool references with the actual constant. We
509 will put the constants back in the copy made below. */
510 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
511 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
513 save_constants (&PATTERN (insn));
514 if (REG_NOTES (insn))
515 save_constants (&REG_NOTES (insn));
518 /* Also scan all decls, and replace any constant pool references with the
519 actual constant. */
520 save_constants_in_decl_trees (DECL_INITIAL (fndecl));
522 /* Clear out the constant pool so that we can recreate it with the
523 copied constants below. */
524 init_const_rtx_hash_table ();
525 clear_const_double_mem ();
528 max_uid = INSN_UID (head);
530 /* We have now allocated all that needs to be allocated permanently
531 on the rtx obstack. Set our high-water mark, so that we
532 can free the rest of this when the time comes. */
534 preserve_data ();
536 /* Copy the chain insns of this function.
537 Install the copied chain as the insns of this function,
538 for continued compilation;
539 the original chain is recorded as the DECL_SAVED_INSNS
540 for inlining future calls. */
542 /* If there are insns that copy parms from the stack into pseudo registers,
543 those insns are not copied. `expand_inline_function' must
544 emit the correct code to handle such things. */
546 insn = get_insns ();
547 if (GET_CODE (insn) != NOTE)
548 abort ();
549 first_insn = rtx_alloc (NOTE);
550 NOTE_SOURCE_FILE (first_insn) = NOTE_SOURCE_FILE (insn);
551 NOTE_LINE_NUMBER (first_insn) = NOTE_LINE_NUMBER (insn);
552 INSN_UID (first_insn) = INSN_UID (insn);
553 PREV_INSN (first_insn) = NULL;
554 NEXT_INSN (first_insn) = NULL;
555 last_insn = first_insn;
557 /* Each pseudo-reg in the old insn chain must have a unique rtx in the copy.
558 Make these new rtx's now, and install them in regno_reg_rtx, so they
559 will be the official pseudo-reg rtx's for the rest of compilation. */
561 reg_map = (rtx *) savealloc (regno_pointer_flag_length * sizeof (rtx));
563 len = sizeof (struct rtx_def) + (GET_RTX_LENGTH (REG) - 1) * sizeof (rtunion);
564 for (i = max_reg - 1; i > LAST_VIRTUAL_REGISTER; i--)
565 reg_map[i] = (rtx)obstack_copy (function_maybepermanent_obstack,
566 regno_reg_rtx[i], len);
568 regno_reg_rtx = reg_map;
570 /* Put copies of all the virtual register rtx into the new regno_reg_rtx. */
571 init_virtual_regs ();
573 /* Likewise each label rtx must have a unique rtx as its copy. */
575 /* We used to use alloca here, but the size of what it would try to
576 allocate would occasionally cause it to exceed the stack limit and
577 cause unpredictable core dumps. Some examples were > 2Mb in size. */
578 label_map = (rtx *) xmalloc ((max_labelno) * sizeof (rtx));
580 for (i = min_labelno; i < max_labelno; i++)
581 label_map[i] = gen_label_rtx ();
583 /* Likewise for parm_reg_stack_slot. */
584 new_parm_reg_stack_loc = (rtx *) savealloc (max_parm_reg * sizeof (rtx));
585 for (i = 0; i < max_parm_reg; i++)
586 new_parm_reg_stack_loc[i] = copy_for_inline (parm_reg_stack_loc[i]);
588 parm_reg_stack_loc = new_parm_reg_stack_loc;
590 /* Record the mapping of old insns to copied insns. */
592 insn_map = (rtx *) alloca (max_uid * sizeof (rtx));
593 bzero ((char *) insn_map, max_uid * sizeof (rtx));
595 /* Get the insn which signals the end of parameter setup code. */
596 first_nonparm_insn = get_first_nonparm_insn ();
598 /* Copy any entries in regno_reg_rtx or DECL_RTLs that reference MEM
599 (the former occurs when a variable has its address taken)
600 since these may be shared and can be changed by virtual
601 register instantiation. DECL_RTL values for our arguments
602 have already been copied by initialize_for_inline. */
603 for (i = LAST_VIRTUAL_REGISTER + 1; i < max_reg; i++)
604 if (GET_CODE (regno_reg_rtx[i]) == MEM)
605 XEXP (regno_reg_rtx[i], 0)
606 = copy_for_inline (XEXP (regno_reg_rtx[i], 0));
608 /* Copy the parm_reg_stack_loc array, and substitute for all of the rtx
609 contained in it. */
610 new2 = (rtx *) savealloc (max_parm_reg * sizeof (rtx));
611 bcopy ((char *) parm_reg_stack_loc, (char *) new2,
612 max_parm_reg * sizeof (rtx));
613 parm_reg_stack_loc = new2;
614 for (i = LAST_VIRTUAL_REGISTER + 1; i < max_parm_reg; ++i)
615 if (parm_reg_stack_loc[i])
616 parm_reg_stack_loc[i] = copy_for_inline (parm_reg_stack_loc[i]);
618 /* Copy the tree of subblocks of the function, and the decls in them.
619 We will use the copy for compiling this function, then restore the original
620 subblocks and decls for use when inlining this function.
622 Several parts of the compiler modify BLOCK trees. In particular,
623 instantiate_virtual_regs will instantiate any virtual regs
624 mentioned in the DECL_RTLs of the decls, and loop
625 unrolling will replicate any BLOCK trees inside an unrolled loop.
627 The modified subblocks or DECL_RTLs would be incorrect for the original rtl
628 which we will use for inlining. The rtl might even contain pseudoregs
629 whose space has been freed. */
631 DECL_INITIAL (fndecl) = copy_decl_tree (DECL_INITIAL (fndecl));
632 DECL_ARGUMENTS (fndecl) = copy_decl_list (DECL_ARGUMENTS (fndecl));
634 /* Now copy each DECL_RTL which is a MEM,
635 so it is safe to modify their addresses. */
636 copy_decl_rtls (DECL_INITIAL (fndecl));
638 /* The fndecl node acts as its own progenitor, so mark it as such. */
639 DECL_ABSTRACT_ORIGIN (fndecl) = fndecl;
641 /* Now copy the chain of insns. Do this twice. The first copy the insn
642 itself and its body. The second time copy of REG_NOTES. This is because
643 a REG_NOTE may have a forward pointer to another insn. */
645 for (insn = NEXT_INSN (insn); insn; insn = NEXT_INSN (insn))
647 orig_asm_operands_vector = 0;
649 if (insn == first_nonparm_insn)
650 in_nonparm_insns = 1;
652 switch (GET_CODE (insn))
654 case NOTE:
655 /* No need to keep these. */
656 if (NOTE_LINE_NUMBER (insn) == NOTE_INSN_DELETED)
657 continue;
659 copy = rtx_alloc (NOTE);
660 NOTE_LINE_NUMBER (copy) = NOTE_LINE_NUMBER (insn);
661 if (NOTE_LINE_NUMBER (insn) != NOTE_INSN_BLOCK_END)
662 NOTE_SOURCE_FILE (copy) = NOTE_SOURCE_FILE (insn);
663 else
665 NOTE_SOURCE_FILE (insn) = (char *) copy;
666 NOTE_SOURCE_FILE (copy) = 0;
668 if (NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_BEG
669 || NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_END)
671 int new_region = CODE_LABEL_NUMBER
672 (label_map[NOTE_BLOCK_NUMBER (copy)]);
674 /* we have to duplicate the handlers for the original */
675 if (NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_BEG)
676 duplicate_eh_handlers (NOTE_BLOCK_NUMBER (copy), new_region,
677 save_for_inline_eh_labelmap);
679 /* We have to forward these both to match the new exception
680 region. */
681 NOTE_BLOCK_NUMBER (copy) = new_region;
684 RTX_INTEGRATED_P (copy) = RTX_INTEGRATED_P (insn);
685 break;
687 case INSN:
688 case JUMP_INSN:
689 case CALL_INSN:
690 copy = rtx_alloc (GET_CODE (insn));
692 if (GET_CODE (insn) == CALL_INSN)
693 CALL_INSN_FUNCTION_USAGE (copy)
694 = copy_for_inline (CALL_INSN_FUNCTION_USAGE (insn));
696 PATTERN (copy) = copy_for_inline (PATTERN (insn));
697 INSN_CODE (copy) = -1;
698 LOG_LINKS (copy) = NULL_RTX;
699 RTX_INTEGRATED_P (copy) = RTX_INTEGRATED_P (insn);
700 break;
702 case CODE_LABEL:
703 copy = label_map[CODE_LABEL_NUMBER (insn)];
704 LABEL_NAME (copy) = LABEL_NAME (insn);
705 break;
707 case BARRIER:
708 copy = rtx_alloc (BARRIER);
709 break;
711 default:
712 abort ();
714 INSN_UID (copy) = INSN_UID (insn);
715 insn_map[INSN_UID (insn)] = copy;
716 NEXT_INSN (last_insn) = copy;
717 PREV_INSN (copy) = last_insn;
718 last_insn = copy;
721 adjust_copied_decl_tree (DECL_INITIAL (fndecl));
723 /* Now copy the REG_NOTES. */
724 for (insn = NEXT_INSN (get_insns ()); insn; insn = NEXT_INSN (insn))
725 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
726 && insn_map[INSN_UID(insn)])
727 REG_NOTES (insn_map[INSN_UID (insn)])
728 = copy_for_inline (REG_NOTES (insn));
730 NEXT_INSN (last_insn) = NULL;
732 finish_inline (fndecl, head);
734 /* Make new versions of the register tables. */
735 new = (char *) savealloc (regno_pointer_flag_length);
736 bcopy (regno_pointer_flag, new, regno_pointer_flag_length);
737 new1 = (char *) savealloc (regno_pointer_flag_length);
738 bcopy (regno_pointer_align, new1, regno_pointer_flag_length);
740 regno_pointer_flag = new;
741 regno_pointer_align = new1;
743 set_new_first_and_last_insn (first_insn, last_insn);
745 if (label_map)
746 free (label_map);
749 /* Copy NODE (as with copy_node). NODE must be a DECL. Set the
750 DECL_ABSTRACT_ORIGIN for the new accordinly. */
752 static tree
753 copy_and_set_decl_abstract_origin (node)
754 tree node;
756 tree copy = copy_node (node);
757 if (DECL_ABSTRACT_ORIGIN (copy) != NULL_TREE)
758 /* That means that NODE already had a DECL_ABSTRACT_ORIGIN. (This
759 situation occurs if we inline a function which itself made
760 calls to inline functions.) Since DECL_ABSTRACT_ORIGIN is the
761 most distant ancestor, we don't have to do anything here. */
763 else
764 /* The most distant ancestor must be NODE. */
765 DECL_ABSTRACT_ORIGIN (copy) = node;
767 return copy;
770 /* Return a copy of a chain of nodes, chained through the TREE_CHAIN field.
771 For example, this can copy a list made of TREE_LIST nodes. While copying,
772 set DECL_ABSTRACT_ORIGIN appropriately. */
774 static tree
775 copy_decl_list (list)
776 tree list;
778 tree head;
779 register tree prev, next;
781 if (list == 0)
782 return 0;
784 head = prev = copy_and_set_decl_abstract_origin (list);
785 next = TREE_CHAIN (list);
786 while (next)
788 register tree copy;
790 copy = copy_and_set_decl_abstract_origin (next);
791 TREE_CHAIN (prev) = copy;
792 prev = copy;
793 next = TREE_CHAIN (next);
795 return head;
798 /* Make a copy of the entire tree of blocks BLOCK, and return it. */
800 static tree
801 copy_decl_tree (block)
802 tree block;
804 tree t, vars, subblocks;
806 vars = copy_decl_list (BLOCK_VARS (block));
807 subblocks = 0;
809 /* Process all subblocks. */
810 for (t = BLOCK_SUBBLOCKS (block); t; t = TREE_CHAIN (t))
812 tree copy = copy_decl_tree (t);
813 TREE_CHAIN (copy) = subblocks;
814 subblocks = copy;
817 t = copy_node (block);
818 BLOCK_VARS (t) = vars;
819 BLOCK_SUBBLOCKS (t) = nreverse (subblocks);
820 /* If the BLOCK being cloned is already marked as having been instantiated
821 from something else, then leave that `origin' marking alone. Otherwise,
822 mark the clone as having originated from the BLOCK we are cloning. */
823 if (BLOCK_ABSTRACT_ORIGIN (t) == NULL_TREE)
824 BLOCK_ABSTRACT_ORIGIN (t) = block;
825 return t;
828 /* Copy DECL_RTLs in all decls in the given BLOCK node. */
830 static void
831 copy_decl_rtls (block)
832 tree block;
834 tree t;
836 for (t = BLOCK_VARS (block); t; t = TREE_CHAIN (t))
837 if (DECL_RTL (t) && GET_CODE (DECL_RTL (t)) == MEM)
838 DECL_RTL (t) = copy_for_inline (DECL_RTL (t));
840 /* Process all subblocks. */
841 for (t = BLOCK_SUBBLOCKS (block); t; t = TREE_CHAIN (t))
842 copy_decl_rtls (t);
845 /* Make the insns and PARM_DECLs of the current function permanent
846 and record other information in DECL_SAVED_INSNS to allow inlining
847 of this function in subsequent calls.
849 This routine need not copy any insns because we are not going
850 to immediately compile the insns in the insn chain. There
851 are two cases when we would compile the insns for FNDECL:
852 (1) when FNDECL is expanded inline, and (2) when FNDECL needs to
853 be output at the end of other compilation, because somebody took
854 its address. In the first case, the insns of FNDECL are copied
855 as it is expanded inline, so FNDECL's saved insns are not
856 modified. In the second case, FNDECL is used for the last time,
857 so modifying the rtl is not a problem.
859 We don't have to worry about FNDECL being inline expanded by
860 other functions which are written at the end of compilation
861 because flag_no_inline is turned on when we begin writing
862 functions at the end of compilation. */
864 void
865 save_for_inline_nocopy (fndecl)
866 tree fndecl;
868 rtx insn;
869 rtx head;
870 rtx first_nonparm_insn;
872 /* Set up PARMDECL_MAP which maps pseudo-reg number to its PARM_DECL.
873 Later we set TREE_READONLY to 0 if the parm is modified inside the fn.
874 Also set up ARG_VECTOR, which holds the unmodified DECL_RTX values
875 for the parms, prior to elimination of virtual registers.
876 These values are needed for substituting parms properly. */
878 parmdecl_map = (tree *) alloca (max_parm_reg * sizeof (tree));
880 /* Make and emit a return-label if we have not already done so. */
882 if (return_label == 0)
884 return_label = gen_label_rtx ();
885 emit_label (return_label);
888 head = initialize_for_inline (fndecl, get_first_label_num (),
889 max_label_num (), max_reg_num (), 0);
891 /* If there are insns that copy parms from the stack into pseudo registers,
892 those insns are not copied. `expand_inline_function' must
893 emit the correct code to handle such things. */
895 insn = get_insns ();
896 if (GET_CODE (insn) != NOTE)
897 abort ();
899 /* Get the insn which signals the end of parameter setup code. */
900 first_nonparm_insn = get_first_nonparm_insn ();
902 /* Now just scan the chain of insns to see what happens to our
903 PARM_DECLs. If a PARM_DECL is used but never modified, we
904 can substitute its rtl directly when expanding inline (and
905 perform constant folding when its incoming value is constant).
906 Otherwise, we have to copy its value into a new register and track
907 the new register's life. */
909 for (insn = NEXT_INSN (insn); insn; insn = NEXT_INSN (insn))
911 if (insn == first_nonparm_insn)
912 in_nonparm_insns = 1;
914 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
916 if (current_function_uses_const_pool)
918 /* Replace any constant pool references with the actual constant.
919 We will put the constant back if we need to write the
920 function out after all. */
921 save_constants (&PATTERN (insn));
922 if (REG_NOTES (insn))
923 save_constants (&REG_NOTES (insn));
926 /* Record what interesting things happen to our parameters. */
927 note_stores (PATTERN (insn), note_modified_parmregs);
931 /* Also scan all decls, and replace any constant pool references with the
932 actual constant. */
933 save_constants_in_decl_trees (DECL_INITIAL (fndecl));
935 /* We have now allocated all that needs to be allocated permanently
936 on the rtx obstack. Set our high-water mark, so that we
937 can free the rest of this when the time comes. */
939 preserve_data ();
941 finish_inline (fndecl, head);
944 /* Given PX, a pointer into an insn, search for references to the constant
945 pool. Replace each with a CONST that has the mode of the original
946 constant, contains the constant, and has RTX_INTEGRATED_P set.
947 Similarly, constant pool addresses not enclosed in a MEM are replaced
948 with an ADDRESS and CONST rtx which also gives the constant, its
949 mode, the mode of the address, and has RTX_INTEGRATED_P set. */
951 static void
952 save_constants (px)
953 rtx *px;
955 rtx x;
956 int i, j;
958 again:
959 x = *px;
961 /* If this is a CONST_DOUBLE, don't try to fix things up in
962 CONST_DOUBLE_MEM, because this is an infinite recursion. */
963 if (GET_CODE (x) == CONST_DOUBLE)
964 return;
965 else if (GET_CODE (x) == MEM && GET_CODE (XEXP (x, 0)) == SYMBOL_REF
966 && CONSTANT_POOL_ADDRESS_P (XEXP (x,0)))
968 enum machine_mode const_mode = get_pool_mode (XEXP (x, 0));
969 rtx new = gen_rtx_CONST (const_mode, get_pool_constant (XEXP (x, 0)));
970 RTX_INTEGRATED_P (new) = 1;
972 /* If the MEM was in a different mode than the constant (perhaps we
973 were only looking at the low-order part), surround it with a
974 SUBREG so we can save both modes. */
976 if (GET_MODE (x) != const_mode)
978 new = gen_rtx_SUBREG (GET_MODE (x), new, 0);
979 RTX_INTEGRATED_P (new) = 1;
982 *px = new;
983 save_constants (&XEXP (*px, 0));
985 else if (GET_CODE (x) == SYMBOL_REF
986 && CONSTANT_POOL_ADDRESS_P (x))
988 *px = gen_rtx_ADDRESS (GET_MODE (x),
989 gen_rtx_CONST (get_pool_mode (x),
990 get_pool_constant (x)));
991 save_constants (&XEXP (*px, 0));
992 RTX_INTEGRATED_P (*px) = 1;
995 else
997 char *fmt = GET_RTX_FORMAT (GET_CODE (x));
998 int len = GET_RTX_LENGTH (GET_CODE (x));
1000 for (i = len-1; i >= 0; i--)
1002 switch (fmt[i])
1004 case 'E':
1005 for (j = 0; j < XVECLEN (x, i); j++)
1006 save_constants (&XVECEXP (x, i, j));
1007 break;
1009 case 'e':
1010 if (XEXP (x, i) == 0)
1011 continue;
1012 if (i == 0)
1014 /* Hack tail-recursion here. */
1015 px = &XEXP (x, 0);
1016 goto again;
1018 save_constants (&XEXP (x, i));
1019 break;
1025 /* Note whether a parameter is modified or not. */
1027 static void
1028 note_modified_parmregs (reg, x)
1029 rtx reg;
1030 rtx x ATTRIBUTE_UNUSED;
1032 if (GET_CODE (reg) == REG && in_nonparm_insns
1033 && REGNO (reg) < max_parm_reg
1034 && REGNO (reg) >= FIRST_PSEUDO_REGISTER
1035 && parmdecl_map[REGNO (reg)] != 0)
1036 TREE_READONLY (parmdecl_map[REGNO (reg)]) = 0;
1039 /* Copy the rtx ORIG recursively, replacing pseudo-regs and labels
1040 according to `reg_map' and `label_map'. The original rtl insns
1041 will be saved for inlining; this is used to make a copy
1042 which is used to finish compiling the inline function itself.
1044 If we find a "saved" constant pool entry, one which was replaced with
1045 the value of the constant, convert it back to a constant pool entry.
1046 Since the pool wasn't touched, this should simply restore the old
1047 address.
1049 All other kinds of rtx are copied except those that can never be
1050 changed during compilation. */
1052 static rtx
1053 copy_for_inline (orig)
1054 rtx orig;
1056 register rtx x = orig;
1057 register rtx new;
1058 register int i;
1059 register enum rtx_code code;
1060 register char *format_ptr;
1062 if (x == 0)
1063 return x;
1065 code = GET_CODE (x);
1067 /* These types may be freely shared. */
1069 switch (code)
1071 case QUEUED:
1072 case CONST_INT:
1073 case PC:
1074 case CC0:
1075 return x;
1077 case SYMBOL_REF:
1078 if (! SYMBOL_REF_NEED_ADJUST (x))
1079 return x;
1080 return rethrow_symbol_map (x, save_for_inline_eh_labelmap);
1082 case CONST_DOUBLE:
1083 /* We have to make a new CONST_DOUBLE to ensure that we account for
1084 it correctly. Using the old CONST_DOUBLE_MEM data is wrong. */
1085 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
1087 REAL_VALUE_TYPE d;
1089 REAL_VALUE_FROM_CONST_DOUBLE (d, x);
1090 return CONST_DOUBLE_FROM_REAL_VALUE (d, GET_MODE (x));
1092 else
1093 return immed_double_const (CONST_DOUBLE_LOW (x), CONST_DOUBLE_HIGH (x),
1094 VOIDmode);
1096 case CONST:
1097 /* Get constant pool entry for constant in the pool. */
1098 if (RTX_INTEGRATED_P (x))
1099 return validize_mem (force_const_mem (GET_MODE (x),
1100 copy_for_inline (XEXP (x, 0))));
1101 break;
1103 case SUBREG:
1104 /* Get constant pool entry, but access in different mode. */
1105 if (RTX_INTEGRATED_P (x))
1107 new = force_const_mem (GET_MODE (SUBREG_REG (x)),
1108 copy_for_inline (XEXP (SUBREG_REG (x), 0)));
1110 PUT_MODE (new, GET_MODE (x));
1111 return validize_mem (new);
1113 break;
1115 case ADDRESS:
1116 /* If not special for constant pool error. Else get constant pool
1117 address. */
1118 if (! RTX_INTEGRATED_P (x))
1119 abort ();
1121 new = force_const_mem (GET_MODE (XEXP (x, 0)),
1122 copy_for_inline (XEXP (XEXP (x, 0), 0)));
1123 new = XEXP (new, 0);
1125 #ifdef POINTERS_EXTEND_UNSIGNED
1126 if (GET_MODE (new) != GET_MODE (x))
1127 new = convert_memory_address (GET_MODE (x), new);
1128 #endif
1130 return new;
1132 case ASM_OPERANDS:
1133 /* If a single asm insn contains multiple output operands
1134 then it contains multiple ASM_OPERANDS rtx's that share operand 3.
1135 We must make sure that the copied insn continues to share it. */
1136 if (orig_asm_operands_vector == XVEC (orig, 3))
1138 x = rtx_alloc (ASM_OPERANDS);
1139 x->volatil = orig->volatil;
1140 XSTR (x, 0) = XSTR (orig, 0);
1141 XSTR (x, 1) = XSTR (orig, 1);
1142 XINT (x, 2) = XINT (orig, 2);
1143 XVEC (x, 3) = copy_asm_operands_vector;
1144 XVEC (x, 4) = copy_asm_constraints_vector;
1145 XSTR (x, 5) = XSTR (orig, 5);
1146 XINT (x, 6) = XINT (orig, 6);
1147 return x;
1149 break;
1151 case MEM:
1152 /* A MEM is usually allowed to be shared if its address is constant
1153 or is a constant plus one of the special registers.
1155 We do not allow sharing of addresses that are either a special
1156 register or the sum of a constant and a special register because
1157 it is possible for unshare_all_rtl to copy the address, into memory
1158 that won't be saved. Although the MEM can safely be shared, and
1159 won't be copied there, the address itself cannot be shared, and may
1160 need to be copied.
1162 There are also two exceptions with constants: The first is if the
1163 constant is a LABEL_REF or the sum of the LABEL_REF
1164 and an integer. This case can happen if we have an inline
1165 function that supplies a constant operand to the call of another
1166 inline function that uses it in a switch statement. In this case,
1167 we will be replacing the LABEL_REF, so we have to replace this MEM
1168 as well.
1170 The second case is if we have a (const (plus (address ..) ...)).
1171 In that case we need to put back the address of the constant pool
1172 entry. */
1174 if (CONSTANT_ADDRESS_P (XEXP (x, 0))
1175 && GET_CODE (XEXP (x, 0)) != LABEL_REF
1176 && ! (GET_CODE (XEXP (x, 0)) == CONST
1177 && (GET_CODE (XEXP (XEXP (x, 0), 0)) == PLUS
1178 && ((GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 0))
1179 == LABEL_REF)
1180 || (GET_CODE (XEXP (XEXP (XEXP (x, 0), 0), 0))
1181 == ADDRESS)))))
1182 return x;
1183 break;
1185 case LABEL_REF:
1186 /* If this is a non-local label, just make a new LABEL_REF.
1187 Otherwise, use the new label as well. */
1188 x = gen_rtx_LABEL_REF (GET_MODE (orig),
1189 LABEL_REF_NONLOCAL_P (orig) ? XEXP (orig, 0)
1190 : label_map[CODE_LABEL_NUMBER (XEXP (orig, 0))]);
1191 LABEL_REF_NONLOCAL_P (x) = LABEL_REF_NONLOCAL_P (orig);
1192 LABEL_OUTSIDE_LOOP_P (x) = LABEL_OUTSIDE_LOOP_P (orig);
1193 return x;
1195 case REG:
1196 if (REGNO (x) > LAST_VIRTUAL_REGISTER)
1197 return reg_map [REGNO (x)];
1198 else
1199 return x;
1201 case SET:
1202 /* If a parm that gets modified lives in a pseudo-reg,
1203 clear its TREE_READONLY to prevent certain optimizations. */
1205 rtx dest = SET_DEST (x);
1207 while (GET_CODE (dest) == STRICT_LOW_PART
1208 || GET_CODE (dest) == ZERO_EXTRACT
1209 || GET_CODE (dest) == SUBREG)
1210 dest = XEXP (dest, 0);
1212 if (GET_CODE (dest) == REG
1213 && REGNO (dest) < max_parm_reg
1214 && REGNO (dest) >= FIRST_PSEUDO_REGISTER
1215 && parmdecl_map[REGNO (dest)] != 0
1216 /* The insn to load an arg pseudo from a stack slot
1217 does not count as modifying it. */
1218 && in_nonparm_insns)
1219 TREE_READONLY (parmdecl_map[REGNO (dest)]) = 0;
1221 break;
1223 #if 0 /* This is a good idea, but here is the wrong place for it. */
1224 /* Arrange that CONST_INTs always appear as the second operand
1225 if they appear, and that `frame_pointer_rtx' or `arg_pointer_rtx'
1226 always appear as the first. */
1227 case PLUS:
1228 if (GET_CODE (XEXP (x, 0)) == CONST_INT
1229 || (XEXP (x, 1) == frame_pointer_rtx
1230 || (ARG_POINTER_REGNUM != FRAME_POINTER_REGNUM
1231 && XEXP (x, 1) == arg_pointer_rtx)))
1233 rtx t = XEXP (x, 0);
1234 XEXP (x, 0) = XEXP (x, 1);
1235 XEXP (x, 1) = t;
1237 break;
1238 #endif
1239 default:
1240 break;
1243 /* Replace this rtx with a copy of itself. */
1245 x = rtx_alloc (code);
1246 bcopy ((char *) orig, (char *) x,
1247 (sizeof (*x) - sizeof (x->fld)
1248 + sizeof (x->fld[0]) * GET_RTX_LENGTH (code)));
1250 /* Now scan the subexpressions recursively.
1251 We can store any replaced subexpressions directly into X
1252 since we know X is not shared! Any vectors in X
1253 must be copied if X was copied. */
1255 format_ptr = GET_RTX_FORMAT (code);
1257 for (i = 0; i < GET_RTX_LENGTH (code); i++)
1259 switch (*format_ptr++)
1261 case 'e':
1262 XEXP (x, i) = copy_for_inline (XEXP (x, i));
1263 break;
1265 case 'u':
1266 /* Change any references to old-insns to point to the
1267 corresponding copied insns. */
1268 XEXP (x, i) = insn_map[INSN_UID (XEXP (x, i))];
1269 break;
1271 case 'E':
1272 if (XVEC (x, i) != NULL && XVECLEN (x, i) != 0)
1274 register int j;
1276 XVEC (x, i) = gen_rtvec_vv (XVECLEN (x, i), XVEC (x, i)->elem);
1277 for (j = 0; j < XVECLEN (x, i); j++)
1278 XVECEXP (x, i, j)
1279 = copy_for_inline (XVECEXP (x, i, j));
1281 break;
1285 if (code == ASM_OPERANDS && orig_asm_operands_vector == 0)
1287 orig_asm_operands_vector = XVEC (orig, 3);
1288 copy_asm_operands_vector = XVEC (x, 3);
1289 copy_asm_constraints_vector = XVEC (x, 4);
1292 return x;
1295 /* Unfortunately, we need a global copy of const_equiv map for communication
1296 with a function called from note_stores. Be *very* careful that this
1297 is used properly in the presence of recursion. */
1299 varray_type global_const_equiv_varray;
1301 #define FIXED_BASE_PLUS_P(X) \
1302 (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == CONST_INT \
1303 && GET_CODE (XEXP (X, 0)) == REG \
1304 && REGNO (XEXP (X, 0)) >= FIRST_VIRTUAL_REGISTER \
1305 && REGNO (XEXP (X, 0)) <= LAST_VIRTUAL_REGISTER)
1307 /* Called to set up a mapping for the case where a parameter is in a
1308 register. If it is read-only and our argument is a constant, set up the
1309 constant equivalence.
1311 If LOC is REG_USERVAR_P, the usual case, COPY must also have that flag set
1312 if it is a register.
1314 Also, don't allow hard registers here; they might not be valid when
1315 substituted into insns. */
1316 static void
1317 process_reg_param (map, loc, copy)
1318 struct inline_remap *map;
1319 rtx loc, copy;
1321 if ((GET_CODE (copy) != REG && GET_CODE (copy) != SUBREG)
1322 || (GET_CODE (copy) == REG && REG_USERVAR_P (loc)
1323 && ! REG_USERVAR_P (copy))
1324 || (GET_CODE (copy) == REG
1325 && REGNO (copy) < FIRST_PSEUDO_REGISTER))
1327 rtx temp = copy_to_mode_reg (GET_MODE (loc), copy);
1328 REG_USERVAR_P (temp) = REG_USERVAR_P (loc);
1329 if (CONSTANT_P (copy) || FIXED_BASE_PLUS_P (copy))
1330 SET_CONST_EQUIV_DATA (map, temp, copy, CONST_AGE_PARM);
1331 copy = temp;
1333 map->reg_map[REGNO (loc)] = copy;
1336 /* Used by duplicate_eh_handlers to map labels for the exception table */
1337 static struct inline_remap *eif_eh_map;
1339 static rtx
1340 expand_inline_function_eh_labelmap (label)
1341 rtx label;
1343 int index = CODE_LABEL_NUMBER (label);
1344 return get_label_from_map (eif_eh_map, index);
1347 /* Integrate the procedure defined by FNDECL. Note that this function
1348 may wind up calling itself. Since the static variables are not
1349 reentrant, we do not assign them until after the possibility
1350 of recursion is eliminated.
1352 If IGNORE is nonzero, do not produce a value.
1353 Otherwise store the value in TARGET if it is nonzero and that is convenient.
1355 Value is:
1356 (rtx)-1 if we could not substitute the function
1357 0 if we substituted it and it does not produce a value
1358 else an rtx for where the value is stored. */
1361 expand_inline_function (fndecl, parms, target, ignore, type,
1362 structure_value_addr)
1363 tree fndecl, parms;
1364 rtx target;
1365 int ignore;
1366 tree type;
1367 rtx structure_value_addr;
1369 tree formal, actual, block;
1370 rtx header = DECL_SAVED_INSNS (fndecl);
1371 rtx insns = FIRST_FUNCTION_INSN (header);
1372 rtx parm_insns = FIRST_PARM_INSN (header);
1373 tree *arg_trees;
1374 rtx *arg_vals;
1375 rtx insn;
1376 int max_regno;
1377 register int i;
1378 int min_labelno = FIRST_LABELNO (header);
1379 int max_labelno = LAST_LABELNO (header);
1380 int nargs;
1381 rtx local_return_label = 0;
1382 rtx loc;
1383 rtx stack_save = 0;
1384 rtx temp;
1385 struct inline_remap *map = 0;
1386 #ifdef HAVE_cc0
1387 rtx cc0_insn = 0;
1388 #endif
1389 rtvec arg_vector = ORIGINAL_ARG_VECTOR (header);
1390 rtx static_chain_value = 0;
1392 /* The pointer used to track the true location of the memory used
1393 for MAP->LABEL_MAP. */
1394 rtx *real_label_map = 0;
1396 /* Allow for equivalences of the pseudos we make for virtual fp and ap. */
1397 max_regno = MAX_REGNUM (header) + 3;
1398 if (max_regno < FIRST_PSEUDO_REGISTER)
1399 abort ();
1401 nargs = list_length (DECL_ARGUMENTS (fndecl));
1403 /* Check that the parms type match and that sufficient arguments were
1404 passed. Since the appropriate conversions or default promotions have
1405 already been applied, the machine modes should match exactly. */
1407 for (formal = DECL_ARGUMENTS (fndecl), actual = parms;
1408 formal;
1409 formal = TREE_CHAIN (formal), actual = TREE_CHAIN (actual))
1411 tree arg;
1412 enum machine_mode mode;
1414 if (actual == 0)
1415 return (rtx) (HOST_WIDE_INT) -1;
1417 arg = TREE_VALUE (actual);
1418 mode = TYPE_MODE (DECL_ARG_TYPE (formal));
1420 if (mode != TYPE_MODE (TREE_TYPE (arg))
1421 /* If they are block mode, the types should match exactly.
1422 They don't match exactly if TREE_TYPE (FORMAL) == ERROR_MARK_NODE,
1423 which could happen if the parameter has incomplete type. */
1424 || (mode == BLKmode
1425 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg))
1426 != TYPE_MAIN_VARIANT (TREE_TYPE (formal)))))
1427 return (rtx) (HOST_WIDE_INT) -1;
1430 /* Extra arguments are valid, but will be ignored below, so we must
1431 evaluate them here for side-effects. */
1432 for (; actual; actual = TREE_CHAIN (actual))
1433 expand_expr (TREE_VALUE (actual), const0_rtx,
1434 TYPE_MODE (TREE_TYPE (TREE_VALUE (actual))), 0);
1436 /* Make a binding contour to keep inline cleanups called at
1437 outer function-scope level from looking like they are shadowing
1438 parameter declarations. */
1439 pushlevel (0);
1441 /* Expand the function arguments. Do this first so that any
1442 new registers get created before we allocate the maps. */
1444 arg_vals = (rtx *) alloca (nargs * sizeof (rtx));
1445 arg_trees = (tree *) alloca (nargs * sizeof (tree));
1447 for (formal = DECL_ARGUMENTS (fndecl), actual = parms, i = 0;
1448 formal;
1449 formal = TREE_CHAIN (formal), actual = TREE_CHAIN (actual), i++)
1451 /* Actual parameter, converted to the type of the argument within the
1452 function. */
1453 tree arg = convert (TREE_TYPE (formal), TREE_VALUE (actual));
1454 /* Mode of the variable used within the function. */
1455 enum machine_mode mode = TYPE_MODE (TREE_TYPE (formal));
1456 int invisiref = 0;
1458 arg_trees[i] = arg;
1459 loc = RTVEC_ELT (arg_vector, i);
1461 /* If this is an object passed by invisible reference, we copy the
1462 object into a stack slot and save its address. If this will go
1463 into memory, we do nothing now. Otherwise, we just expand the
1464 argument. */
1465 if (GET_CODE (loc) == MEM && GET_CODE (XEXP (loc, 0)) == REG
1466 && REGNO (XEXP (loc, 0)) > LAST_VIRTUAL_REGISTER)
1468 rtx stack_slot
1469 = assign_stack_temp (TYPE_MODE (TREE_TYPE (arg)),
1470 int_size_in_bytes (TREE_TYPE (arg)), 1);
1471 MEM_SET_IN_STRUCT_P (stack_slot,
1472 AGGREGATE_TYPE_P (TREE_TYPE (arg)));
1474 store_expr (arg, stack_slot, 0);
1476 arg_vals[i] = XEXP (stack_slot, 0);
1477 invisiref = 1;
1479 else if (GET_CODE (loc) != MEM)
1481 if (GET_MODE (loc) != TYPE_MODE (TREE_TYPE (arg)))
1482 /* The mode if LOC and ARG can differ if LOC was a variable
1483 that had its mode promoted via PROMOTED_MODE. */
1484 arg_vals[i] = convert_modes (GET_MODE (loc),
1485 TYPE_MODE (TREE_TYPE (arg)),
1486 expand_expr (arg, NULL_RTX, mode,
1487 EXPAND_SUM),
1488 TREE_UNSIGNED (TREE_TYPE (formal)));
1489 else
1490 arg_vals[i] = expand_expr (arg, NULL_RTX, mode, EXPAND_SUM);
1492 else
1493 arg_vals[i] = 0;
1495 if (arg_vals[i] != 0
1496 && (! TREE_READONLY (formal)
1497 /* If the parameter is not read-only, copy our argument through
1498 a register. Also, we cannot use ARG_VALS[I] if it overlaps
1499 TARGET in any way. In the inline function, they will likely
1500 be two different pseudos, and `safe_from_p' will make all
1501 sorts of smart assumptions about their not conflicting.
1502 But if ARG_VALS[I] overlaps TARGET, these assumptions are
1503 wrong, so put ARG_VALS[I] into a fresh register.
1504 Don't worry about invisible references, since their stack
1505 temps will never overlap the target. */
1506 || (target != 0
1507 && ! invisiref
1508 && (GET_CODE (arg_vals[i]) == REG
1509 || GET_CODE (arg_vals[i]) == SUBREG
1510 || GET_CODE (arg_vals[i]) == MEM)
1511 && reg_overlap_mentioned_p (arg_vals[i], target))
1512 /* ??? We must always copy a SUBREG into a REG, because it might
1513 get substituted into an address, and not all ports correctly
1514 handle SUBREGs in addresses. */
1515 || (GET_CODE (arg_vals[i]) == SUBREG)))
1516 arg_vals[i] = copy_to_mode_reg (GET_MODE (loc), arg_vals[i]);
1518 if (arg_vals[i] != 0 && GET_CODE (arg_vals[i]) == REG
1519 && POINTER_TYPE_P (TREE_TYPE (formal)))
1520 mark_reg_pointer (arg_vals[i],
1521 (TYPE_ALIGN (TREE_TYPE (TREE_TYPE (formal)))
1522 / BITS_PER_UNIT));
1525 /* Allocate the structures we use to remap things. */
1527 map = (struct inline_remap *) alloca (sizeof (struct inline_remap));
1528 map->fndecl = fndecl;
1530 map->reg_map = (rtx *) alloca (max_regno * sizeof (rtx));
1531 bzero ((char *) map->reg_map, max_regno * sizeof (rtx));
1533 /* We used to use alloca here, but the size of what it would try to
1534 allocate would occasionally cause it to exceed the stack limit and
1535 cause unpredictable core dumps. */
1536 real_label_map
1537 = (rtx *) xmalloc ((max_labelno) * sizeof (rtx));
1538 map->label_map = real_label_map;
1540 map->insn_map = (rtx *) alloca (INSN_UID (header) * sizeof (rtx));
1541 bzero ((char *) map->insn_map, INSN_UID (header) * sizeof (rtx));
1542 map->min_insnno = 0;
1543 map->max_insnno = INSN_UID (header);
1545 map->integrating = 1;
1547 /* const_equiv_varray maps pseudos in our routine to constants, so
1548 it needs to be large enough for all our pseudos. This is the
1549 number we are currently using plus the number in the called
1550 routine, plus 15 for each arg, five to compute the virtual frame
1551 pointer, and five for the return value. This should be enough
1552 for most cases. We do not reference entries outside the range of
1553 the map.
1555 ??? These numbers are quite arbitrary and were obtained by
1556 experimentation. At some point, we should try to allocate the
1557 table after all the parameters are set up so we an more accurately
1558 estimate the number of pseudos we will need. */
1560 VARRAY_CONST_EQUIV_INIT (map->const_equiv_varray,
1561 (max_reg_num ()
1562 + (max_regno - FIRST_PSEUDO_REGISTER)
1563 + 15 * nargs
1564 + 10),
1565 "expand_inline_function");
1566 map->const_age = 0;
1568 /* Record the current insn in case we have to set up pointers to frame
1569 and argument memory blocks. If there are no insns yet, add a dummy
1570 insn that can be used as an insertion point. */
1571 map->insns_at_start = get_last_insn ();
1572 if (map->insns_at_start == 0)
1573 map->insns_at_start = emit_note (NULL_PTR, NOTE_INSN_DELETED);
1575 map->regno_pointer_flag = INLINE_REGNO_POINTER_FLAG (header);
1576 map->regno_pointer_align = INLINE_REGNO_POINTER_ALIGN (header);
1578 /* Update the outgoing argument size to allow for those in the inlined
1579 function. */
1580 if (OUTGOING_ARGS_SIZE (header) > current_function_outgoing_args_size)
1581 current_function_outgoing_args_size = OUTGOING_ARGS_SIZE (header);
1583 /* If the inline function needs to make PIC references, that means
1584 that this function's PIC offset table must be used. */
1585 if (FUNCTION_FLAGS (header) & FUNCTION_FLAGS_USES_PIC_OFFSET_TABLE)
1586 current_function_uses_pic_offset_table = 1;
1588 /* If this function needs a context, set it up. */
1589 if (FUNCTION_FLAGS (header) & FUNCTION_FLAGS_NEEDS_CONTEXT)
1590 static_chain_value = lookup_static_chain (fndecl);
1592 if (GET_CODE (parm_insns) == NOTE
1593 && NOTE_LINE_NUMBER (parm_insns) > 0)
1595 rtx note = emit_note (NOTE_SOURCE_FILE (parm_insns),
1596 NOTE_LINE_NUMBER (parm_insns));
1597 if (note)
1598 RTX_INTEGRATED_P (note) = 1;
1601 /* Process each argument. For each, set up things so that the function's
1602 reference to the argument will refer to the argument being passed.
1603 We only replace REG with REG here. Any simplifications are done
1604 via const_equiv_map.
1606 We make two passes: In the first, we deal with parameters that will
1607 be placed into registers, since we need to ensure that the allocated
1608 register number fits in const_equiv_map. Then we store all non-register
1609 parameters into their memory location. */
1611 /* Don't try to free temp stack slots here, because we may put one of the
1612 parameters into a temp stack slot. */
1614 for (i = 0; i < nargs; i++)
1616 rtx copy = arg_vals[i];
1618 loc = RTVEC_ELT (arg_vector, i);
1620 /* There are three cases, each handled separately. */
1621 if (GET_CODE (loc) == MEM && GET_CODE (XEXP (loc, 0)) == REG
1622 && REGNO (XEXP (loc, 0)) > LAST_VIRTUAL_REGISTER)
1624 /* This must be an object passed by invisible reference (it could
1625 also be a variable-sized object, but we forbid inlining functions
1626 with variable-sized arguments). COPY is the address of the
1627 actual value (this computation will cause it to be copied). We
1628 map that address for the register, noting the actual address as
1629 an equivalent in case it can be substituted into the insns. */
1631 if (GET_CODE (copy) != REG)
1633 temp = copy_addr_to_reg (copy);
1634 if (CONSTANT_P (copy) || FIXED_BASE_PLUS_P (copy))
1635 SET_CONST_EQUIV_DATA (map, temp, copy, CONST_AGE_PARM);
1636 copy = temp;
1638 map->reg_map[REGNO (XEXP (loc, 0))] = copy;
1640 else if (GET_CODE (loc) == MEM)
1642 /* This is the case of a parameter that lives in memory.
1643 It will live in the block we allocate in the called routine's
1644 frame that simulates the incoming argument area. Do nothing
1645 now; we will call store_expr later. */
1648 else if (GET_CODE (loc) == REG)
1649 process_reg_param (map, loc, copy);
1650 else if (GET_CODE (loc) == CONCAT)
1652 rtx locreal = gen_realpart (GET_MODE (XEXP (loc, 0)), loc);
1653 rtx locimag = gen_imagpart (GET_MODE (XEXP (loc, 0)), loc);
1654 rtx copyreal = gen_realpart (GET_MODE (locreal), copy);
1655 rtx copyimag = gen_imagpart (GET_MODE (locimag), copy);
1657 process_reg_param (map, locreal, copyreal);
1658 process_reg_param (map, locimag, copyimag);
1660 else
1661 abort ();
1664 /* Now do the parameters that will be placed in memory. */
1666 for (formal = DECL_ARGUMENTS (fndecl), i = 0;
1667 formal; formal = TREE_CHAIN (formal), i++)
1669 loc = RTVEC_ELT (arg_vector, i);
1671 if (GET_CODE (loc) == MEM
1672 /* Exclude case handled above. */
1673 && ! (GET_CODE (XEXP (loc, 0)) == REG
1674 && REGNO (XEXP (loc, 0)) > LAST_VIRTUAL_REGISTER))
1676 rtx note = emit_note (DECL_SOURCE_FILE (formal),
1677 DECL_SOURCE_LINE (formal));
1678 if (note)
1679 RTX_INTEGRATED_P (note) = 1;
1681 /* Compute the address in the area we reserved and store the
1682 value there. */
1683 temp = copy_rtx_and_substitute (loc, map);
1684 subst_constants (&temp, NULL_RTX, map);
1685 apply_change_group ();
1686 if (! memory_address_p (GET_MODE (temp), XEXP (temp, 0)))
1687 temp = change_address (temp, VOIDmode, XEXP (temp, 0));
1688 store_expr (arg_trees[i], temp, 0);
1692 /* Deal with the places that the function puts its result.
1693 We are driven by what is placed into DECL_RESULT.
1695 Initially, we assume that we don't have anything special handling for
1696 REG_FUNCTION_RETURN_VALUE_P. */
1698 map->inline_target = 0;
1699 loc = DECL_RTL (DECL_RESULT (fndecl));
1701 if (TYPE_MODE (type) == VOIDmode)
1702 /* There is no return value to worry about. */
1704 else if (GET_CODE (loc) == MEM)
1706 if (GET_CODE (XEXP (loc, 0)) == ADDRESSOF)
1708 temp = copy_rtx_and_substitute (loc, map);
1709 subst_constants (&temp, NULL_RTX, map);
1710 apply_change_group ();
1711 target = temp;
1713 else
1715 if (! structure_value_addr
1716 || ! aggregate_value_p (DECL_RESULT (fndecl)))
1717 abort ();
1719 /* Pass the function the address in which to return a structure
1720 value. Note that a constructor can cause someone to call us
1721 with STRUCTURE_VALUE_ADDR, but the initialization takes place
1722 via the first parameter, rather than the struct return address.
1724 We have two cases: If the address is a simple register
1725 indirect, use the mapping mechanism to point that register to
1726 our structure return address. Otherwise, store the structure
1727 return value into the place that it will be referenced from. */
1729 if (GET_CODE (XEXP (loc, 0)) == REG)
1731 temp = force_operand (structure_value_addr, NULL_RTX);
1732 temp = force_reg (Pmode, temp);
1733 map->reg_map[REGNO (XEXP (loc, 0))] = temp;
1735 if (CONSTANT_P (structure_value_addr)
1736 || GET_CODE (structure_value_addr) == ADDRESSOF
1737 || (GET_CODE (structure_value_addr) == PLUS
1738 && (XEXP (structure_value_addr, 0)
1739 == virtual_stack_vars_rtx)
1740 && (GET_CODE (XEXP (structure_value_addr, 1))
1741 == CONST_INT)))
1743 SET_CONST_EQUIV_DATA (map, temp, structure_value_addr,
1744 CONST_AGE_PARM);
1747 else
1749 temp = copy_rtx_and_substitute (loc, map);
1750 subst_constants (&temp, NULL_RTX, map);
1751 apply_change_group ();
1752 emit_move_insn (temp, structure_value_addr);
1756 else if (ignore)
1757 /* We will ignore the result value, so don't look at its structure.
1758 Note that preparations for an aggregate return value
1759 do need to be made (above) even if it will be ignored. */
1761 else if (GET_CODE (loc) == REG)
1763 /* The function returns an object in a register and we use the return
1764 value. Set up our target for remapping. */
1766 /* Machine mode function was declared to return. */
1767 enum machine_mode departing_mode = TYPE_MODE (type);
1768 /* (Possibly wider) machine mode it actually computes
1769 (for the sake of callers that fail to declare it right).
1770 We have to use the mode of the result's RTL, rather than
1771 its type, since expand_function_start may have promoted it. */
1772 enum machine_mode arriving_mode
1773 = GET_MODE (DECL_RTL (DECL_RESULT (fndecl)));
1774 rtx reg_to_map;
1776 /* Don't use MEMs as direct targets because on some machines
1777 substituting a MEM for a REG makes invalid insns.
1778 Let the combiner substitute the MEM if that is valid. */
1779 if (target == 0 || GET_CODE (target) != REG
1780 || GET_MODE (target) != departing_mode)
1782 /* Don't make BLKmode registers. If this looks like
1783 a BLKmode object being returned in a register, get
1784 the mode from that, otherwise abort. */
1785 if (departing_mode == BLKmode)
1787 if (REG == GET_CODE (DECL_RTL (DECL_RESULT (fndecl))))
1789 departing_mode = GET_MODE (DECL_RTL (DECL_RESULT (fndecl)));
1790 arriving_mode = departing_mode;
1792 else
1793 abort();
1796 target = gen_reg_rtx (departing_mode);
1799 /* If function's value was promoted before return,
1800 avoid machine mode mismatch when we substitute INLINE_TARGET.
1801 But TARGET is what we will return to the caller. */
1802 if (arriving_mode != departing_mode)
1804 /* Avoid creating a paradoxical subreg wider than
1805 BITS_PER_WORD, since that is illegal. */
1806 if (GET_MODE_BITSIZE (arriving_mode) > BITS_PER_WORD)
1808 if (!TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (departing_mode),
1809 GET_MODE_BITSIZE (arriving_mode)))
1810 /* Maybe could be handled by using convert_move () ? */
1811 abort ();
1812 reg_to_map = gen_reg_rtx (arriving_mode);
1813 target = gen_lowpart (departing_mode, reg_to_map);
1815 else
1816 reg_to_map = gen_rtx_SUBREG (arriving_mode, target, 0);
1818 else
1819 reg_to_map = target;
1821 /* Usually, the result value is the machine's return register.
1822 Sometimes it may be a pseudo. Handle both cases. */
1823 if (REG_FUNCTION_VALUE_P (loc))
1824 map->inline_target = reg_to_map;
1825 else
1826 map->reg_map[REGNO (loc)] = reg_to_map;
1828 else
1829 abort ();
1831 /* Make a fresh binding contour that we can easily remove. Do this after
1832 expanding our arguments so cleanups are properly scoped. */
1833 pushlevel (0);
1834 expand_start_bindings (0);
1836 /* Initialize label_map. get_label_from_map will actually make
1837 the labels. */
1838 bzero ((char *) &map->label_map [min_labelno],
1839 (max_labelno - min_labelno) * sizeof (rtx));
1841 /* Perform postincrements before actually calling the function. */
1842 emit_queue ();
1844 /* Clean up stack so that variables might have smaller offsets. */
1845 do_pending_stack_adjust ();
1847 /* Save a copy of the location of const_equiv_varray for
1848 mark_stores, called via note_stores. */
1849 global_const_equiv_varray = map->const_equiv_varray;
1851 /* If the called function does an alloca, save and restore the
1852 stack pointer around the call. This saves stack space, but
1853 also is required if this inline is being done between two
1854 pushes. */
1855 if (FUNCTION_FLAGS (header) & FUNCTION_FLAGS_CALLS_ALLOCA)
1856 emit_stack_save (SAVE_BLOCK, &stack_save, NULL_RTX);
1858 /* Now copy the insns one by one. Do this in two passes, first the insns and
1859 then their REG_NOTES, just like save_for_inline. */
1861 /* This loop is very similar to the loop in copy_loop_body in unroll.c. */
1863 for (insn = insns; insn; insn = NEXT_INSN (insn))
1865 rtx copy, pattern, set;
1867 map->orig_asm_operands_vector = 0;
1869 switch (GET_CODE (insn))
1871 case INSN:
1872 pattern = PATTERN (insn);
1873 set = single_set (insn);
1874 copy = 0;
1875 if (GET_CODE (pattern) == USE
1876 && GET_CODE (XEXP (pattern, 0)) == REG
1877 && REG_FUNCTION_VALUE_P (XEXP (pattern, 0)))
1878 /* The (USE (REG n)) at return from the function should
1879 be ignored since we are changing (REG n) into
1880 inline_target. */
1881 break;
1883 /* If the inline fn needs eh context, make sure that
1884 the current fn has one. */
1885 if (GET_CODE (pattern) == USE
1886 && find_reg_note (insn, REG_EH_CONTEXT, 0) != 0)
1887 get_eh_context ();
1889 /* Ignore setting a function value that we don't want to use. */
1890 if (map->inline_target == 0
1891 && set != 0
1892 && GET_CODE (SET_DEST (set)) == REG
1893 && REG_FUNCTION_VALUE_P (SET_DEST (set)))
1895 if (volatile_refs_p (SET_SRC (set)))
1897 rtx new_set;
1899 /* If we must not delete the source,
1900 load it into a new temporary. */
1901 copy = emit_insn (copy_rtx_and_substitute (pattern, map));
1903 new_set = single_set (copy);
1904 if (new_set == 0)
1905 abort ();
1907 SET_DEST (new_set)
1908 = gen_reg_rtx (GET_MODE (SET_DEST (new_set)));
1910 /* If the source and destination are the same and it
1911 has a note on it, keep the insn. */
1912 else if (rtx_equal_p (SET_DEST (set), SET_SRC (set))
1913 && REG_NOTES (insn) != 0)
1914 copy = emit_insn (copy_rtx_and_substitute (pattern, map));
1915 else
1916 break;
1919 /* If this is setting the static chain rtx, omit it. */
1920 else if (static_chain_value != 0
1921 && set != 0
1922 && GET_CODE (SET_DEST (set)) == REG
1923 && rtx_equal_p (SET_DEST (set),
1924 static_chain_incoming_rtx))
1925 break;
1927 /* If this is setting the static chain pseudo, set it from
1928 the value we want to give it instead. */
1929 else if (static_chain_value != 0
1930 && set != 0
1931 && rtx_equal_p (SET_SRC (set),
1932 static_chain_incoming_rtx))
1934 rtx newdest = copy_rtx_and_substitute (SET_DEST (set), map);
1936 copy = emit_move_insn (newdest, static_chain_value);
1937 static_chain_value = 0;
1939 else
1940 copy = emit_insn (copy_rtx_and_substitute (pattern, map));
1941 /* REG_NOTES will be copied later. */
1943 #ifdef HAVE_cc0
1944 /* If this insn is setting CC0, it may need to look at
1945 the insn that uses CC0 to see what type of insn it is.
1946 In that case, the call to recog via validate_change will
1947 fail. So don't substitute constants here. Instead,
1948 do it when we emit the following insn.
1950 For example, see the pyr.md file. That machine has signed and
1951 unsigned compares. The compare patterns must check the
1952 following branch insn to see which what kind of compare to
1953 emit.
1955 If the previous insn set CC0, substitute constants on it as
1956 well. */
1957 if (sets_cc0_p (PATTERN (copy)) != 0)
1958 cc0_insn = copy;
1959 else
1961 if (cc0_insn)
1962 try_constants (cc0_insn, map);
1963 cc0_insn = 0;
1964 try_constants (copy, map);
1966 #else
1967 try_constants (copy, map);
1968 #endif
1969 break;
1971 case JUMP_INSN:
1972 if (GET_CODE (PATTERN (insn)) == RETURN
1973 || (GET_CODE (PATTERN (insn)) == PARALLEL
1974 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == RETURN))
1976 if (local_return_label == 0)
1977 local_return_label = gen_label_rtx ();
1978 pattern = gen_jump (local_return_label);
1980 else
1981 pattern = copy_rtx_and_substitute (PATTERN (insn), map);
1983 copy = emit_jump_insn (pattern);
1985 #ifdef HAVE_cc0
1986 if (cc0_insn)
1987 try_constants (cc0_insn, map);
1988 cc0_insn = 0;
1989 #endif
1990 try_constants (copy, map);
1992 /* If this used to be a conditional jump insn but whose branch
1993 direction is now know, we must do something special. */
1994 if (condjump_p (insn) && ! simplejump_p (insn) && map->last_pc_value)
1996 #ifdef HAVE_cc0
1997 /* The previous insn set cc0 for us. So delete it. */
1998 delete_insn (PREV_INSN (copy));
1999 #endif
2001 /* If this is now a no-op, delete it. */
2002 if (map->last_pc_value == pc_rtx)
2004 delete_insn (copy);
2005 copy = 0;
2007 else
2008 /* Otherwise, this is unconditional jump so we must put a
2009 BARRIER after it. We could do some dead code elimination
2010 here, but jump.c will do it just as well. */
2011 emit_barrier ();
2013 break;
2015 case CALL_INSN:
2016 pattern = copy_rtx_and_substitute (PATTERN (insn), map);
2017 copy = emit_call_insn (pattern);
2019 /* Because the USAGE information potentially contains objects other
2020 than hard registers, we need to copy it. */
2021 CALL_INSN_FUNCTION_USAGE (copy)
2022 = copy_rtx_and_substitute (CALL_INSN_FUNCTION_USAGE (insn), map);
2024 #ifdef HAVE_cc0
2025 if (cc0_insn)
2026 try_constants (cc0_insn, map);
2027 cc0_insn = 0;
2028 #endif
2029 try_constants (copy, map);
2031 /* Be lazy and assume CALL_INSNs clobber all hard registers. */
2032 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
2033 VARRAY_CONST_EQUIV (map->const_equiv_varray, i).rtx = 0;
2034 break;
2036 case CODE_LABEL:
2037 copy = emit_label (get_label_from_map (map,
2038 CODE_LABEL_NUMBER (insn)));
2039 LABEL_NAME (copy) = LABEL_NAME (insn);
2040 map->const_age++;
2041 break;
2043 case BARRIER:
2044 copy = emit_barrier ();
2045 break;
2047 case NOTE:
2048 /* It is important to discard function-end and function-beg notes,
2049 so we have only one of each in the current function.
2050 Also, NOTE_INSN_DELETED notes aren't useful (save_for_inline
2051 deleted these in the copy used for continuing compilation,
2052 not the copy used for inlining). */
2053 if (NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_END
2054 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_BEG
2055 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_DELETED)
2057 copy = emit_note (NOTE_SOURCE_FILE (insn),
2058 NOTE_LINE_NUMBER (insn));
2059 if (copy
2060 && (NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_BEG
2061 || NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_END))
2063 rtx label
2064 = get_label_from_map (map, NOTE_BLOCK_NUMBER (copy));
2066 /* we have to duplicate the handlers for the original */
2067 if (NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_BEG)
2069 /* We need to duplicate the handlers for the EH region
2070 and we need to indicate where the label map is */
2071 eif_eh_map = map;
2072 duplicate_eh_handlers (NOTE_BLOCK_NUMBER (copy),
2073 CODE_LABEL_NUMBER (label),
2074 expand_inline_function_eh_labelmap);
2077 /* We have to forward these both to match the new exception
2078 region. */
2079 NOTE_BLOCK_NUMBER (copy) = CODE_LABEL_NUMBER (label);
2082 else
2083 copy = 0;
2084 break;
2086 default:
2087 abort ();
2088 break;
2091 if (copy)
2092 RTX_INTEGRATED_P (copy) = 1;
2094 map->insn_map[INSN_UID (insn)] = copy;
2097 /* Now copy the REG_NOTES. Increment const_age, so that only constants
2098 from parameters can be substituted in. These are the only ones that
2099 are valid across the entire function. */
2100 map->const_age++;
2101 for (insn = insns; insn; insn = NEXT_INSN (insn))
2102 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
2103 && map->insn_map[INSN_UID (insn)]
2104 && REG_NOTES (insn))
2106 rtx tem = copy_rtx_and_substitute (REG_NOTES (insn), map);
2107 /* We must also do subst_constants, in case one of our parameters
2108 has const type and constant value. */
2109 subst_constants (&tem, NULL_RTX, map);
2110 apply_change_group ();
2111 REG_NOTES (map->insn_map[INSN_UID (insn)]) = tem;
2114 if (local_return_label)
2115 emit_label (local_return_label);
2117 /* Restore the stack pointer if we saved it above. */
2118 if (FUNCTION_FLAGS (header) & FUNCTION_FLAGS_CALLS_ALLOCA)
2119 emit_stack_restore (SAVE_BLOCK, stack_save, NULL_RTX);
2121 /* Make copies of the decls of the symbols in the inline function, so that
2122 the copies of the variables get declared in the current function. Set
2123 up things so that lookup_static_chain knows that to interpret registers
2124 in SAVE_EXPRs for TYPE_SIZEs as local. */
2126 inline_function_decl = fndecl;
2127 integrate_parm_decls (DECL_ARGUMENTS (fndecl), map, arg_vector);
2128 integrate_decl_tree ((tree) ORIGINAL_DECL_INITIAL (header), 0, map);
2129 inline_function_decl = 0;
2131 /* End the scope containing the copied formal parameter variables
2132 and copied LABEL_DECLs. */
2134 expand_end_bindings (getdecls (), 1, 1);
2135 block = poplevel (1, 1, 0);
2136 BLOCK_ABSTRACT_ORIGIN (block) = (DECL_ABSTRACT_ORIGIN (fndecl) == NULL
2137 ? fndecl : DECL_ABSTRACT_ORIGIN (fndecl));
2138 poplevel (0, 0, 0);
2140 /* Must mark the line number note after inlined functions as a repeat, so
2141 that the test coverage code can avoid counting the call twice. This
2142 just tells the code to ignore the immediately following line note, since
2143 there already exists a copy of this note before the expanded inline call.
2144 This line number note is still needed for debugging though, so we can't
2145 delete it. */
2146 if (flag_test_coverage)
2147 emit_note (0, NOTE_REPEATED_LINE_NUMBER);
2149 emit_line_note (input_filename, lineno);
2151 /* If the function returns a BLKmode object in a register, copy it
2152 out of the temp register into a BLKmode memory object. */
2153 if (TYPE_MODE (TREE_TYPE (TREE_TYPE (fndecl))) == BLKmode
2154 && ! aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl))))
2155 target = copy_blkmode_from_reg (0, target, TREE_TYPE (TREE_TYPE (fndecl)));
2157 if (structure_value_addr)
2159 target = gen_rtx_MEM (TYPE_MODE (type),
2160 memory_address (TYPE_MODE (type),
2161 structure_value_addr));
2162 MEM_SET_IN_STRUCT_P (target, 1);
2165 /* Make sure we free the things we explicitly allocated with xmalloc. */
2166 if (real_label_map)
2167 free (real_label_map);
2168 if (map)
2169 VARRAY_FREE (map->const_equiv_varray);
2171 return target;
2174 /* Given a chain of PARM_DECLs, ARGS, copy each decl into a VAR_DECL,
2175 push all of those decls and give each one the corresponding home. */
2177 static void
2178 integrate_parm_decls (args, map, arg_vector)
2179 tree args;
2180 struct inline_remap *map;
2181 rtvec arg_vector;
2183 register tree tail;
2184 register int i;
2186 for (tail = args, i = 0; tail; tail = TREE_CHAIN (tail), i++)
2188 register tree decl = build_decl (VAR_DECL, DECL_NAME (tail),
2189 TREE_TYPE (tail));
2190 rtx new_decl_rtl
2191 = copy_rtx_and_substitute (RTVEC_ELT (arg_vector, i), map);
2193 DECL_ARG_TYPE (decl) = DECL_ARG_TYPE (tail);
2194 /* We really should be setting DECL_INCOMING_RTL to something reasonable
2195 here, but that's going to require some more work. */
2196 /* DECL_INCOMING_RTL (decl) = ?; */
2197 /* These args would always appear unused, if not for this. */
2198 TREE_USED (decl) = 1;
2199 /* Prevent warning for shadowing with these. */
2200 DECL_ABSTRACT_ORIGIN (decl) = DECL_ORIGIN (tail);
2201 pushdecl (decl);
2202 /* Fully instantiate the address with the equivalent form so that the
2203 debugging information contains the actual register, instead of the
2204 virtual register. Do this by not passing an insn to
2205 subst_constants. */
2206 subst_constants (&new_decl_rtl, NULL_RTX, map);
2207 apply_change_group ();
2208 DECL_RTL (decl) = new_decl_rtl;
2212 /* Given a BLOCK node LET, push decls and levels so as to construct in the
2213 current function a tree of contexts isomorphic to the one that is given.
2215 LEVEL indicates how far down into the BLOCK tree is the node we are
2216 currently traversing. It is always zero except for recursive calls.
2218 MAP, if nonzero, is a pointer to an inline_remap map which indicates how
2219 registers used in the DECL_RTL field should be remapped. If it is zero,
2220 no mapping is necessary. */
2222 static void
2223 integrate_decl_tree (let, level, map)
2224 tree let;
2225 int level;
2226 struct inline_remap *map;
2228 tree t, node;
2230 if (level > 0)
2231 pushlevel (0);
2233 for (t = BLOCK_VARS (let); t; t = TREE_CHAIN (t))
2235 tree d;
2237 push_obstacks_nochange ();
2238 saveable_allocation ();
2239 d = copy_and_set_decl_abstract_origin (t);
2240 pop_obstacks ();
2242 if (DECL_RTL (t) != 0)
2244 DECL_RTL (d) = copy_rtx_and_substitute (DECL_RTL (t), map);
2245 /* Fully instantiate the address with the equivalent form so that the
2246 debugging information contains the actual register, instead of the
2247 virtual register. Do this by not passing an insn to
2248 subst_constants. */
2249 subst_constants (&DECL_RTL (d), NULL_RTX, map);
2250 apply_change_group ();
2252 /* These args would always appear unused, if not for this. */
2253 TREE_USED (d) = 1;
2255 if (DECL_LANG_SPECIFIC (d))
2256 copy_lang_decl (d);
2258 pushdecl (d);
2261 for (t = BLOCK_SUBBLOCKS (let); t; t = TREE_CHAIN (t))
2262 integrate_decl_tree (t, level + 1, map);
2264 if (level > 0)
2266 node = poplevel (1, 0, 0);
2267 if (node)
2269 TREE_USED (node) = TREE_USED (let);
2270 BLOCK_ABSTRACT_ORIGIN (node) = let;
2275 /* Given a BLOCK node LET, search for all DECL_RTL fields, and pass them
2276 through save_constants. */
2278 static void
2279 save_constants_in_decl_trees (let)
2280 tree let;
2282 tree t;
2284 for (t = BLOCK_VARS (let); t; t = TREE_CHAIN (t))
2285 if (DECL_RTL (t) != 0)
2286 save_constants (&DECL_RTL (t));
2288 for (t = BLOCK_SUBBLOCKS (let); t; t = TREE_CHAIN (t))
2289 save_constants_in_decl_trees (t);
2292 /* Create a new copy of an rtx.
2293 Recursively copies the operands of the rtx,
2294 except for those few rtx codes that are sharable.
2296 We always return an rtx that is similar to that incoming rtx, with the
2297 exception of possibly changing a REG to a SUBREG or vice versa. No
2298 rtl is ever emitted.
2300 Handle constants that need to be placed in the constant pool by
2301 calling `force_const_mem'. */
2304 copy_rtx_and_substitute (orig, map)
2305 register rtx orig;
2306 struct inline_remap *map;
2308 register rtx copy, temp;
2309 register int i, j;
2310 register RTX_CODE code;
2311 register enum machine_mode mode;
2312 register char *format_ptr;
2313 int regno;
2315 if (orig == 0)
2316 return 0;
2318 code = GET_CODE (orig);
2319 mode = GET_MODE (orig);
2321 switch (code)
2323 case REG:
2324 /* If the stack pointer register shows up, it must be part of
2325 stack-adjustments (*not* because we eliminated the frame pointer!).
2326 Small hard registers are returned as-is. Pseudo-registers
2327 go through their `reg_map'. */
2328 regno = REGNO (orig);
2329 if (regno <= LAST_VIRTUAL_REGISTER)
2331 /* Some hard registers are also mapped,
2332 but others are not translated. */
2333 if (map->reg_map[regno] != 0)
2334 return map->reg_map[regno];
2336 /* If this is the virtual frame pointer, make space in current
2337 function's stack frame for the stack frame of the inline function.
2339 Copy the address of this area into a pseudo. Map
2340 virtual_stack_vars_rtx to this pseudo and set up a constant
2341 equivalence for it to be the address. This will substitute the
2342 address into insns where it can be substituted and use the new
2343 pseudo where it can't. */
2344 if (regno == VIRTUAL_STACK_VARS_REGNUM)
2346 rtx loc, seq;
2347 int size = DECL_FRAME_SIZE (map->fndecl);
2349 #ifdef FRAME_GROWS_DOWNWARD
2350 /* In this case, virtual_stack_vars_rtx points to one byte
2351 higher than the top of the frame area. So make sure we
2352 allocate a big enough chunk to keep the frame pointer
2353 aligned like a real one. */
2354 size = CEIL_ROUND (size, BIGGEST_ALIGNMENT / BITS_PER_UNIT);
2355 #endif
2356 start_sequence ();
2357 loc = assign_stack_temp (BLKmode, size, 1);
2358 loc = XEXP (loc, 0);
2359 #ifdef FRAME_GROWS_DOWNWARD
2360 /* In this case, virtual_stack_vars_rtx points to one byte
2361 higher than the top of the frame area. So compute the offset
2362 to one byte higher than our substitute frame. */
2363 loc = plus_constant (loc, size);
2364 #endif
2365 map->reg_map[regno] = temp
2366 = force_reg (Pmode, force_operand (loc, NULL_RTX));
2368 #ifdef STACK_BOUNDARY
2369 mark_reg_pointer (map->reg_map[regno],
2370 STACK_BOUNDARY / BITS_PER_UNIT);
2371 #endif
2373 SET_CONST_EQUIV_DATA (map, temp, loc, CONST_AGE_PARM);
2375 seq = gen_sequence ();
2376 end_sequence ();
2377 emit_insn_after (seq, map->insns_at_start);
2378 return temp;
2380 else if (regno == VIRTUAL_INCOMING_ARGS_REGNUM)
2382 /* Do the same for a block to contain any arguments referenced
2383 in memory. */
2384 rtx loc, seq;
2385 int size = FUNCTION_ARGS_SIZE (DECL_SAVED_INSNS (map->fndecl));
2387 start_sequence ();
2388 loc = assign_stack_temp (BLKmode, size, 1);
2389 loc = XEXP (loc, 0);
2390 /* When arguments grow downward, the virtual incoming
2391 args pointer points to the top of the argument block,
2392 so the remapped location better do the same. */
2393 #ifdef ARGS_GROW_DOWNWARD
2394 loc = plus_constant (loc, size);
2395 #endif
2396 map->reg_map[regno] = temp
2397 = force_reg (Pmode, force_operand (loc, NULL_RTX));
2399 #ifdef STACK_BOUNDARY
2400 mark_reg_pointer (map->reg_map[regno],
2401 STACK_BOUNDARY / BITS_PER_UNIT);
2402 #endif
2404 SET_CONST_EQUIV_DATA (map, temp, loc, CONST_AGE_PARM);
2406 seq = gen_sequence ();
2407 end_sequence ();
2408 emit_insn_after (seq, map->insns_at_start);
2409 return temp;
2411 else if (REG_FUNCTION_VALUE_P (orig))
2413 /* This is a reference to the function return value. If
2414 the function doesn't have a return value, error. If the
2415 mode doesn't agree, and it ain't BLKmode, make a SUBREG. */
2416 if (map->inline_target == 0)
2417 /* Must be unrolling loops or replicating code if we
2418 reach here, so return the register unchanged. */
2419 return orig;
2420 else if (GET_MODE (map->inline_target) != BLKmode
2421 && mode != GET_MODE (map->inline_target))
2422 return gen_lowpart (mode, map->inline_target);
2423 else
2424 return map->inline_target;
2426 return orig;
2428 if (map->reg_map[regno] == NULL)
2430 map->reg_map[regno] = gen_reg_rtx (mode);
2431 REG_USERVAR_P (map->reg_map[regno]) = REG_USERVAR_P (orig);
2432 REG_LOOP_TEST_P (map->reg_map[regno]) = REG_LOOP_TEST_P (orig);
2433 RTX_UNCHANGING_P (map->reg_map[regno]) = RTX_UNCHANGING_P (orig);
2434 /* A reg with REG_FUNCTION_VALUE_P true will never reach here. */
2436 if (map->regno_pointer_flag[regno])
2437 mark_reg_pointer (map->reg_map[regno],
2438 map->regno_pointer_align[regno]);
2440 return map->reg_map[regno];
2442 case SUBREG:
2443 copy = copy_rtx_and_substitute (SUBREG_REG (orig), map);
2444 /* SUBREG is ordinary, but don't make nested SUBREGs. */
2445 if (GET_CODE (copy) == SUBREG)
2446 return gen_rtx_SUBREG (GET_MODE (orig), SUBREG_REG (copy),
2447 SUBREG_WORD (orig) + SUBREG_WORD (copy));
2448 else if (GET_CODE (copy) == CONCAT)
2450 rtx retval = subreg_realpart_p (orig) ? XEXP (copy, 0) : XEXP (copy, 1);
2452 if (GET_MODE (retval) == GET_MODE (orig))
2453 return retval;
2454 else
2455 return gen_rtx_SUBREG (GET_MODE (orig), retval,
2456 (SUBREG_WORD (orig) %
2457 (GET_MODE_UNIT_SIZE (GET_MODE (SUBREG_REG (orig)))
2458 / (unsigned) UNITS_PER_WORD)));
2460 else
2461 return gen_rtx_SUBREG (GET_MODE (orig), copy,
2462 SUBREG_WORD (orig));
2464 case ADDRESSOF:
2465 copy = gen_rtx_ADDRESSOF (mode,
2466 copy_rtx_and_substitute (XEXP (orig, 0), map), 0);
2467 SET_ADDRESSOF_DECL (copy, ADDRESSOF_DECL (orig));
2468 regno = ADDRESSOF_REGNO (orig);
2469 if (map->reg_map[regno])
2470 regno = REGNO (map->reg_map[regno]);
2471 else if (regno > LAST_VIRTUAL_REGISTER)
2473 temp = XEXP (orig, 0);
2474 map->reg_map[regno] = gen_reg_rtx (GET_MODE (temp));
2475 REG_USERVAR_P (map->reg_map[regno]) = REG_USERVAR_P (temp);
2476 REG_LOOP_TEST_P (map->reg_map[regno]) = REG_LOOP_TEST_P (temp);
2477 RTX_UNCHANGING_P (map->reg_map[regno]) = RTX_UNCHANGING_P (temp);
2478 /* A reg with REG_FUNCTION_VALUE_P true will never reach here. */
2480 if (map->regno_pointer_flag[regno])
2481 mark_reg_pointer (map->reg_map[regno],
2482 map->regno_pointer_align[regno]);
2483 regno = REGNO (map->reg_map[regno]);
2485 ADDRESSOF_REGNO (copy) = regno;
2486 return copy;
2488 case USE:
2489 case CLOBBER:
2490 /* USE and CLOBBER are ordinary, but we convert (use (subreg foo))
2491 to (use foo) if the original insn didn't have a subreg.
2492 Removing the subreg distorts the VAX movstrhi pattern
2493 by changing the mode of an operand. */
2494 copy = copy_rtx_and_substitute (XEXP (orig, 0), map);
2495 if (GET_CODE (copy) == SUBREG && GET_CODE (XEXP (orig, 0)) != SUBREG)
2496 copy = SUBREG_REG (copy);
2497 return gen_rtx_fmt_e (code, VOIDmode, copy);
2499 case CODE_LABEL:
2500 LABEL_PRESERVE_P (get_label_from_map (map, CODE_LABEL_NUMBER (orig)))
2501 = LABEL_PRESERVE_P (orig);
2502 return get_label_from_map (map, CODE_LABEL_NUMBER (orig));
2504 case LABEL_REF:
2505 copy = gen_rtx_LABEL_REF (mode,
2506 LABEL_REF_NONLOCAL_P (orig) ? XEXP (orig, 0)
2507 : get_label_from_map (map,
2508 CODE_LABEL_NUMBER (XEXP (orig, 0))));
2509 LABEL_OUTSIDE_LOOP_P (copy) = LABEL_OUTSIDE_LOOP_P (orig);
2511 /* The fact that this label was previously nonlocal does not mean
2512 it still is, so we must check if it is within the range of
2513 this function's labels. */
2514 LABEL_REF_NONLOCAL_P (copy)
2515 = (LABEL_REF_NONLOCAL_P (orig)
2516 && ! (CODE_LABEL_NUMBER (XEXP (copy, 0)) >= get_first_label_num ()
2517 && CODE_LABEL_NUMBER (XEXP (copy, 0)) < max_label_num ()));
2519 /* If we have made a nonlocal label local, it means that this
2520 inlined call will be referring to our nonlocal goto handler.
2521 So make sure we create one for this block; we normally would
2522 not since this is not otherwise considered a "call". */
2523 if (LABEL_REF_NONLOCAL_P (orig) && ! LABEL_REF_NONLOCAL_P (copy))
2524 function_call_count++;
2526 return copy;
2528 case PC:
2529 case CC0:
2530 case CONST_INT:
2531 return orig;
2533 case SYMBOL_REF:
2534 /* Symbols which represent the address of a label stored in the constant
2535 pool must be modified to point to a constant pool entry for the
2536 remapped label. Otherwise, symbols are returned unchanged. */
2537 if (CONSTANT_POOL_ADDRESS_P (orig))
2539 rtx constant = get_pool_constant (orig);
2540 if (GET_CODE (constant) == LABEL_REF)
2541 return XEXP (force_const_mem (GET_MODE (orig),
2542 copy_rtx_and_substitute (constant,
2543 map)),
2546 else
2547 if (SYMBOL_REF_NEED_ADJUST (orig))
2549 eif_eh_map = map;
2550 return rethrow_symbol_map (orig,
2551 expand_inline_function_eh_labelmap);
2554 return orig;
2556 case CONST_DOUBLE:
2557 /* We have to make a new copy of this CONST_DOUBLE because don't want
2558 to use the old value of CONST_DOUBLE_MEM. Also, this may be a
2559 duplicate of a CONST_DOUBLE we have already seen. */
2560 if (GET_MODE_CLASS (GET_MODE (orig)) == MODE_FLOAT)
2562 REAL_VALUE_TYPE d;
2564 REAL_VALUE_FROM_CONST_DOUBLE (d, orig);
2565 return CONST_DOUBLE_FROM_REAL_VALUE (d, GET_MODE (orig));
2567 else
2568 return immed_double_const (CONST_DOUBLE_LOW (orig),
2569 CONST_DOUBLE_HIGH (orig), VOIDmode);
2571 case CONST:
2572 /* Make new constant pool entry for a constant
2573 that was in the pool of the inline function. */
2574 if (RTX_INTEGRATED_P (orig))
2576 /* If this was an address of a constant pool entry that itself
2577 had to be placed in the constant pool, it might not be a
2578 valid address. So the recursive call below might turn it
2579 into a register. In that case, it isn't a constant any
2580 more, so return it. This has the potential of changing a
2581 MEM into a REG, but we'll assume that it safe. */
2582 temp = copy_rtx_and_substitute (XEXP (orig, 0), map);
2583 if (! CONSTANT_P (temp))
2584 return temp;
2585 return validize_mem (force_const_mem (GET_MODE (orig), temp));
2587 break;
2589 case ADDRESS:
2590 /* If from constant pool address, make new constant pool entry and
2591 return its address. */
2592 if (! RTX_INTEGRATED_P (orig))
2593 abort ();
2595 temp
2596 = force_const_mem (GET_MODE (XEXP (orig, 0)),
2597 copy_rtx_and_substitute (XEXP (XEXP (orig, 0), 0),
2598 map));
2600 #if 0
2601 /* Legitimizing the address here is incorrect.
2603 The only ADDRESS rtx's that can reach here are ones created by
2604 save_constants. Hence the operand of the ADDRESS is always valid
2605 in this position of the instruction, since the original rtx without
2606 the ADDRESS was valid.
2608 The reason we don't legitimize the address here is that on the
2609 Sparc, the caller may have a (high ...) surrounding this ADDRESS.
2610 This code forces the operand of the address to a register, which
2611 fails because we can not take the HIGH part of a register.
2613 Also, change_address may create new registers. These registers
2614 will not have valid reg_map entries. This can cause try_constants()
2615 to fail because assumes that all registers in the rtx have valid
2616 reg_map entries, and it may end up replacing one of these new
2617 registers with junk. */
2619 if (! memory_address_p (GET_MODE (temp), XEXP (temp, 0)))
2620 temp = change_address (temp, GET_MODE (temp), XEXP (temp, 0));
2621 #endif
2623 temp = XEXP (temp, 0);
2625 #ifdef POINTERS_EXTEND_UNSIGNED
2626 if (GET_MODE (temp) != GET_MODE (orig))
2627 temp = convert_memory_address (GET_MODE (orig), temp);
2628 #endif
2630 return temp;
2632 case ASM_OPERANDS:
2633 /* If a single asm insn contains multiple output operands
2634 then it contains multiple ASM_OPERANDS rtx's that share operand 3.
2635 We must make sure that the copied insn continues to share it. */
2636 if (map->orig_asm_operands_vector == XVEC (orig, 3))
2638 copy = rtx_alloc (ASM_OPERANDS);
2639 copy->volatil = orig->volatil;
2640 XSTR (copy, 0) = XSTR (orig, 0);
2641 XSTR (copy, 1) = XSTR (orig, 1);
2642 XINT (copy, 2) = XINT (orig, 2);
2643 XVEC (copy, 3) = map->copy_asm_operands_vector;
2644 XVEC (copy, 4) = map->copy_asm_constraints_vector;
2645 XSTR (copy, 5) = XSTR (orig, 5);
2646 XINT (copy, 6) = XINT (orig, 6);
2647 return copy;
2649 break;
2651 case CALL:
2652 /* This is given special treatment because the first
2653 operand of a CALL is a (MEM ...) which may get
2654 forced into a register for cse. This is undesirable
2655 if function-address cse isn't wanted or if we won't do cse. */
2656 #ifndef NO_FUNCTION_CSE
2657 if (! (optimize && ! flag_no_function_cse))
2658 #endif
2659 return gen_rtx_CALL (GET_MODE (orig),
2660 gen_rtx_MEM (GET_MODE (XEXP (orig, 0)),
2661 copy_rtx_and_substitute (XEXP (XEXP (orig, 0), 0), map)),
2662 copy_rtx_and_substitute (XEXP (orig, 1), map));
2663 break;
2665 #if 0
2666 /* Must be ifdefed out for loop unrolling to work. */
2667 case RETURN:
2668 abort ();
2669 #endif
2671 case SET:
2672 /* If this is setting fp or ap, it means that we have a nonlocal goto.
2673 Adjust the setting by the offset of the area we made.
2674 If the nonlocal goto is into the current function,
2675 this will result in unnecessarily bad code, but should work. */
2676 if (SET_DEST (orig) == virtual_stack_vars_rtx
2677 || SET_DEST (orig) == virtual_incoming_args_rtx)
2679 /* In case a translation hasn't occurred already, make one now. */
2680 rtx equiv_reg;
2681 rtx equiv_loc;
2682 HOST_WIDE_INT loc_offset;
2684 copy_rtx_and_substitute (SET_DEST (orig), map);
2685 equiv_reg = map->reg_map[REGNO (SET_DEST (orig))];
2686 equiv_loc = VARRAY_CONST_EQUIV (map->const_equiv_varray, REGNO (equiv_reg)).rtx;
2687 loc_offset
2688 = GET_CODE (equiv_loc) == REG ? 0 : INTVAL (XEXP (equiv_loc, 1));
2689 return gen_rtx_SET (VOIDmode, SET_DEST (orig),
2690 force_operand
2691 (plus_constant
2692 (copy_rtx_and_substitute (SET_SRC (orig), map),
2693 - loc_offset),
2694 NULL_RTX));
2696 break;
2698 case MEM:
2699 copy = rtx_alloc (MEM);
2700 PUT_MODE (copy, mode);
2701 XEXP (copy, 0) = copy_rtx_and_substitute (XEXP (orig, 0), map);
2702 MEM_COPY_ATTRIBUTES (copy, orig);
2703 MEM_ALIAS_SET (copy) = MEM_ALIAS_SET (orig);
2705 /* If doing function inlining, this MEM might not be const in the
2706 function that it is being inlined into, and thus may not be
2707 unchanging after function inlining. Constant pool references are
2708 handled elsewhere, so this doesn't lose RTX_UNCHANGING_P bits
2709 for them. */
2710 if (! map->integrating)
2711 RTX_UNCHANGING_P (copy) = RTX_UNCHANGING_P (orig);
2713 return copy;
2715 default:
2716 break;
2719 copy = rtx_alloc (code);
2720 PUT_MODE (copy, mode);
2721 copy->in_struct = orig->in_struct;
2722 copy->volatil = orig->volatil;
2723 copy->unchanging = orig->unchanging;
2725 format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
2727 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)
2729 switch (*format_ptr++)
2731 case '0':
2732 XEXP (copy, i) = XEXP (orig, i);
2733 break;
2735 case 'e':
2736 XEXP (copy, i) = copy_rtx_and_substitute (XEXP (orig, i), map);
2737 break;
2739 case 'u':
2740 /* Change any references to old-insns to point to the
2741 corresponding copied insns. */
2742 XEXP (copy, i) = map->insn_map[INSN_UID (XEXP (orig, i))];
2743 break;
2745 case 'E':
2746 XVEC (copy, i) = XVEC (orig, i);
2747 if (XVEC (orig, i) != NULL && XVECLEN (orig, i) != 0)
2749 XVEC (copy, i) = rtvec_alloc (XVECLEN (orig, i));
2750 for (j = 0; j < XVECLEN (copy, i); j++)
2751 XVECEXP (copy, i, j)
2752 = copy_rtx_and_substitute (XVECEXP (orig, i, j), map);
2754 break;
2756 case 'w':
2757 XWINT (copy, i) = XWINT (orig, i);
2758 break;
2760 case 'i':
2761 XINT (copy, i) = XINT (orig, i);
2762 break;
2764 case 's':
2765 XSTR (copy, i) = XSTR (orig, i);
2766 break;
2768 default:
2769 abort ();
2773 if (code == ASM_OPERANDS && map->orig_asm_operands_vector == 0)
2775 map->orig_asm_operands_vector = XVEC (orig, 3);
2776 map->copy_asm_operands_vector = XVEC (copy, 3);
2777 map->copy_asm_constraints_vector = XVEC (copy, 4);
2780 return copy;
2783 /* Substitute known constant values into INSN, if that is valid. */
2785 void
2786 try_constants (insn, map)
2787 rtx insn;
2788 struct inline_remap *map;
2790 int i;
2792 map->num_sets = 0;
2793 subst_constants (&PATTERN (insn), insn, map);
2795 /* Apply the changes if they are valid; otherwise discard them. */
2796 apply_change_group ();
2798 /* Show we don't know the value of anything stored or clobbered. */
2799 note_stores (PATTERN (insn), mark_stores);
2800 map->last_pc_value = 0;
2801 #ifdef HAVE_cc0
2802 map->last_cc0_value = 0;
2803 #endif
2805 /* Set up any constant equivalences made in this insn. */
2806 for (i = 0; i < map->num_sets; i++)
2808 if (GET_CODE (map->equiv_sets[i].dest) == REG)
2810 int regno = REGNO (map->equiv_sets[i].dest);
2812 MAYBE_EXTEND_CONST_EQUIV_VARRAY (map, regno);
2813 if (VARRAY_CONST_EQUIV (map->const_equiv_varray, regno).rtx == 0
2814 /* Following clause is a hack to make case work where GNU C++
2815 reassigns a variable to make cse work right. */
2816 || ! rtx_equal_p (VARRAY_CONST_EQUIV (map->const_equiv_varray,
2817 regno).rtx,
2818 map->equiv_sets[i].equiv))
2819 SET_CONST_EQUIV_DATA (map, map->equiv_sets[i].dest,
2820 map->equiv_sets[i].equiv, map->const_age);
2822 else if (map->equiv_sets[i].dest == pc_rtx)
2823 map->last_pc_value = map->equiv_sets[i].equiv;
2824 #ifdef HAVE_cc0
2825 else if (map->equiv_sets[i].dest == cc0_rtx)
2826 map->last_cc0_value = map->equiv_sets[i].equiv;
2827 #endif
2831 /* Substitute known constants for pseudo regs in the contents of LOC,
2832 which are part of INSN.
2833 If INSN is zero, the substitution should always be done (this is used to
2834 update DECL_RTL).
2835 These changes are taken out by try_constants if the result is not valid.
2837 Note that we are more concerned with determining when the result of a SET
2838 is a constant, for further propagation, than actually inserting constants
2839 into insns; cse will do the latter task better.
2841 This function is also used to adjust address of items previously addressed
2842 via the virtual stack variable or virtual incoming arguments registers. */
2844 static void
2845 subst_constants (loc, insn, map)
2846 rtx *loc;
2847 rtx insn;
2848 struct inline_remap *map;
2850 rtx x = *loc;
2851 register int i;
2852 register enum rtx_code code;
2853 register char *format_ptr;
2854 int num_changes = num_validated_changes ();
2855 rtx new = 0;
2856 enum machine_mode op0_mode;
2858 code = GET_CODE (x);
2860 switch (code)
2862 case PC:
2863 case CONST_INT:
2864 case CONST_DOUBLE:
2865 case SYMBOL_REF:
2866 case CONST:
2867 case LABEL_REF:
2868 case ADDRESS:
2869 return;
2871 #ifdef HAVE_cc0
2872 case CC0:
2873 validate_change (insn, loc, map->last_cc0_value, 1);
2874 return;
2875 #endif
2877 case USE:
2878 case CLOBBER:
2879 /* The only thing we can do with a USE or CLOBBER is possibly do
2880 some substitutions in a MEM within it. */
2881 if (GET_CODE (XEXP (x, 0)) == MEM)
2882 subst_constants (&XEXP (XEXP (x, 0), 0), insn, map);
2883 return;
2885 case REG:
2886 /* Substitute for parms and known constants. Don't replace
2887 hard regs used as user variables with constants. */
2889 int regno = REGNO (x);
2890 struct const_equiv_data *p;
2892 if (! (regno < FIRST_PSEUDO_REGISTER && REG_USERVAR_P (x))
2893 && regno < VARRAY_SIZE (map->const_equiv_varray)
2894 && (p = &VARRAY_CONST_EQUIV (map->const_equiv_varray, regno),
2895 p->rtx != 0)
2896 && p->age >= map->const_age)
2897 validate_change (insn, loc, p->rtx, 1);
2898 return;
2901 case SUBREG:
2902 /* SUBREG applied to something other than a reg
2903 should be treated as ordinary, since that must
2904 be a special hack and we don't know how to treat it specially.
2905 Consider for example mulsidi3 in m68k.md.
2906 Ordinary SUBREG of a REG needs this special treatment. */
2907 if (GET_CODE (SUBREG_REG (x)) == REG)
2909 rtx inner = SUBREG_REG (x);
2910 rtx new = 0;
2912 /* We can't call subst_constants on &SUBREG_REG (x) because any
2913 constant or SUBREG wouldn't be valid inside our SUBEG. Instead,
2914 see what is inside, try to form the new SUBREG and see if that is
2915 valid. We handle two cases: extracting a full word in an
2916 integral mode and extracting the low part. */
2917 subst_constants (&inner, NULL_RTX, map);
2919 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_INT
2920 && GET_MODE_SIZE (GET_MODE (x)) == UNITS_PER_WORD
2921 && GET_MODE (SUBREG_REG (x)) != VOIDmode)
2922 new = operand_subword (inner, SUBREG_WORD (x), 0,
2923 GET_MODE (SUBREG_REG (x)));
2925 cancel_changes (num_changes);
2926 if (new == 0 && subreg_lowpart_p (x))
2927 new = gen_lowpart_common (GET_MODE (x), inner);
2929 if (new)
2930 validate_change (insn, loc, new, 1);
2932 return;
2934 break;
2936 case MEM:
2937 subst_constants (&XEXP (x, 0), insn, map);
2939 /* If a memory address got spoiled, change it back. */
2940 if (insn != 0 && num_validated_changes () != num_changes
2941 && !memory_address_p (GET_MODE (x), XEXP (x, 0)))
2942 cancel_changes (num_changes);
2943 return;
2945 case SET:
2947 /* Substitute constants in our source, and in any arguments to a
2948 complex (e..g, ZERO_EXTRACT) destination, but not in the destination
2949 itself. */
2950 rtx *dest_loc = &SET_DEST (x);
2951 rtx dest = *dest_loc;
2952 rtx src, tem;
2954 subst_constants (&SET_SRC (x), insn, map);
2955 src = SET_SRC (x);
2957 while (GET_CODE (*dest_loc) == ZERO_EXTRACT
2958 || GET_CODE (*dest_loc) == SUBREG
2959 || GET_CODE (*dest_loc) == STRICT_LOW_PART)
2961 if (GET_CODE (*dest_loc) == ZERO_EXTRACT)
2963 subst_constants (&XEXP (*dest_loc, 1), insn, map);
2964 subst_constants (&XEXP (*dest_loc, 2), insn, map);
2966 dest_loc = &XEXP (*dest_loc, 0);
2969 /* Do substitute in the address of a destination in memory. */
2970 if (GET_CODE (*dest_loc) == MEM)
2971 subst_constants (&XEXP (*dest_loc, 0), insn, map);
2973 /* Check for the case of DEST a SUBREG, both it and the underlying
2974 register are less than one word, and the SUBREG has the wider mode.
2975 In the case, we are really setting the underlying register to the
2976 source converted to the mode of DEST. So indicate that. */
2977 if (GET_CODE (dest) == SUBREG
2978 && GET_MODE_SIZE (GET_MODE (dest)) <= UNITS_PER_WORD
2979 && GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest))) <= UNITS_PER_WORD
2980 && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
2981 <= GET_MODE_SIZE (GET_MODE (dest)))
2982 && (tem = gen_lowpart_if_possible (GET_MODE (SUBREG_REG (dest)),
2983 src)))
2984 src = tem, dest = SUBREG_REG (dest);
2986 /* If storing a recognizable value save it for later recording. */
2987 if ((map->num_sets < MAX_RECOG_OPERANDS)
2988 && (CONSTANT_P (src)
2989 || (GET_CODE (src) == REG
2990 && (REGNO (src) == VIRTUAL_INCOMING_ARGS_REGNUM
2991 || REGNO (src) == VIRTUAL_STACK_VARS_REGNUM))
2992 || (GET_CODE (src) == PLUS
2993 && GET_CODE (XEXP (src, 0)) == REG
2994 && (REGNO (XEXP (src, 0)) == VIRTUAL_INCOMING_ARGS_REGNUM
2995 || REGNO (XEXP (src, 0)) == VIRTUAL_STACK_VARS_REGNUM)
2996 && CONSTANT_P (XEXP (src, 1)))
2997 || GET_CODE (src) == COMPARE
2998 #ifdef HAVE_cc0
2999 || dest == cc0_rtx
3000 #endif
3001 || (dest == pc_rtx
3002 && (src == pc_rtx || GET_CODE (src) == RETURN
3003 || GET_CODE (src) == LABEL_REF))))
3005 /* Normally, this copy won't do anything. But, if SRC is a COMPARE
3006 it will cause us to save the COMPARE with any constants
3007 substituted, which is what we want for later. */
3008 map->equiv_sets[map->num_sets].equiv = copy_rtx (src);
3009 map->equiv_sets[map->num_sets++].dest = dest;
3012 return;
3014 default:
3015 break;
3018 format_ptr = GET_RTX_FORMAT (code);
3020 /* If the first operand is an expression, save its mode for later. */
3021 if (*format_ptr == 'e')
3022 op0_mode = GET_MODE (XEXP (x, 0));
3024 for (i = 0; i < GET_RTX_LENGTH (code); i++)
3026 switch (*format_ptr++)
3028 case '0':
3029 break;
3031 case 'e':
3032 if (XEXP (x, i))
3033 subst_constants (&XEXP (x, i), insn, map);
3034 break;
3036 case 'u':
3037 case 'i':
3038 case 's':
3039 case 'w':
3040 break;
3042 case 'E':
3043 if (XVEC (x, i) != NULL && XVECLEN (x, i) != 0)
3045 int j;
3046 for (j = 0; j < XVECLEN (x, i); j++)
3047 subst_constants (&XVECEXP (x, i, j), insn, map);
3049 break;
3051 default:
3052 abort ();
3056 /* If this is a commutative operation, move a constant to the second
3057 operand unless the second operand is already a CONST_INT. */
3058 if ((GET_RTX_CLASS (code) == 'c' || code == NE || code == EQ)
3059 && CONSTANT_P (XEXP (x, 0)) && GET_CODE (XEXP (x, 1)) != CONST_INT)
3061 rtx tem = XEXP (x, 0);
3062 validate_change (insn, &XEXP (x, 0), XEXP (x, 1), 1);
3063 validate_change (insn, &XEXP (x, 1), tem, 1);
3066 /* Simplify the expression in case we put in some constants. */
3067 switch (GET_RTX_CLASS (code))
3069 case '1':
3070 new = simplify_unary_operation (code, GET_MODE (x),
3071 XEXP (x, 0), op0_mode);
3072 break;
3074 case '<':
3076 enum machine_mode op_mode = GET_MODE (XEXP (x, 0));
3077 if (op_mode == VOIDmode)
3078 op_mode = GET_MODE (XEXP (x, 1));
3079 new = simplify_relational_operation (code, op_mode,
3080 XEXP (x, 0), XEXP (x, 1));
3081 #ifdef FLOAT_STORE_FLAG_VALUE
3082 if (new != 0 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
3083 new = ((new == const0_rtx) ? CONST0_RTX (GET_MODE (x))
3084 : CONST_DOUBLE_FROM_REAL_VALUE (FLOAT_STORE_FLAG_VALUE,
3085 GET_MODE (x)));
3086 #endif
3087 break;
3090 case '2':
3091 case 'c':
3092 new = simplify_binary_operation (code, GET_MODE (x),
3093 XEXP (x, 0), XEXP (x, 1));
3094 break;
3096 case 'b':
3097 case '3':
3098 new = simplify_ternary_operation (code, GET_MODE (x), op0_mode,
3099 XEXP (x, 0), XEXP (x, 1), XEXP (x, 2));
3100 break;
3103 if (new)
3104 validate_change (insn, loc, new, 1);
3107 /* Show that register modified no longer contain known constants. We are
3108 called from note_stores with parts of the new insn. */
3110 void
3111 mark_stores (dest, x)
3112 rtx dest;
3113 rtx x ATTRIBUTE_UNUSED;
3115 int regno = -1;
3116 enum machine_mode mode;
3118 /* DEST is always the innermost thing set, except in the case of
3119 SUBREGs of hard registers. */
3121 if (GET_CODE (dest) == REG)
3122 regno = REGNO (dest), mode = GET_MODE (dest);
3123 else if (GET_CODE (dest) == SUBREG && GET_CODE (SUBREG_REG (dest)) == REG)
3125 regno = REGNO (SUBREG_REG (dest)) + SUBREG_WORD (dest);
3126 mode = GET_MODE (SUBREG_REG (dest));
3129 if (regno >= 0)
3131 int last_reg = (regno >= FIRST_PSEUDO_REGISTER ? regno
3132 : regno + HARD_REGNO_NREGS (regno, mode) - 1);
3133 int i;
3135 /* Ignore virtual stack var or virtual arg register since those
3136 are handled separately. */
3137 if (regno != VIRTUAL_INCOMING_ARGS_REGNUM
3138 && regno != VIRTUAL_STACK_VARS_REGNUM)
3139 for (i = regno; i <= last_reg; i++)
3140 if (i < VARRAY_SIZE (global_const_equiv_varray))
3141 VARRAY_CONST_EQUIV (global_const_equiv_varray, i).rtx = 0;
3145 /* If any CONST expressions with RTX_INTEGRATED_P are present in the rtx
3146 pointed to by PX, they represent constants in the constant pool.
3147 Replace these with a new memory reference obtained from force_const_mem.
3148 Similarly, ADDRESS expressions with RTX_INTEGRATED_P represent the
3149 address of a constant pool entry. Replace them with the address of
3150 a new constant pool entry obtained from force_const_mem. */
3152 static void
3153 restore_constants (px)
3154 rtx *px;
3156 rtx x = *px;
3157 int i, j;
3158 char *fmt;
3160 if (x == 0)
3161 return;
3163 if (GET_CODE (x) == CONST_DOUBLE)
3165 /* We have to make a new CONST_DOUBLE to ensure that we account for
3166 it correctly. Using the old CONST_DOUBLE_MEM data is wrong. */
3167 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
3169 REAL_VALUE_TYPE d;
3171 REAL_VALUE_FROM_CONST_DOUBLE (d, x);
3172 *px = CONST_DOUBLE_FROM_REAL_VALUE (d, GET_MODE (x));
3174 else
3175 *px = immed_double_const (CONST_DOUBLE_LOW (x), CONST_DOUBLE_HIGH (x),
3176 VOIDmode);
3179 else if (RTX_INTEGRATED_P (x) && GET_CODE (x) == CONST)
3181 restore_constants (&XEXP (x, 0));
3182 *px = validize_mem (force_const_mem (GET_MODE (x), XEXP (x, 0)));
3184 else if (RTX_INTEGRATED_P (x) && GET_CODE (x) == SUBREG)
3186 /* This must be (subreg/i:M1 (const/i:M2 ...) 0). */
3187 rtx new = XEXP (SUBREG_REG (x), 0);
3189 restore_constants (&new);
3190 new = force_const_mem (GET_MODE (SUBREG_REG (x)), new);
3191 PUT_MODE (new, GET_MODE (x));
3192 *px = validize_mem (new);
3194 else if (RTX_INTEGRATED_P (x) && GET_CODE (x) == ADDRESS)
3196 rtx new = XEXP (force_const_mem (GET_MODE (XEXP (x, 0)),
3197 XEXP (XEXP (x, 0), 0)),
3200 #ifdef POINTERS_EXTEND_UNSIGNED
3201 if (GET_MODE (new) != GET_MODE (x))
3202 new = convert_memory_address (GET_MODE (x), new);
3203 #endif
3205 *px = new;
3207 else
3209 fmt = GET_RTX_FORMAT (GET_CODE (x));
3210 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (x)); i++)
3212 switch (*fmt++)
3214 case 'E':
3215 for (j = 0; j < XVECLEN (x, i); j++)
3216 restore_constants (&XVECEXP (x, i, j));
3217 break;
3219 case 'e':
3220 restore_constants (&XEXP (x, i));
3221 break;
3227 /* Given a pointer to some BLOCK node, if the BLOCK_ABSTRACT_ORIGIN for the
3228 given BLOCK node is NULL, set the BLOCK_ABSTRACT_ORIGIN for the node so
3229 that it points to the node itself, thus indicating that the node is its
3230 own (abstract) origin. Additionally, if the BLOCK_ABSTRACT_ORIGIN for
3231 the given node is NULL, recursively descend the decl/block tree which
3232 it is the root of, and for each other ..._DECL or BLOCK node contained
3233 therein whose DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also
3234 still NULL, set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN
3235 values to point to themselves. */
3237 static void
3238 set_block_origin_self (stmt)
3239 register tree stmt;
3241 if (BLOCK_ABSTRACT_ORIGIN (stmt) == NULL_TREE)
3243 BLOCK_ABSTRACT_ORIGIN (stmt) = stmt;
3246 register tree local_decl;
3248 for (local_decl = BLOCK_VARS (stmt);
3249 local_decl != NULL_TREE;
3250 local_decl = TREE_CHAIN (local_decl))
3251 set_decl_origin_self (local_decl); /* Potential recursion. */
3255 register tree subblock;
3257 for (subblock = BLOCK_SUBBLOCKS (stmt);
3258 subblock != NULL_TREE;
3259 subblock = BLOCK_CHAIN (subblock))
3260 set_block_origin_self (subblock); /* Recurse. */
3265 /* Given a pointer to some ..._DECL node, if the DECL_ABSTRACT_ORIGIN for
3266 the given ..._DECL node is NULL, set the DECL_ABSTRACT_ORIGIN for the
3267 node to so that it points to the node itself, thus indicating that the
3268 node represents its own (abstract) origin. Additionally, if the
3269 DECL_ABSTRACT_ORIGIN for the given node is NULL, recursively descend
3270 the decl/block tree of which the given node is the root of, and for
3271 each other ..._DECL or BLOCK node contained therein whose
3272 DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also still NULL,
3273 set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN values to
3274 point to themselves. */
3276 static void
3277 set_decl_origin_self (decl)
3278 register tree decl;
3280 if (DECL_ABSTRACT_ORIGIN (decl) == NULL_TREE)
3282 DECL_ABSTRACT_ORIGIN (decl) = decl;
3283 if (TREE_CODE (decl) == FUNCTION_DECL)
3285 register tree arg;
3287 for (arg = DECL_ARGUMENTS (decl); arg; arg = TREE_CHAIN (arg))
3288 DECL_ABSTRACT_ORIGIN (arg) = arg;
3289 if (DECL_INITIAL (decl) != NULL_TREE
3290 && DECL_INITIAL (decl) != error_mark_node)
3291 set_block_origin_self (DECL_INITIAL (decl));
3296 /* Given a pointer to some BLOCK node, and a boolean value to set the
3297 "abstract" flags to, set that value into the BLOCK_ABSTRACT flag for
3298 the given block, and for all local decls and all local sub-blocks
3299 (recursively) which are contained therein. */
3301 static void
3302 set_block_abstract_flags (stmt, setting)
3303 register tree stmt;
3304 register int setting;
3306 register tree local_decl;
3307 register tree subblock;
3309 BLOCK_ABSTRACT (stmt) = setting;
3311 for (local_decl = BLOCK_VARS (stmt);
3312 local_decl != NULL_TREE;
3313 local_decl = TREE_CHAIN (local_decl))
3314 set_decl_abstract_flags (local_decl, setting);
3316 for (subblock = BLOCK_SUBBLOCKS (stmt);
3317 subblock != NULL_TREE;
3318 subblock = BLOCK_CHAIN (subblock))
3319 set_block_abstract_flags (subblock, setting);
3322 /* Given a pointer to some ..._DECL node, and a boolean value to set the
3323 "abstract" flags to, set that value into the DECL_ABSTRACT flag for the
3324 given decl, and (in the case where the decl is a FUNCTION_DECL) also
3325 set the abstract flags for all of the parameters, local vars, local
3326 blocks and sub-blocks (recursively) to the same setting. */
3328 void
3329 set_decl_abstract_flags (decl, setting)
3330 register tree decl;
3331 register int setting;
3333 DECL_ABSTRACT (decl) = setting;
3334 if (TREE_CODE (decl) == FUNCTION_DECL)
3336 register tree arg;
3338 for (arg = DECL_ARGUMENTS (decl); arg; arg = TREE_CHAIN (arg))
3339 DECL_ABSTRACT (arg) = setting;
3340 if (DECL_INITIAL (decl) != NULL_TREE
3341 && DECL_INITIAL (decl) != error_mark_node)
3342 set_block_abstract_flags (DECL_INITIAL (decl), setting);
3346 /* Output the assembly language code for the function FNDECL
3347 from its DECL_SAVED_INSNS. Used for inline functions that are output
3348 at end of compilation instead of where they came in the source. */
3350 void
3351 output_inline_function (fndecl)
3352 tree fndecl;
3354 rtx head;
3355 rtx last;
3357 /* Things we allocate from here on are part of this function, not
3358 permanent. */
3359 temporary_allocation ();
3361 head = DECL_SAVED_INSNS (fndecl);
3362 current_function_decl = fndecl;
3364 /* This call is only used to initialize global variables. */
3365 init_function_start (fndecl, "lossage", 1);
3367 /* Redo parameter determinations in case the FUNCTION_...
3368 macros took machine-specific actions that need to be redone. */
3369 assign_parms (fndecl, 1);
3371 /* Set stack frame size. */
3372 assign_stack_local (BLKmode, DECL_FRAME_SIZE (fndecl), 0);
3374 /* The first is a bit of a lie (the array may be larger), but doesn't
3375 matter too much and it isn't worth saving the actual bound. */
3376 reg_rtx_no = regno_pointer_flag_length = MAX_REGNUM (head);
3377 regno_reg_rtx = (rtx *) INLINE_REGNO_REG_RTX (head);
3378 regno_pointer_flag = INLINE_REGNO_POINTER_FLAG (head);
3379 regno_pointer_align = INLINE_REGNO_POINTER_ALIGN (head);
3380 max_parm_reg = MAX_PARMREG (head);
3381 parm_reg_stack_loc = (rtx *) PARMREG_STACK_LOC (head);
3383 stack_slot_list = STACK_SLOT_LIST (head);
3384 forced_labels = FORCED_LABELS (head);
3386 if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_HAS_COMPUTED_JUMP)
3387 current_function_has_computed_jump = 1;
3389 if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_CALLS_ALLOCA)
3390 current_function_calls_alloca = 1;
3392 if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_CALLS_SETJMP)
3393 current_function_calls_setjmp = 1;
3395 if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_CALLS_LONGJMP)
3396 current_function_calls_longjmp = 1;
3398 if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_RETURNS_STRUCT)
3399 current_function_returns_struct = 1;
3401 if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_RETURNS_PCC_STRUCT)
3402 current_function_returns_pcc_struct = 1;
3404 if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_NEEDS_CONTEXT)
3405 current_function_needs_context = 1;
3407 if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_HAS_NONLOCAL_LABEL)
3408 current_function_has_nonlocal_label = 1;
3410 if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_RETURNS_POINTER)
3411 current_function_returns_pointer = 1;
3413 if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_USES_CONST_POOL)
3414 current_function_uses_const_pool = 1;
3416 if (FUNCTION_FLAGS (head) & FUNCTION_FLAGS_USES_PIC_OFFSET_TABLE)
3417 current_function_uses_pic_offset_table = 1;
3419 current_function_outgoing_args_size = OUTGOING_ARGS_SIZE (head);
3420 current_function_pops_args = POPS_ARGS (head);
3422 /* This is the only thing the expand_function_end call that uses to be here
3423 actually does and that call can cause problems. */
3424 immediate_size_expand--;
3426 /* Find last insn and rebuild the constant pool. */
3427 for (last = FIRST_PARM_INSN (head);
3428 NEXT_INSN (last); last = NEXT_INSN (last))
3430 if (GET_RTX_CLASS (GET_CODE (last)) == 'i')
3432 restore_constants (&PATTERN (last));
3433 restore_constants (&REG_NOTES (last));
3437 set_new_first_and_last_insn (FIRST_PARM_INSN (head), last);
3438 set_new_first_and_last_label_num (FIRST_LABELNO (head), LAST_LABELNO (head));
3440 /* We must have already output DWARF debugging information for the
3441 original (abstract) inline function declaration/definition, so
3442 we want to make sure that the debugging information we generate
3443 for this special instance of the inline function refers back to
3444 the information we already generated. To make sure that happens,
3445 we simply have to set the DECL_ABSTRACT_ORIGIN for the function
3446 node (and for all of the local ..._DECL nodes which are its children)
3447 so that they all point to themselves. */
3449 set_decl_origin_self (fndecl);
3451 /* We're not deferring this any longer. */
3452 DECL_DEFER_OUTPUT (fndecl) = 0;
3454 /* We can't inline this anymore. */
3455 DECL_INLINE (fndecl) = 0;
3457 /* Compile this function all the way down to assembly code. */
3458 rest_of_compilation (fndecl);
3460 current_function_decl = 0;