dwarf2out.c (add_bound_info): Don't crash on an unexpanded SAVE_EXPR.
[gcc.git] / gcc / integrate.c
1 /* Procedure integration for GNU CC.
2 Copyright (C) 1988, 1991, 1993, 1994, 1995, 1996, 1997, 1998,
3 1999, 2000 Free Software Foundation, Inc.
4 Contributed by Michael Tiemann (tiemann@cygnus.com)
5
6 This file is part of GNU CC.
7
8 GNU CC is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
12
13 GNU CC is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with GNU CC; see the file COPYING. If not, write to
20 the Free Software Foundation, 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
22
23
24 #include "config.h"
25 #include "system.h"
26
27 #include "rtl.h"
28 #include "tree.h"
29 #include "tm_p.h"
30 #include "regs.h"
31 #include "flags.h"
32 #include "insn-config.h"
33 #include "insn-flags.h"
34 #include "expr.h"
35 #include "output.h"
36 #include "recog.h"
37 #include "integrate.h"
38 #include "real.h"
39 #include "except.h"
40 #include "function.h"
41 #include "toplev.h"
42 #include "intl.h"
43 #include "loop.h"
44
45 #include "obstack.h"
46 #define obstack_chunk_alloc xmalloc
47 #define obstack_chunk_free free
48
49 extern struct obstack *function_maybepermanent_obstack;
50
51 /* Similar, but round to the next highest integer that meets the
52 alignment. */
53 #define CEIL_ROUND(VALUE,ALIGN) (((VALUE) + (ALIGN) - 1) & ~((ALIGN)- 1))
54
55 /* Default max number of insns a function can have and still be inline.
56 This is overridden on RISC machines. */
57 #ifndef INTEGRATE_THRESHOLD
58 /* Inlining small functions might save more space then not inlining at
59 all. Assume 1 instruction for the call and 1.5 insns per argument. */
60 #define INTEGRATE_THRESHOLD(DECL) \
61 (optimize_size \
62 ? (1 + (3 * list_length (DECL_ARGUMENTS (DECL))) / 2) \
63 : (8 * (8 + list_length (DECL_ARGUMENTS (DECL)))))
64 #endif
65
66 /* Decide whether a function with a target specific attribute
67 attached can be inlined. By default we disallow this. */
68 #ifndef FUNCTION_ATTRIBUTE_INLINABLE_P
69 #define FUNCTION_ATTRIBUTE_INLINABLE_P(FNDECL) 0
70 #endif
71 \f
72 static rtvec initialize_for_inline PARAMS ((tree));
73 static void note_modified_parmregs PARAMS ((rtx, rtx, void *));
74 static void integrate_parm_decls PARAMS ((tree, struct inline_remap *,
75 rtvec));
76 static tree integrate_decl_tree PARAMS ((tree,
77 struct inline_remap *));
78 static void subst_constants PARAMS ((rtx *, rtx,
79 struct inline_remap *, int));
80 static void set_block_origin_self PARAMS ((tree));
81 static void set_block_abstract_flags PARAMS ((tree, int));
82 static void process_reg_param PARAMS ((struct inline_remap *, rtx,
83 rtx));
84 void set_decl_abstract_flags PARAMS ((tree, int));
85 static rtx expand_inline_function_eh_labelmap PARAMS ((rtx));
86 static void mark_stores PARAMS ((rtx, rtx, void *));
87 static void save_parm_insns PARAMS ((rtx, rtx));
88 static void copy_insn_list PARAMS ((rtx, struct inline_remap *,
89 rtx));
90 static int compare_blocks PARAMS ((const PTR, const PTR));
91 static int find_block PARAMS ((const PTR, const PTR));
92
93 /* The maximum number of instructions accepted for inlining a
94 function. Increasing values mean more agressive inlining.
95 This affects currently only functions explicitly marked as
96 inline (or methods defined within the class definition for C++).
97 The default value of 10000 is arbitrary but high to match the
98 previously unlimited gcc capabilities. */
99
100 int inline_max_insns = 10000;
101
102 /* Used by copy_rtx_and_substitute; this indicates whether the function is
103 called for the purpose of inlining or some other purpose (i.e. loop
104 unrolling). This affects how constant pool references are handled.
105 This variable contains the FUNCTION_DECL for the inlined function. */
106 static struct function *inlining = 0;
107 \f
108 /* Returns the Ith entry in the label_map contained in MAP. If the
109 Ith entry has not yet been set, return a fresh label. This function
110 performs a lazy initialization of label_map, thereby avoiding huge memory
111 explosions when the label_map gets very large. */
112
113 rtx
114 get_label_from_map (map, i)
115 struct inline_remap *map;
116 int i;
117 {
118 rtx x = map->label_map[i];
119
120 if (x == NULL_RTX)
121 x = map->label_map[i] = gen_label_rtx();
122
123 return x;
124 }
125
126 /* Zero if the current function (whose FUNCTION_DECL is FNDECL)
127 is safe and reasonable to integrate into other functions.
128 Nonzero means value is a warning msgid with a single %s
129 for the function's name. */
130
131 const char *
132 function_cannot_inline_p (fndecl)
133 register tree fndecl;
134 {
135 register rtx insn;
136 tree last = tree_last (TYPE_ARG_TYPES (TREE_TYPE (fndecl)));
137
138 /* For functions marked as inline increase the maximum size to
139 inline_max_insns (-finline-limit-<n>). For regular functions
140 use the limit given by INTEGRATE_THRESHOLD. */
141
142 int max_insns = (DECL_INLINE (fndecl))
143 ? (inline_max_insns
144 + 8 * list_length (DECL_ARGUMENTS (fndecl)))
145 : INTEGRATE_THRESHOLD (fndecl);
146
147 register int ninsns = 0;
148 register tree parms;
149 rtx result;
150
151 /* No inlines with varargs. */
152 if ((last && TREE_VALUE (last) != void_type_node)
153 || current_function_varargs)
154 return N_("varargs function cannot be inline");
155
156 if (current_function_calls_alloca)
157 return N_("function using alloca cannot be inline");
158
159 if (current_function_calls_setjmp)
160 return N_("function using setjmp cannot be inline");
161
162 if (current_function_contains_functions)
163 return N_("function with nested functions cannot be inline");
164
165 if (forced_labels)
166 return
167 N_("function with label addresses used in initializers cannot inline");
168
169 if (current_function_cannot_inline)
170 return current_function_cannot_inline;
171
172 /* If its not even close, don't even look. */
173 if (get_max_uid () > 3 * max_insns)
174 return N_("function too large to be inline");
175
176 #if 0
177 /* Don't inline functions which do not specify a function prototype and
178 have BLKmode argument or take the address of a parameter. */
179 for (parms = DECL_ARGUMENTS (fndecl); parms; parms = TREE_CHAIN (parms))
180 {
181 if (TYPE_MODE (TREE_TYPE (parms)) == BLKmode)
182 TREE_ADDRESSABLE (parms) = 1;
183 if (last == NULL_TREE && TREE_ADDRESSABLE (parms))
184 return N_("no prototype, and parameter address used; cannot be inline");
185 }
186 #endif
187
188 /* We can't inline functions that return structures
189 the old-fashioned PCC way, copying into a static block. */
190 if (current_function_returns_pcc_struct)
191 return N_("inline functions not supported for this return value type");
192
193 /* We can't inline functions that return structures of varying size. */
194 if (TREE_CODE (TREE_TYPE (TREE_TYPE (fndecl))) != VOID_TYPE
195 && int_size_in_bytes (TREE_TYPE (TREE_TYPE (fndecl))) < 0)
196 return N_("function with varying-size return value cannot be inline");
197
198 /* Cannot inline a function with a varying size argument or one that
199 receives a transparent union. */
200 for (parms = DECL_ARGUMENTS (fndecl); parms; parms = TREE_CHAIN (parms))
201 {
202 if (int_size_in_bytes (TREE_TYPE (parms)) < 0)
203 return N_("function with varying-size parameter cannot be inline");
204 else if (TYPE_TRANSPARENT_UNION (TREE_TYPE (parms)))
205 return N_("function with transparent unit parameter cannot be inline");
206 }
207
208 if (get_max_uid () > max_insns)
209 {
210 for (ninsns = 0, insn = get_first_nonparm_insn ();
211 insn && ninsns < max_insns;
212 insn = NEXT_INSN (insn))
213 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
214 ninsns++;
215
216 if (ninsns >= max_insns)
217 return N_("function too large to be inline");
218 }
219
220 /* We will not inline a function which uses computed goto. The addresses of
221 its local labels, which may be tucked into global storage, are of course
222 not constant across instantiations, which causes unexpected behaviour. */
223 if (current_function_has_computed_jump)
224 return N_("function with computed jump cannot inline");
225
226 /* We cannot inline a nested function that jumps to a nonlocal label. */
227 if (current_function_has_nonlocal_goto)
228 return N_("function with nonlocal goto cannot be inline");
229
230 /* This is a hack, until the inliner is taught about eh regions at
231 the start of the function. */
232 for (insn = get_insns ();
233 insn
234 && ! (GET_CODE (insn) == NOTE
235 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_FUNCTION_BEG);
236 insn = NEXT_INSN (insn))
237 {
238 if (insn && GET_CODE (insn) == NOTE
239 && NOTE_LINE_NUMBER (insn) == NOTE_INSN_EH_REGION_BEG)
240 return N_("function with complex parameters cannot be inline");
241 }
242
243 /* We can't inline functions that return a PARALLEL rtx. */
244 result = DECL_RTL (DECL_RESULT (fndecl));
245 if (result && GET_CODE (result) == PARALLEL)
246 return N_("inline functions not supported for this return value type");
247
248 /* If the function has a target specific attribute attached to it,
249 then we assume that we should not inline it. This can be overriden
250 by the target if it defines FUNCTION_ATTRIBUTE_INLINABLE_P. */
251 if (DECL_MACHINE_ATTRIBUTES (fndecl)
252 && ! FUNCTION_ATTRIBUTE_INLINABLE_P (fndecl))
253 return N_("function with target specific attribute(s) cannot be inlined");
254
255 return NULL;
256 }
257 \f
258 /* Map pseudo reg number into the PARM_DECL for the parm living in the reg.
259 Zero for a reg that isn't a parm's home.
260 Only reg numbers less than max_parm_reg are mapped here. */
261 static tree *parmdecl_map;
262
263 /* In save_for_inline, nonzero if past the parm-initialization insns. */
264 static int in_nonparm_insns;
265 \f
266 /* Subroutine for `save_for_inline_nocopy'. Performs initialization
267 needed to save FNDECL's insns and info for future inline expansion. */
268
269 static rtvec
270 initialize_for_inline (fndecl)
271 tree fndecl;
272 {
273 int i;
274 rtvec arg_vector;
275 tree parms;
276
277 /* Clear out PARMDECL_MAP. It was allocated in the caller's frame. */
278 bzero ((char *) parmdecl_map, max_parm_reg * sizeof (tree));
279 arg_vector = rtvec_alloc (list_length (DECL_ARGUMENTS (fndecl)));
280
281 for (parms = DECL_ARGUMENTS (fndecl), i = 0;
282 parms;
283 parms = TREE_CHAIN (parms), i++)
284 {
285 rtx p = DECL_RTL (parms);
286
287 /* If we have (mem (addressof (mem ...))), use the inner MEM since
288 otherwise the copy_rtx call below will not unshare the MEM since
289 it shares ADDRESSOF. */
290 if (GET_CODE (p) == MEM && GET_CODE (XEXP (p, 0)) == ADDRESSOF
291 && GET_CODE (XEXP (XEXP (p, 0), 0)) == MEM)
292 p = XEXP (XEXP (p, 0), 0);
293
294 RTVEC_ELT (arg_vector, i) = p;
295
296 if (GET_CODE (p) == REG)
297 parmdecl_map[REGNO (p)] = parms;
298 else if (GET_CODE (p) == CONCAT)
299 {
300 rtx preal = gen_realpart (GET_MODE (XEXP (p, 0)), p);
301 rtx pimag = gen_imagpart (GET_MODE (preal), p);
302
303 if (GET_CODE (preal) == REG)
304 parmdecl_map[REGNO (preal)] = parms;
305 if (GET_CODE (pimag) == REG)
306 parmdecl_map[REGNO (pimag)] = parms;
307 }
308
309 /* This flag is cleared later
310 if the function ever modifies the value of the parm. */
311 TREE_READONLY (parms) = 1;
312 }
313
314 return arg_vector;
315 }
316
317 /* Copy NODE (which must be a DECL, but not a PARM_DECL). The DECL
318 originally was in the FROM_FN, but now it will be in the
319 TO_FN. */
320
321 tree
322 copy_decl_for_inlining (decl, from_fn, to_fn)
323 tree decl;
324 tree from_fn;
325 tree to_fn;
326 {
327 tree copy;
328
329 /* Copy the declaration. */
330 if (TREE_CODE (decl) == PARM_DECL || TREE_CODE (decl) == RESULT_DECL)
331 {
332 /* For a parameter, we must make an equivalent VAR_DECL, not a
333 new PARM_DECL. */
334 copy = build_decl (VAR_DECL, DECL_NAME (decl), TREE_TYPE (decl));
335 TREE_ADDRESSABLE (copy) = TREE_ADDRESSABLE (decl);
336 }
337 else
338 {
339 copy = copy_node (decl);
340 if (DECL_LANG_SPECIFIC (copy))
341 copy_lang_decl (copy);
342
343 /* TREE_ADDRESSABLE isn't used to indicate that a label's
344 address has been taken; it's for internal bookkeeping in
345 expand_goto_internal. */
346 if (TREE_CODE (copy) == LABEL_DECL)
347 TREE_ADDRESSABLE (copy) = 0;
348 }
349
350 /* Set the DECL_ABSTRACT_ORIGIN so the debugging routines know what
351 declaration inspired this copy. */
352 DECL_ABSTRACT_ORIGIN (copy) = DECL_ORIGIN (decl);
353
354 /* The new variable/label has no RTL, yet. */
355 DECL_RTL (copy) = NULL_RTX;
356
357 /* These args would always appear unused, if not for this. */
358 TREE_USED (copy) = 1;
359
360 /* Set the context for the new declaration. */
361 if (!DECL_CONTEXT (decl))
362 /* Globals stay global. */
363 ;
364 else if (DECL_CONTEXT (decl) != from_fn)
365 /* Things that weren't in the scope of the function we're inlining
366 from aren't in the scope we're inlining too, either. */
367 ;
368 else if (TREE_STATIC (decl))
369 /* Function-scoped static variables should say in the original
370 function. */
371 ;
372 else
373 /* Ordinary automatic local variables are now in the scope of the
374 new function. */
375 DECL_CONTEXT (copy) = to_fn;
376
377 return copy;
378 }
379
380 /* Make the insns and PARM_DECLs of the current function permanent
381 and record other information in DECL_SAVED_INSNS to allow inlining
382 of this function in subsequent calls.
383
384 This routine need not copy any insns because we are not going
385 to immediately compile the insns in the insn chain. There
386 are two cases when we would compile the insns for FNDECL:
387 (1) when FNDECL is expanded inline, and (2) when FNDECL needs to
388 be output at the end of other compilation, because somebody took
389 its address. In the first case, the insns of FNDECL are copied
390 as it is expanded inline, so FNDECL's saved insns are not
391 modified. In the second case, FNDECL is used for the last time,
392 so modifying the rtl is not a problem.
393
394 We don't have to worry about FNDECL being inline expanded by
395 other functions which are written at the end of compilation
396 because flag_no_inline is turned on when we begin writing
397 functions at the end of compilation. */
398
399 void
400 save_for_inline_nocopy (fndecl)
401 tree fndecl;
402 {
403 rtx insn;
404 rtvec argvec;
405 rtx first_nonparm_insn;
406
407 /* Set up PARMDECL_MAP which maps pseudo-reg number to its PARM_DECL.
408 Later we set TREE_READONLY to 0 if the parm is modified inside the fn.
409 Also set up ARG_VECTOR, which holds the unmodified DECL_RTX values
410 for the parms, prior to elimination of virtual registers.
411 These values are needed for substituting parms properly. */
412
413 parmdecl_map = (tree *) xmalloc (max_parm_reg * sizeof (tree));
414
415 /* Make and emit a return-label if we have not already done so. */
416
417 if (return_label == 0)
418 {
419 return_label = gen_label_rtx ();
420 emit_label (return_label);
421 }
422
423 argvec = initialize_for_inline (fndecl);
424
425 /* If there are insns that copy parms from the stack into pseudo registers,
426 those insns are not copied. `expand_inline_function' must
427 emit the correct code to handle such things. */
428
429 insn = get_insns ();
430 if (GET_CODE (insn) != NOTE)
431 abort ();
432
433 /* Get the insn which signals the end of parameter setup code. */
434 first_nonparm_insn = get_first_nonparm_insn ();
435
436 /* Now just scan the chain of insns to see what happens to our
437 PARM_DECLs. If a PARM_DECL is used but never modified, we
438 can substitute its rtl directly when expanding inline (and
439 perform constant folding when its incoming value is constant).
440 Otherwise, we have to copy its value into a new register and track
441 the new register's life. */
442 in_nonparm_insns = 0;
443 save_parm_insns (insn, first_nonparm_insn);
444
445 /* We have now allocated all that needs to be allocated permanently
446 on the rtx obstack. Set our high-water mark, so that we
447 can free the rest of this when the time comes. */
448
449 preserve_data ();
450
451 cfun->inl_max_label_num = max_label_num ();
452 cfun->inl_last_parm_insn = cfun->x_last_parm_insn;
453 cfun->original_arg_vector = argvec;
454 cfun->original_decl_initial = DECL_INITIAL (fndecl);
455 DECL_SAVED_INSNS (fndecl) = cfun;
456
457 /* Clean up. */
458 free (parmdecl_map);
459 }
460
461 /* Scan the chain of insns to see what happens to our PARM_DECLs. If a
462 PARM_DECL is used but never modified, we can substitute its rtl directly
463 when expanding inline (and perform constant folding when its incoming
464 value is constant). Otherwise, we have to copy its value into a new
465 register and track the new register's life. */
466
467 static void
468 save_parm_insns (insn, first_nonparm_insn)
469 rtx insn;
470 rtx first_nonparm_insn;
471 {
472 if (insn == NULL_RTX)
473 return;
474
475 for (insn = NEXT_INSN (insn); insn; insn = NEXT_INSN (insn))
476 {
477 if (insn == first_nonparm_insn)
478 in_nonparm_insns = 1;
479
480 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i')
481 {
482 /* Record what interesting things happen to our parameters. */
483 note_stores (PATTERN (insn), note_modified_parmregs, NULL);
484
485 /* If this is a CALL_PLACEHOLDER insn then we need to look into the
486 three attached sequences: normal call, sibling call and tail
487 recursion. */
488 if (GET_CODE (insn) == CALL_INSN
489 && GET_CODE (PATTERN (insn)) == CALL_PLACEHOLDER)
490 {
491 int i;
492
493 for (i = 0; i < 3; i++)
494 save_parm_insns (XEXP (PATTERN (insn), i),
495 first_nonparm_insn);
496 }
497 }
498 }
499 }
500 \f
501 /* Note whether a parameter is modified or not. */
502
503 static void
504 note_modified_parmregs (reg, x, data)
505 rtx reg;
506 rtx x ATTRIBUTE_UNUSED;
507 void *data ATTRIBUTE_UNUSED;
508 {
509 if (GET_CODE (reg) == REG && in_nonparm_insns
510 && REGNO (reg) < max_parm_reg
511 && REGNO (reg) >= FIRST_PSEUDO_REGISTER
512 && parmdecl_map[REGNO (reg)] != 0)
513 TREE_READONLY (parmdecl_map[REGNO (reg)]) = 0;
514 }
515
516 /* Unfortunately, we need a global copy of const_equiv map for communication
517 with a function called from note_stores. Be *very* careful that this
518 is used properly in the presence of recursion. */
519
520 varray_type global_const_equiv_varray;
521 \f
522 #define FIXED_BASE_PLUS_P(X) \
523 (GET_CODE (X) == PLUS && GET_CODE (XEXP (X, 1)) == CONST_INT \
524 && GET_CODE (XEXP (X, 0)) == REG \
525 && REGNO (XEXP (X, 0)) >= FIRST_VIRTUAL_REGISTER \
526 && REGNO (XEXP (X, 0)) <= LAST_VIRTUAL_REGISTER)
527
528 /* Called to set up a mapping for the case where a parameter is in a
529 register. If it is read-only and our argument is a constant, set up the
530 constant equivalence.
531
532 If LOC is REG_USERVAR_P, the usual case, COPY must also have that flag set
533 if it is a register.
534
535 Also, don't allow hard registers here; they might not be valid when
536 substituted into insns. */
537 static void
538 process_reg_param (map, loc, copy)
539 struct inline_remap *map;
540 rtx loc, copy;
541 {
542 if ((GET_CODE (copy) != REG && GET_CODE (copy) != SUBREG)
543 || (GET_CODE (copy) == REG && REG_USERVAR_P (loc)
544 && ! REG_USERVAR_P (copy))
545 || (GET_CODE (copy) == REG
546 && REGNO (copy) < FIRST_PSEUDO_REGISTER))
547 {
548 rtx temp = copy_to_mode_reg (GET_MODE (loc), copy);
549 REG_USERVAR_P (temp) = REG_USERVAR_P (loc);
550 if (CONSTANT_P (copy) || FIXED_BASE_PLUS_P (copy))
551 SET_CONST_EQUIV_DATA (map, temp, copy, CONST_AGE_PARM);
552 copy = temp;
553 }
554 map->reg_map[REGNO (loc)] = copy;
555 }
556
557 /* Used by duplicate_eh_handlers to map labels for the exception table */
558 static struct inline_remap *eif_eh_map;
559
560 static rtx
561 expand_inline_function_eh_labelmap (label)
562 rtx label;
563 {
564 int index = CODE_LABEL_NUMBER (label);
565 return get_label_from_map (eif_eh_map, index);
566 }
567
568 /* Compare two BLOCKs for qsort. The key we sort on is the
569 BLOCK_ABSTRACT_ORIGIN of the blocks. */
570
571 static int
572 compare_blocks (v1, v2)
573 const PTR v1;
574 const PTR v2;
575 {
576 tree b1 = *((const tree *) v1);
577 tree b2 = *((const tree *) v2);
578
579 return ((char *) BLOCK_ABSTRACT_ORIGIN (b1)
580 - (char *) BLOCK_ABSTRACT_ORIGIN (b2));
581 }
582
583 /* Compare two BLOCKs for bsearch. The first pointer corresponds to
584 an original block; the second to a remapped equivalent. */
585
586 static int
587 find_block (v1, v2)
588 const PTR v1;
589 const PTR v2;
590 {
591 const union tree_node *b1 = (const union tree_node *) v1;
592 tree b2 = *((const tree *) v2);
593
594 return ((const char *) b1 - (char *) BLOCK_ABSTRACT_ORIGIN (b2));
595 }
596
597 /* Integrate the procedure defined by FNDECL. Note that this function
598 may wind up calling itself. Since the static variables are not
599 reentrant, we do not assign them until after the possibility
600 of recursion is eliminated.
601
602 If IGNORE is nonzero, do not produce a value.
603 Otherwise store the value in TARGET if it is nonzero and that is convenient.
604
605 Value is:
606 (rtx)-1 if we could not substitute the function
607 0 if we substituted it and it does not produce a value
608 else an rtx for where the value is stored. */
609
610 rtx
611 expand_inline_function (fndecl, parms, target, ignore, type,
612 structure_value_addr)
613 tree fndecl, parms;
614 rtx target;
615 int ignore;
616 tree type;
617 rtx structure_value_addr;
618 {
619 struct function *inlining_previous;
620 struct function *inl_f = DECL_SAVED_INSNS (fndecl);
621 tree formal, actual, block;
622 rtx parm_insns = inl_f->emit->x_first_insn;
623 rtx insns = (inl_f->inl_last_parm_insn
624 ? NEXT_INSN (inl_f->inl_last_parm_insn)
625 : parm_insns);
626 tree *arg_trees;
627 rtx *arg_vals;
628 int max_regno;
629 register int i;
630 int min_labelno = inl_f->emit->x_first_label_num;
631 int max_labelno = inl_f->inl_max_label_num;
632 int nargs;
633 rtx loc;
634 rtx stack_save = 0;
635 rtx temp;
636 struct inline_remap *map = 0;
637 #ifdef HAVE_cc0
638 rtx cc0_insn = 0;
639 #endif
640 rtvec arg_vector = (rtvec) inl_f->original_arg_vector;
641 rtx static_chain_value = 0;
642 int inl_max_uid;
643
644 /* The pointer used to track the true location of the memory used
645 for MAP->LABEL_MAP. */
646 rtx *real_label_map = 0;
647
648 /* Allow for equivalences of the pseudos we make for virtual fp and ap. */
649 max_regno = inl_f->emit->x_reg_rtx_no + 3;
650 if (max_regno < FIRST_PSEUDO_REGISTER)
651 abort ();
652
653 nargs = list_length (DECL_ARGUMENTS (fndecl));
654
655 if (cfun->preferred_stack_boundary < inl_f->preferred_stack_boundary)
656 cfun->preferred_stack_boundary = inl_f->preferred_stack_boundary;
657
658 /* Check that the parms type match and that sufficient arguments were
659 passed. Since the appropriate conversions or default promotions have
660 already been applied, the machine modes should match exactly. */
661
662 for (formal = DECL_ARGUMENTS (fndecl), actual = parms;
663 formal;
664 formal = TREE_CHAIN (formal), actual = TREE_CHAIN (actual))
665 {
666 tree arg;
667 enum machine_mode mode;
668
669 if (actual == 0)
670 return (rtx) (HOST_WIDE_INT) -1;
671
672 arg = TREE_VALUE (actual);
673 mode = TYPE_MODE (DECL_ARG_TYPE (formal));
674
675 if (mode != TYPE_MODE (TREE_TYPE (arg))
676 /* If they are block mode, the types should match exactly.
677 They don't match exactly if TREE_TYPE (FORMAL) == ERROR_MARK_NODE,
678 which could happen if the parameter has incomplete type. */
679 || (mode == BLKmode
680 && (TYPE_MAIN_VARIANT (TREE_TYPE (arg))
681 != TYPE_MAIN_VARIANT (TREE_TYPE (formal)))))
682 return (rtx) (HOST_WIDE_INT) -1;
683 }
684
685 /* Extra arguments are valid, but will be ignored below, so we must
686 evaluate them here for side-effects. */
687 for (; actual; actual = TREE_CHAIN (actual))
688 expand_expr (TREE_VALUE (actual), const0_rtx,
689 TYPE_MODE (TREE_TYPE (TREE_VALUE (actual))), 0);
690
691 /* Expand the function arguments. Do this first so that any
692 new registers get created before we allocate the maps. */
693
694 arg_vals = (rtx *) xmalloc (nargs * sizeof (rtx));
695 arg_trees = (tree *) xmalloc (nargs * sizeof (tree));
696
697 for (formal = DECL_ARGUMENTS (fndecl), actual = parms, i = 0;
698 formal;
699 formal = TREE_CHAIN (formal), actual = TREE_CHAIN (actual), i++)
700 {
701 /* Actual parameter, converted to the type of the argument within the
702 function. */
703 tree arg = convert (TREE_TYPE (formal), TREE_VALUE (actual));
704 /* Mode of the variable used within the function. */
705 enum machine_mode mode = TYPE_MODE (TREE_TYPE (formal));
706 int invisiref = 0;
707
708 arg_trees[i] = arg;
709 loc = RTVEC_ELT (arg_vector, i);
710
711 /* If this is an object passed by invisible reference, we copy the
712 object into a stack slot and save its address. If this will go
713 into memory, we do nothing now. Otherwise, we just expand the
714 argument. */
715 if (GET_CODE (loc) == MEM && GET_CODE (XEXP (loc, 0)) == REG
716 && REGNO (XEXP (loc, 0)) > LAST_VIRTUAL_REGISTER)
717 {
718 rtx stack_slot
719 = assign_stack_temp (TYPE_MODE (TREE_TYPE (arg)),
720 int_size_in_bytes (TREE_TYPE (arg)), 1);
721 MEM_SET_IN_STRUCT_P (stack_slot,
722 AGGREGATE_TYPE_P (TREE_TYPE (arg)));
723
724 store_expr (arg, stack_slot, 0);
725
726 arg_vals[i] = XEXP (stack_slot, 0);
727 invisiref = 1;
728 }
729 else if (GET_CODE (loc) != MEM)
730 {
731 if (GET_MODE (loc) != TYPE_MODE (TREE_TYPE (arg)))
732 /* The mode if LOC and ARG can differ if LOC was a variable
733 that had its mode promoted via PROMOTED_MODE. */
734 arg_vals[i] = convert_modes (GET_MODE (loc),
735 TYPE_MODE (TREE_TYPE (arg)),
736 expand_expr (arg, NULL_RTX, mode,
737 EXPAND_SUM),
738 TREE_UNSIGNED (TREE_TYPE (formal)));
739 else
740 arg_vals[i] = expand_expr (arg, NULL_RTX, mode, EXPAND_SUM);
741 }
742 else
743 arg_vals[i] = 0;
744
745 if (arg_vals[i] != 0
746 && (! TREE_READONLY (formal)
747 /* If the parameter is not read-only, copy our argument through
748 a register. Also, we cannot use ARG_VALS[I] if it overlaps
749 TARGET in any way. In the inline function, they will likely
750 be two different pseudos, and `safe_from_p' will make all
751 sorts of smart assumptions about their not conflicting.
752 But if ARG_VALS[I] overlaps TARGET, these assumptions are
753 wrong, so put ARG_VALS[I] into a fresh register.
754 Don't worry about invisible references, since their stack
755 temps will never overlap the target. */
756 || (target != 0
757 && ! invisiref
758 && (GET_CODE (arg_vals[i]) == REG
759 || GET_CODE (arg_vals[i]) == SUBREG
760 || GET_CODE (arg_vals[i]) == MEM)
761 && reg_overlap_mentioned_p (arg_vals[i], target))
762 /* ??? We must always copy a SUBREG into a REG, because it might
763 get substituted into an address, and not all ports correctly
764 handle SUBREGs in addresses. */
765 || (GET_CODE (arg_vals[i]) == SUBREG)))
766 arg_vals[i] = copy_to_mode_reg (GET_MODE (loc), arg_vals[i]);
767
768 if (arg_vals[i] != 0 && GET_CODE (arg_vals[i]) == REG
769 && POINTER_TYPE_P (TREE_TYPE (formal)))
770 mark_reg_pointer (arg_vals[i],
771 TYPE_ALIGN (TREE_TYPE (TREE_TYPE (formal))));
772 }
773
774 /* Allocate the structures we use to remap things. */
775
776 map = (struct inline_remap *) xmalloc (sizeof (struct inline_remap));
777 map->fndecl = fndecl;
778
779 VARRAY_TREE_INIT (map->block_map, 10, "block_map");
780 map->reg_map = (rtx *) xcalloc (max_regno, sizeof (rtx));
781
782 /* We used to use alloca here, but the size of what it would try to
783 allocate would occasionally cause it to exceed the stack limit and
784 cause unpredictable core dumps. */
785 real_label_map
786 = (rtx *) xmalloc ((max_labelno) * sizeof (rtx));
787 map->label_map = real_label_map;
788
789 inl_max_uid = (inl_f->emit->x_cur_insn_uid + 1);
790 map->insn_map = (rtx *) xcalloc (inl_max_uid, sizeof (rtx));
791 map->min_insnno = 0;
792 map->max_insnno = inl_max_uid;
793
794 map->integrating = 1;
795
796 /* const_equiv_varray maps pseudos in our routine to constants, so
797 it needs to be large enough for all our pseudos. This is the
798 number we are currently using plus the number in the called
799 routine, plus 15 for each arg, five to compute the virtual frame
800 pointer, and five for the return value. This should be enough
801 for most cases. We do not reference entries outside the range of
802 the map.
803
804 ??? These numbers are quite arbitrary and were obtained by
805 experimentation. At some point, we should try to allocate the
806 table after all the parameters are set up so we an more accurately
807 estimate the number of pseudos we will need. */
808
809 VARRAY_CONST_EQUIV_INIT (map->const_equiv_varray,
810 (max_reg_num ()
811 + (max_regno - FIRST_PSEUDO_REGISTER)
812 + 15 * nargs
813 + 10),
814 "expand_inline_function");
815 map->const_age = 0;
816
817 /* Record the current insn in case we have to set up pointers to frame
818 and argument memory blocks. If there are no insns yet, add a dummy
819 insn that can be used as an insertion point. */
820 map->insns_at_start = get_last_insn ();
821 if (map->insns_at_start == 0)
822 map->insns_at_start = emit_note (NULL_PTR, NOTE_INSN_DELETED);
823
824 map->regno_pointer_flag = inl_f->emit->regno_pointer_flag;
825 map->regno_pointer_align = inl_f->emit->regno_pointer_align;
826
827 /* Update the outgoing argument size to allow for those in the inlined
828 function. */
829 if (inl_f->outgoing_args_size > current_function_outgoing_args_size)
830 current_function_outgoing_args_size = inl_f->outgoing_args_size;
831
832 /* If the inline function needs to make PIC references, that means
833 that this function's PIC offset table must be used. */
834 if (inl_f->uses_pic_offset_table)
835 current_function_uses_pic_offset_table = 1;
836
837 /* If this function needs a context, set it up. */
838 if (inl_f->needs_context)
839 static_chain_value = lookup_static_chain (fndecl);
840
841 if (GET_CODE (parm_insns) == NOTE
842 && NOTE_LINE_NUMBER (parm_insns) > 0)
843 {
844 rtx note = emit_note (NOTE_SOURCE_FILE (parm_insns),
845 NOTE_LINE_NUMBER (parm_insns));
846 if (note)
847 RTX_INTEGRATED_P (note) = 1;
848 }
849
850 /* Process each argument. For each, set up things so that the function's
851 reference to the argument will refer to the argument being passed.
852 We only replace REG with REG here. Any simplifications are done
853 via const_equiv_map.
854
855 We make two passes: In the first, we deal with parameters that will
856 be placed into registers, since we need to ensure that the allocated
857 register number fits in const_equiv_map. Then we store all non-register
858 parameters into their memory location. */
859
860 /* Don't try to free temp stack slots here, because we may put one of the
861 parameters into a temp stack slot. */
862
863 for (i = 0; i < nargs; i++)
864 {
865 rtx copy = arg_vals[i];
866
867 loc = RTVEC_ELT (arg_vector, i);
868
869 /* There are three cases, each handled separately. */
870 if (GET_CODE (loc) == MEM && GET_CODE (XEXP (loc, 0)) == REG
871 && REGNO (XEXP (loc, 0)) > LAST_VIRTUAL_REGISTER)
872 {
873 /* This must be an object passed by invisible reference (it could
874 also be a variable-sized object, but we forbid inlining functions
875 with variable-sized arguments). COPY is the address of the
876 actual value (this computation will cause it to be copied). We
877 map that address for the register, noting the actual address as
878 an equivalent in case it can be substituted into the insns. */
879
880 if (GET_CODE (copy) != REG)
881 {
882 temp = copy_addr_to_reg (copy);
883 if (CONSTANT_P (copy) || FIXED_BASE_PLUS_P (copy))
884 SET_CONST_EQUIV_DATA (map, temp, copy, CONST_AGE_PARM);
885 copy = temp;
886 }
887 map->reg_map[REGNO (XEXP (loc, 0))] = copy;
888 }
889 else if (GET_CODE (loc) == MEM)
890 {
891 /* This is the case of a parameter that lives in memory. It
892 will live in the block we allocate in the called routine's
893 frame that simulates the incoming argument area. Do nothing
894 with the parameter now; we will call store_expr later. In
895 this case, however, we must ensure that the virtual stack and
896 incoming arg rtx values are expanded now so that we can be
897 sure we have enough slots in the const equiv map since the
898 store_expr call can easily blow the size estimate. */
899 if (DECL_FRAME_SIZE (fndecl) != 0)
900 copy_rtx_and_substitute (virtual_stack_vars_rtx, map, 0);
901
902 if (DECL_SAVED_INSNS (fndecl)->args_size != 0)
903 copy_rtx_and_substitute (virtual_incoming_args_rtx, map, 0);
904 }
905 else if (GET_CODE (loc) == REG)
906 process_reg_param (map, loc, copy);
907 else if (GET_CODE (loc) == CONCAT)
908 {
909 rtx locreal = gen_realpart (GET_MODE (XEXP (loc, 0)), loc);
910 rtx locimag = gen_imagpart (GET_MODE (XEXP (loc, 0)), loc);
911 rtx copyreal = gen_realpart (GET_MODE (locreal), copy);
912 rtx copyimag = gen_imagpart (GET_MODE (locimag), copy);
913
914 process_reg_param (map, locreal, copyreal);
915 process_reg_param (map, locimag, copyimag);
916 }
917 else
918 abort ();
919 }
920
921 /* Tell copy_rtx_and_substitute to handle constant pool SYMBOL_REFs
922 specially. This function can be called recursively, so we need to
923 save the previous value. */
924 inlining_previous = inlining;
925 inlining = inl_f;
926
927 /* Now do the parameters that will be placed in memory. */
928
929 for (formal = DECL_ARGUMENTS (fndecl), i = 0;
930 formal; formal = TREE_CHAIN (formal), i++)
931 {
932 loc = RTVEC_ELT (arg_vector, i);
933
934 if (GET_CODE (loc) == MEM
935 /* Exclude case handled above. */
936 && ! (GET_CODE (XEXP (loc, 0)) == REG
937 && REGNO (XEXP (loc, 0)) > LAST_VIRTUAL_REGISTER))
938 {
939 rtx note = emit_note (DECL_SOURCE_FILE (formal),
940 DECL_SOURCE_LINE (formal));
941 if (note)
942 RTX_INTEGRATED_P (note) = 1;
943
944 /* Compute the address in the area we reserved and store the
945 value there. */
946 temp = copy_rtx_and_substitute (loc, map, 1);
947 subst_constants (&temp, NULL_RTX, map, 1);
948 apply_change_group ();
949 if (! memory_address_p (GET_MODE (temp), XEXP (temp, 0)))
950 temp = change_address (temp, VOIDmode, XEXP (temp, 0));
951 store_expr (arg_trees[i], temp, 0);
952 }
953 }
954
955 /* Deal with the places that the function puts its result.
956 We are driven by what is placed into DECL_RESULT.
957
958 Initially, we assume that we don't have anything special handling for
959 REG_FUNCTION_RETURN_VALUE_P. */
960
961 map->inline_target = 0;
962 loc = DECL_RTL (DECL_RESULT (fndecl));
963
964 if (TYPE_MODE (type) == VOIDmode)
965 /* There is no return value to worry about. */
966 ;
967 else if (GET_CODE (loc) == MEM)
968 {
969 if (GET_CODE (XEXP (loc, 0)) == ADDRESSOF)
970 {
971 temp = copy_rtx_and_substitute (loc, map, 1);
972 subst_constants (&temp, NULL_RTX, map, 1);
973 apply_change_group ();
974 target = temp;
975 }
976 else
977 {
978 if (! structure_value_addr
979 || ! aggregate_value_p (DECL_RESULT (fndecl)))
980 abort ();
981
982 /* Pass the function the address in which to return a structure
983 value. Note that a constructor can cause someone to call us
984 with STRUCTURE_VALUE_ADDR, but the initialization takes place
985 via the first parameter, rather than the struct return address.
986
987 We have two cases: If the address is a simple register
988 indirect, use the mapping mechanism to point that register to
989 our structure return address. Otherwise, store the structure
990 return value into the place that it will be referenced from. */
991
992 if (GET_CODE (XEXP (loc, 0)) == REG)
993 {
994 temp = force_operand (structure_value_addr, NULL_RTX);
995 temp = force_reg (Pmode, temp);
996 map->reg_map[REGNO (XEXP (loc, 0))] = temp;
997
998 if (CONSTANT_P (structure_value_addr)
999 || GET_CODE (structure_value_addr) == ADDRESSOF
1000 || (GET_CODE (structure_value_addr) == PLUS
1001 && (XEXP (structure_value_addr, 0)
1002 == virtual_stack_vars_rtx)
1003 && (GET_CODE (XEXP (structure_value_addr, 1))
1004 == CONST_INT)))
1005 {
1006 SET_CONST_EQUIV_DATA (map, temp, structure_value_addr,
1007 CONST_AGE_PARM);
1008 }
1009 }
1010 else
1011 {
1012 temp = copy_rtx_and_substitute (loc, map, 1);
1013 subst_constants (&temp, NULL_RTX, map, 0);
1014 apply_change_group ();
1015 emit_move_insn (temp, structure_value_addr);
1016 }
1017 }
1018 }
1019 else if (ignore)
1020 /* We will ignore the result value, so don't look at its structure.
1021 Note that preparations for an aggregate return value
1022 do need to be made (above) even if it will be ignored. */
1023 ;
1024 else if (GET_CODE (loc) == REG)
1025 {
1026 /* The function returns an object in a register and we use the return
1027 value. Set up our target for remapping. */
1028
1029 /* Machine mode function was declared to return. */
1030 enum machine_mode departing_mode = TYPE_MODE (type);
1031 /* (Possibly wider) machine mode it actually computes
1032 (for the sake of callers that fail to declare it right).
1033 We have to use the mode of the result's RTL, rather than
1034 its type, since expand_function_start may have promoted it. */
1035 enum machine_mode arriving_mode
1036 = GET_MODE (DECL_RTL (DECL_RESULT (fndecl)));
1037 rtx reg_to_map;
1038
1039 /* Don't use MEMs as direct targets because on some machines
1040 substituting a MEM for a REG makes invalid insns.
1041 Let the combiner substitute the MEM if that is valid. */
1042 if (target == 0 || GET_CODE (target) != REG
1043 || GET_MODE (target) != departing_mode)
1044 {
1045 /* Don't make BLKmode registers. If this looks like
1046 a BLKmode object being returned in a register, get
1047 the mode from that, otherwise abort. */
1048 if (departing_mode == BLKmode)
1049 {
1050 if (REG == GET_CODE (DECL_RTL (DECL_RESULT (fndecl))))
1051 {
1052 departing_mode = GET_MODE (DECL_RTL (DECL_RESULT (fndecl)));
1053 arriving_mode = departing_mode;
1054 }
1055 else
1056 abort();
1057 }
1058
1059 target = gen_reg_rtx (departing_mode);
1060 }
1061
1062 /* If function's value was promoted before return,
1063 avoid machine mode mismatch when we substitute INLINE_TARGET.
1064 But TARGET is what we will return to the caller. */
1065 if (arriving_mode != departing_mode)
1066 {
1067 /* Avoid creating a paradoxical subreg wider than
1068 BITS_PER_WORD, since that is illegal. */
1069 if (GET_MODE_BITSIZE (arriving_mode) > BITS_PER_WORD)
1070 {
1071 if (!TRULY_NOOP_TRUNCATION (GET_MODE_BITSIZE (departing_mode),
1072 GET_MODE_BITSIZE (arriving_mode)))
1073 /* Maybe could be handled by using convert_move () ? */
1074 abort ();
1075 reg_to_map = gen_reg_rtx (arriving_mode);
1076 target = gen_lowpart (departing_mode, reg_to_map);
1077 }
1078 else
1079 reg_to_map = gen_rtx_SUBREG (arriving_mode, target, 0);
1080 }
1081 else
1082 reg_to_map = target;
1083
1084 /* Usually, the result value is the machine's return register.
1085 Sometimes it may be a pseudo. Handle both cases. */
1086 if (REG_FUNCTION_VALUE_P (loc))
1087 map->inline_target = reg_to_map;
1088 else
1089 map->reg_map[REGNO (loc)] = reg_to_map;
1090 }
1091 else
1092 abort ();
1093
1094 /* Initialize label_map. get_label_from_map will actually make
1095 the labels. */
1096 bzero ((char *) &map->label_map [min_labelno],
1097 (max_labelno - min_labelno) * sizeof (rtx));
1098
1099 /* Make copies of the decls of the symbols in the inline function, so that
1100 the copies of the variables get declared in the current function. Set
1101 up things so that lookup_static_chain knows that to interpret registers
1102 in SAVE_EXPRs for TYPE_SIZEs as local. */
1103 inline_function_decl = fndecl;
1104 integrate_parm_decls (DECL_ARGUMENTS (fndecl), map, arg_vector);
1105 block = integrate_decl_tree (inl_f->original_decl_initial, map);
1106 BLOCK_ABSTRACT_ORIGIN (block) = DECL_ORIGIN (fndecl);
1107 inline_function_decl = 0;
1108
1109 /* Make a fresh binding contour that we can easily remove. Do this after
1110 expanding our arguments so cleanups are properly scoped. */
1111 expand_start_bindings_and_block (0, block);
1112
1113 /* Sort the block-map so that it will be easy to find remapped
1114 blocks later. */
1115 qsort (&VARRAY_TREE (map->block_map, 0),
1116 map->block_map->elements_used,
1117 sizeof (tree),
1118 compare_blocks);
1119
1120 /* Perform postincrements before actually calling the function. */
1121 emit_queue ();
1122
1123 /* Clean up stack so that variables might have smaller offsets. */
1124 do_pending_stack_adjust ();
1125
1126 /* Save a copy of the location of const_equiv_varray for
1127 mark_stores, called via note_stores. */
1128 global_const_equiv_varray = map->const_equiv_varray;
1129
1130 /* If the called function does an alloca, save and restore the
1131 stack pointer around the call. This saves stack space, but
1132 also is required if this inline is being done between two
1133 pushes. */
1134 if (inl_f->calls_alloca)
1135 emit_stack_save (SAVE_BLOCK, &stack_save, NULL_RTX);
1136
1137 /* Now copy the insns one by one. */
1138 copy_insn_list (insns, map, static_chain_value);
1139
1140 /* Restore the stack pointer if we saved it above. */
1141 if (inl_f->calls_alloca)
1142 emit_stack_restore (SAVE_BLOCK, stack_save, NULL_RTX);
1143
1144 if (! cfun->x_whole_function_mode_p)
1145 /* In statement-at-a-time mode, we just tell the front-end to add
1146 this block to the list of blocks at this binding level. We
1147 can't do it the way it's done for function-at-a-time mode the
1148 superblocks have not been created yet. */
1149 insert_block (block);
1150 else
1151 {
1152 BLOCK_CHAIN (block)
1153 = BLOCK_CHAIN (DECL_INITIAL (current_function_decl));
1154 BLOCK_CHAIN (DECL_INITIAL (current_function_decl)) = block;
1155 }
1156
1157 /* End the scope containing the copied formal parameter variables
1158 and copied LABEL_DECLs. We pass NULL_TREE for the variables list
1159 here so that expand_end_bindings will not check for unused
1160 variables. That's already been checked for when the inlined
1161 function was defined. */
1162 expand_end_bindings (NULL_TREE, 1, 1);
1163
1164 /* Must mark the line number note after inlined functions as a repeat, so
1165 that the test coverage code can avoid counting the call twice. This
1166 just tells the code to ignore the immediately following line note, since
1167 there already exists a copy of this note before the expanded inline call.
1168 This line number note is still needed for debugging though, so we can't
1169 delete it. */
1170 if (flag_test_coverage)
1171 emit_note (0, NOTE_INSN_REPEATED_LINE_NUMBER);
1172
1173 emit_line_note (input_filename, lineno);
1174
1175 /* If the function returns a BLKmode object in a register, copy it
1176 out of the temp register into a BLKmode memory object. */
1177 if (target
1178 && TYPE_MODE (TREE_TYPE (TREE_TYPE (fndecl))) == BLKmode
1179 && ! aggregate_value_p (TREE_TYPE (TREE_TYPE (fndecl))))
1180 target = copy_blkmode_from_reg (0, target, TREE_TYPE (TREE_TYPE (fndecl)));
1181
1182 if (structure_value_addr)
1183 {
1184 target = gen_rtx_MEM (TYPE_MODE (type),
1185 memory_address (TYPE_MODE (type),
1186 structure_value_addr));
1187 MEM_SET_IN_STRUCT_P (target, 1);
1188 }
1189
1190 /* Make sure we free the things we explicitly allocated with xmalloc. */
1191 if (real_label_map)
1192 free (real_label_map);
1193 VARRAY_FREE (map->const_equiv_varray);
1194 free (map->reg_map);
1195 VARRAY_FREE (map->block_map);
1196 free (map->insn_map);
1197 free (map);
1198 free (arg_vals);
1199 free (arg_trees);
1200
1201 inlining = inlining_previous;
1202
1203 return target;
1204 }
1205
1206 /* Make copies of each insn in the given list using the mapping
1207 computed in expand_inline_function. This function may call itself for
1208 insns containing sequences.
1209
1210 Copying is done in two passes, first the insns and then their REG_NOTES,
1211 just like save_for_inline.
1212
1213 If static_chain_value is non-zero, it represents the context-pointer
1214 register for the function. */
1215
1216 static void
1217 copy_insn_list (insns, map, static_chain_value)
1218 rtx insns;
1219 struct inline_remap *map;
1220 rtx static_chain_value;
1221 {
1222 register int i;
1223 rtx insn;
1224 rtx temp;
1225 rtx local_return_label = NULL_RTX;
1226 #ifdef HAVE_cc0
1227 rtx cc0_insn = 0;
1228 #endif
1229
1230 /* Copy the insns one by one. Do this in two passes, first the insns and
1231 then their REG_NOTES, just like save_for_inline. */
1232
1233 /* This loop is very similar to the loop in copy_loop_body in unroll.c. */
1234
1235 for (insn = insns; insn; insn = NEXT_INSN (insn))
1236 {
1237 rtx copy, pattern, set;
1238
1239 map->orig_asm_operands_vector = 0;
1240
1241 switch (GET_CODE (insn))
1242 {
1243 case INSN:
1244 pattern = PATTERN (insn);
1245 set = single_set (insn);
1246 copy = 0;
1247 if (GET_CODE (pattern) == USE
1248 && GET_CODE (XEXP (pattern, 0)) == REG
1249 && REG_FUNCTION_VALUE_P (XEXP (pattern, 0)))
1250 /* The (USE (REG n)) at return from the function should
1251 be ignored since we are changing (REG n) into
1252 inline_target. */
1253 break;
1254
1255 /* If the inline fn needs eh context, make sure that
1256 the current fn has one. */
1257 if (GET_CODE (pattern) == USE
1258 && find_reg_note (insn, REG_EH_CONTEXT, 0) != 0)
1259 get_eh_context ();
1260
1261 /* Ignore setting a function value that we don't want to use. */
1262 if (map->inline_target == 0
1263 && set != 0
1264 && GET_CODE (SET_DEST (set)) == REG
1265 && REG_FUNCTION_VALUE_P (SET_DEST (set)))
1266 {
1267 if (volatile_refs_p (SET_SRC (set)))
1268 {
1269 rtx new_set;
1270
1271 /* If we must not delete the source,
1272 load it into a new temporary. */
1273 copy = emit_insn (copy_rtx_and_substitute (pattern, map, 0));
1274
1275 new_set = single_set (copy);
1276 if (new_set == 0)
1277 abort ();
1278
1279 SET_DEST (new_set)
1280 = gen_reg_rtx (GET_MODE (SET_DEST (new_set)));
1281 }
1282 /* If the source and destination are the same and it
1283 has a note on it, keep the insn. */
1284 else if (rtx_equal_p (SET_DEST (set), SET_SRC (set))
1285 && REG_NOTES (insn) != 0)
1286 copy = emit_insn (copy_rtx_and_substitute (pattern, map, 0));
1287 else
1288 break;
1289 }
1290
1291 /* If this is setting the static chain rtx, omit it. */
1292 else if (static_chain_value != 0
1293 && set != 0
1294 && GET_CODE (SET_DEST (set)) == REG
1295 && rtx_equal_p (SET_DEST (set),
1296 static_chain_incoming_rtx))
1297 break;
1298
1299 /* If this is setting the static chain pseudo, set it from
1300 the value we want to give it instead. */
1301 else if (static_chain_value != 0
1302 && set != 0
1303 && rtx_equal_p (SET_SRC (set),
1304 static_chain_incoming_rtx))
1305 {
1306 rtx newdest = copy_rtx_and_substitute (SET_DEST (set), map, 1);
1307
1308 copy = emit_move_insn (newdest, static_chain_value);
1309 static_chain_value = 0;
1310 }
1311
1312 /* If this is setting the virtual stack vars register, this must
1313 be the code at the handler for a builtin longjmp. The value
1314 saved in the setjmp buffer will be the address of the frame
1315 we've made for this inlined instance within our frame. But we
1316 know the offset of that value so we can use it to reconstruct
1317 our virtual stack vars register from that value. If we are
1318 copying it from the stack pointer, leave it unchanged. */
1319 else if (set != 0
1320 && rtx_equal_p (SET_DEST (set), virtual_stack_vars_rtx))
1321 {
1322 HOST_WIDE_INT offset;
1323 temp = map->reg_map[REGNO (SET_DEST (set))];
1324 temp = VARRAY_CONST_EQUIV (map->const_equiv_varray,
1325 REGNO (temp)).rtx;
1326
1327 if (rtx_equal_p (temp, virtual_stack_vars_rtx))
1328 offset = 0;
1329 else if (GET_CODE (temp) == PLUS
1330 && rtx_equal_p (XEXP (temp, 0), virtual_stack_vars_rtx)
1331 && GET_CODE (XEXP (temp, 1)) == CONST_INT)
1332 offset = INTVAL (XEXP (temp, 1));
1333 else
1334 abort ();
1335
1336 if (rtx_equal_p (SET_SRC (set), stack_pointer_rtx))
1337 temp = SET_SRC (set);
1338 else
1339 temp = force_operand (plus_constant (SET_SRC (set),
1340 - offset),
1341 NULL_RTX);
1342
1343 copy = emit_move_insn (virtual_stack_vars_rtx, temp);
1344 }
1345
1346 else
1347 copy = emit_insn (copy_rtx_and_substitute (pattern, map, 0));
1348 /* REG_NOTES will be copied later. */
1349
1350 #ifdef HAVE_cc0
1351 /* If this insn is setting CC0, it may need to look at
1352 the insn that uses CC0 to see what type of insn it is.
1353 In that case, the call to recog via validate_change will
1354 fail. So don't substitute constants here. Instead,
1355 do it when we emit the following insn.
1356
1357 For example, see the pyr.md file. That machine has signed and
1358 unsigned compares. The compare patterns must check the
1359 following branch insn to see which what kind of compare to
1360 emit.
1361
1362 If the previous insn set CC0, substitute constants on it as
1363 well. */
1364 if (sets_cc0_p (PATTERN (copy)) != 0)
1365 cc0_insn = copy;
1366 else
1367 {
1368 if (cc0_insn)
1369 try_constants (cc0_insn, map);
1370 cc0_insn = 0;
1371 try_constants (copy, map);
1372 }
1373 #else
1374 try_constants (copy, map);
1375 #endif
1376 break;
1377
1378 case JUMP_INSN:
1379 if (GET_CODE (PATTERN (insn)) == RETURN
1380 || (GET_CODE (PATTERN (insn)) == PARALLEL
1381 && GET_CODE (XVECEXP (PATTERN (insn), 0, 0)) == RETURN))
1382 {
1383 if (local_return_label == 0)
1384 local_return_label = gen_label_rtx ();
1385 pattern = gen_jump (local_return_label);
1386 }
1387 else
1388 pattern = copy_rtx_and_substitute (PATTERN (insn), map, 0);
1389
1390 copy = emit_jump_insn (pattern);
1391
1392 #ifdef HAVE_cc0
1393 if (cc0_insn)
1394 try_constants (cc0_insn, map);
1395 cc0_insn = 0;
1396 #endif
1397 try_constants (copy, map);
1398
1399 /* If this used to be a conditional jump insn but whose branch
1400 direction is now know, we must do something special. */
1401 if (condjump_p (insn) && ! simplejump_p (insn) && map->last_pc_value)
1402 {
1403 #ifdef HAVE_cc0
1404 /* If the previous insn set cc0 for us, delete it. */
1405 if (sets_cc0_p (PREV_INSN (copy)))
1406 delete_insn (PREV_INSN (copy));
1407 #endif
1408
1409 /* If this is now a no-op, delete it. */
1410 if (map->last_pc_value == pc_rtx)
1411 {
1412 delete_insn (copy);
1413 copy = 0;
1414 }
1415 else
1416 /* Otherwise, this is unconditional jump so we must put a
1417 BARRIER after it. We could do some dead code elimination
1418 here, but jump.c will do it just as well. */
1419 emit_barrier ();
1420 }
1421 break;
1422
1423 case CALL_INSN:
1424 /* If this is a CALL_PLACEHOLDER insn then we need to copy the
1425 three attached sequences: normal call, sibling call and tail
1426 recursion. */
1427 if (GET_CODE (PATTERN (insn)) == CALL_PLACEHOLDER)
1428 {
1429 rtx sequence[3];
1430 rtx tail_label;
1431
1432 for (i = 0; i < 3; i++)
1433 {
1434 rtx seq;
1435
1436 sequence[i] = NULL_RTX;
1437 seq = XEXP (PATTERN (insn), i);
1438 if (seq)
1439 {
1440 start_sequence ();
1441 copy_insn_list (seq, map, static_chain_value);
1442 sequence[i] = get_insns ();
1443 end_sequence ();
1444 }
1445 }
1446
1447 /* Find the new tail recursion label.
1448 It will already be substituted into sequence[2]. */
1449 tail_label = copy_rtx_and_substitute (XEXP (PATTERN (insn), 3),
1450 map, 0);
1451
1452 copy = emit_call_insn (gen_rtx_CALL_PLACEHOLDER (VOIDmode,
1453 sequence[0],
1454 sequence[1],
1455 sequence[2],
1456 tail_label));
1457 break;
1458 }
1459
1460 pattern = copy_rtx_and_substitute (PATTERN (insn), map, 0);
1461 copy = emit_call_insn (pattern);
1462
1463 SIBLING_CALL_P (copy) = SIBLING_CALL_P (insn);
1464
1465 /* Because the USAGE information potentially contains objects other
1466 than hard registers, we need to copy it. */
1467
1468 CALL_INSN_FUNCTION_USAGE (copy)
1469 = copy_rtx_and_substitute (CALL_INSN_FUNCTION_USAGE (insn),
1470 map, 0);
1471
1472 #ifdef HAVE_cc0
1473 if (cc0_insn)
1474 try_constants (cc0_insn, map);
1475 cc0_insn = 0;
1476 #endif
1477 try_constants (copy, map);
1478
1479 /* Be lazy and assume CALL_INSNs clobber all hard registers. */
1480 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1481 VARRAY_CONST_EQUIV (map->const_equiv_varray, i).rtx = 0;
1482 break;
1483
1484 case CODE_LABEL:
1485 copy = emit_label (get_label_from_map (map,
1486 CODE_LABEL_NUMBER (insn)));
1487 LABEL_NAME (copy) = LABEL_NAME (insn);
1488 map->const_age++;
1489 break;
1490
1491 case BARRIER:
1492 copy = emit_barrier ();
1493 break;
1494
1495 case NOTE:
1496 /* NOTE_INSN_FUNCTION_END and NOTE_INSN_FUNCTION_BEG are
1497 discarded because it is important to have only one of
1498 each in the current function.
1499
1500 NOTE_INSN_DELETED notes aren't useful (save_for_inline
1501 deleted these in the copy used for continuing compilation,
1502 not the copy used for inlining).
1503
1504 NOTE_INSN_BASIC_BLOCK is discarded because the saved bb
1505 pointer (which will soon be dangling) confuses flow's
1506 attempts to preserve bb structures during the compilation
1507 of a function. */
1508
1509 if (NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_END
1510 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_FUNCTION_BEG
1511 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_DELETED
1512 && NOTE_LINE_NUMBER (insn) != NOTE_INSN_BASIC_BLOCK)
1513 {
1514 copy = emit_note (NOTE_SOURCE_FILE (insn),
1515 NOTE_LINE_NUMBER (insn));
1516 if (copy
1517 && (NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_BEG
1518 || NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_END))
1519 {
1520 rtx label
1521 = get_label_from_map (map, NOTE_EH_HANDLER (copy));
1522
1523 /* we have to duplicate the handlers for the original */
1524 if (NOTE_LINE_NUMBER (copy) == NOTE_INSN_EH_REGION_BEG)
1525 {
1526 /* We need to duplicate the handlers for the EH region
1527 and we need to indicate where the label map is */
1528 eif_eh_map = map;
1529 duplicate_eh_handlers (NOTE_EH_HANDLER (copy),
1530 CODE_LABEL_NUMBER (label),
1531 expand_inline_function_eh_labelmap);
1532 }
1533
1534 /* We have to forward these both to match the new exception
1535 region. */
1536 NOTE_EH_HANDLER (copy) = CODE_LABEL_NUMBER (label);
1537 }
1538 else if (copy
1539 && (NOTE_LINE_NUMBER (copy) == NOTE_INSN_BLOCK_BEG
1540 || NOTE_LINE_NUMBER (copy) == NOTE_INSN_BLOCK_END)
1541 && NOTE_BLOCK (insn))
1542 {
1543 tree *mapped_block_p;
1544
1545 mapped_block_p
1546 = (tree *) bsearch (NOTE_BLOCK (insn),
1547 &VARRAY_TREE (map->block_map, 0),
1548 map->block_map->elements_used,
1549 sizeof (tree),
1550 find_block);
1551
1552 if (!mapped_block_p)
1553 abort ();
1554 else
1555 NOTE_BLOCK (copy) = *mapped_block_p;
1556 }
1557 }
1558 else
1559 copy = 0;
1560 break;
1561
1562 default:
1563 abort ();
1564 }
1565
1566 if (copy)
1567 RTX_INTEGRATED_P (copy) = 1;
1568
1569 map->insn_map[INSN_UID (insn)] = copy;
1570 }
1571
1572 /* Now copy the REG_NOTES. Increment const_age, so that only constants
1573 from parameters can be substituted in. These are the only ones that
1574 are valid across the entire function. */
1575 map->const_age++;
1576 for (insn = insns; insn; insn = NEXT_INSN (insn))
1577 if (GET_RTX_CLASS (GET_CODE (insn)) == 'i'
1578 && map->insn_map[INSN_UID (insn)]
1579 && REG_NOTES (insn))
1580 {
1581 rtx tem = copy_rtx_and_substitute (REG_NOTES (insn), map, 0);
1582
1583 /* We must also do subst_constants, in case one of our parameters
1584 has const type and constant value. */
1585 subst_constants (&tem, NULL_RTX, map, 0);
1586 apply_change_group ();
1587 REG_NOTES (map->insn_map[INSN_UID (insn)]) = tem;
1588 }
1589
1590 if (local_return_label)
1591 emit_label (local_return_label);
1592 }
1593 \f
1594 /* Given a chain of PARM_DECLs, ARGS, copy each decl into a VAR_DECL,
1595 push all of those decls and give each one the corresponding home. */
1596
1597 static void
1598 integrate_parm_decls (args, map, arg_vector)
1599 tree args;
1600 struct inline_remap *map;
1601 rtvec arg_vector;
1602 {
1603 register tree tail;
1604 register int i;
1605
1606 for (tail = args, i = 0; tail; tail = TREE_CHAIN (tail), i++)
1607 {
1608 tree decl = copy_decl_for_inlining (tail, map->fndecl,
1609 current_function_decl);
1610 rtx new_decl_rtl
1611 = copy_rtx_and_substitute (RTVEC_ELT (arg_vector, i), map, 1);
1612
1613 /* We really should be setting DECL_INCOMING_RTL to something reasonable
1614 here, but that's going to require some more work. */
1615 /* DECL_INCOMING_RTL (decl) = ?; */
1616 /* Fully instantiate the address with the equivalent form so that the
1617 debugging information contains the actual register, instead of the
1618 virtual register. Do this by not passing an insn to
1619 subst_constants. */
1620 subst_constants (&new_decl_rtl, NULL_RTX, map, 1);
1621 apply_change_group ();
1622 DECL_RTL (decl) = new_decl_rtl;
1623 }
1624 }
1625
1626 /* Given a BLOCK node LET, push decls and levels so as to construct in the
1627 current function a tree of contexts isomorphic to the one that is given.
1628
1629 MAP, if nonzero, is a pointer to an inline_remap map which indicates how
1630 registers used in the DECL_RTL field should be remapped. If it is zero,
1631 no mapping is necessary. */
1632
1633 static tree
1634 integrate_decl_tree (let, map)
1635 tree let;
1636 struct inline_remap *map;
1637 {
1638 tree t;
1639 tree new_block;
1640 tree *next;
1641
1642 new_block = make_node (BLOCK);
1643 VARRAY_PUSH_TREE (map->block_map, new_block);
1644 next = &BLOCK_VARS (new_block);
1645
1646 for (t = BLOCK_VARS (let); t; t = TREE_CHAIN (t))
1647 {
1648 tree d;
1649
1650 push_obstacks_nochange ();
1651 saveable_allocation ();
1652 d = copy_decl_for_inlining (t, map->fndecl, current_function_decl);
1653 pop_obstacks ();
1654
1655 if (DECL_RTL (t) != 0)
1656 {
1657 DECL_RTL (d) = copy_rtx_and_substitute (DECL_RTL (t), map, 1);
1658
1659 /* Fully instantiate the address with the equivalent form so that the
1660 debugging information contains the actual register, instead of the
1661 virtual register. Do this by not passing an insn to
1662 subst_constants. */
1663 subst_constants (&DECL_RTL (d), NULL_RTX, map, 1);
1664 apply_change_group ();
1665 }
1666
1667 /* Add this declaration to the list of variables in the new
1668 block. */
1669 *next = d;
1670 next = &TREE_CHAIN (d);
1671 }
1672
1673 next = &BLOCK_SUBBLOCKS (new_block);
1674 for (t = BLOCK_SUBBLOCKS (let); t; t = BLOCK_CHAIN (t))
1675 {
1676 *next = integrate_decl_tree (t, map);
1677 BLOCK_SUPERCONTEXT (*next) = new_block;
1678 next = &BLOCK_CHAIN (*next);
1679 }
1680
1681 TREE_USED (new_block) = TREE_USED (let);
1682 BLOCK_ABSTRACT_ORIGIN (new_block) = let;
1683
1684 return new_block;
1685 }
1686 \f
1687 /* Create a new copy of an rtx. Recursively copies the operands of the rtx,
1688 except for those few rtx codes that are sharable.
1689
1690 We always return an rtx that is similar to that incoming rtx, with the
1691 exception of possibly changing a REG to a SUBREG or vice versa. No
1692 rtl is ever emitted.
1693
1694 If FOR_LHS is nonzero, if means we are processing something that will
1695 be the LHS of a SET. In that case, we copy RTX_UNCHANGING_P even if
1696 inlining since we need to be conservative in how it is set for
1697 such cases.
1698
1699 Handle constants that need to be placed in the constant pool by
1700 calling `force_const_mem'. */
1701
1702 rtx
1703 copy_rtx_and_substitute (orig, map, for_lhs)
1704 register rtx orig;
1705 struct inline_remap *map;
1706 int for_lhs;
1707 {
1708 register rtx copy, temp;
1709 register int i, j;
1710 register RTX_CODE code;
1711 register enum machine_mode mode;
1712 register const char *format_ptr;
1713 int regno;
1714
1715 if (orig == 0)
1716 return 0;
1717
1718 code = GET_CODE (orig);
1719 mode = GET_MODE (orig);
1720
1721 switch (code)
1722 {
1723 case REG:
1724 /* If the stack pointer register shows up, it must be part of
1725 stack-adjustments (*not* because we eliminated the frame pointer!).
1726 Small hard registers are returned as-is. Pseudo-registers
1727 go through their `reg_map'. */
1728 regno = REGNO (orig);
1729 if (regno <= LAST_VIRTUAL_REGISTER
1730 || (map->integrating
1731 && DECL_SAVED_INSNS (map->fndecl)->internal_arg_pointer == orig))
1732 {
1733 /* Some hard registers are also mapped,
1734 but others are not translated. */
1735 if (map->reg_map[regno] != 0)
1736 return map->reg_map[regno];
1737
1738 /* If this is the virtual frame pointer, make space in current
1739 function's stack frame for the stack frame of the inline function.
1740
1741 Copy the address of this area into a pseudo. Map
1742 virtual_stack_vars_rtx to this pseudo and set up a constant
1743 equivalence for it to be the address. This will substitute the
1744 address into insns where it can be substituted and use the new
1745 pseudo where it can't. */
1746 if (regno == VIRTUAL_STACK_VARS_REGNUM)
1747 {
1748 rtx loc, seq;
1749 int size = get_func_frame_size (DECL_SAVED_INSNS (map->fndecl));
1750 #ifdef FRAME_GROWS_DOWNWARD
1751 int alignment
1752 = (DECL_SAVED_INSNS (map->fndecl)->stack_alignment_needed
1753 / BITS_PER_UNIT);
1754
1755 /* In this case, virtual_stack_vars_rtx points to one byte
1756 higher than the top of the frame area. So make sure we
1757 allocate a big enough chunk to keep the frame pointer
1758 aligned like a real one. */
1759 if (alignment)
1760 size = CEIL_ROUND (size, alignment);
1761 #endif
1762 start_sequence ();
1763 loc = assign_stack_temp (BLKmode, size, 1);
1764 loc = XEXP (loc, 0);
1765 #ifdef FRAME_GROWS_DOWNWARD
1766 /* In this case, virtual_stack_vars_rtx points to one byte
1767 higher than the top of the frame area. So compute the offset
1768 to one byte higher than our substitute frame. */
1769 loc = plus_constant (loc, size);
1770 #endif
1771 map->reg_map[regno] = temp
1772 = force_reg (Pmode, force_operand (loc, NULL_RTX));
1773
1774 #ifdef STACK_BOUNDARY
1775 mark_reg_pointer (map->reg_map[regno], STACK_BOUNDARY);
1776 #endif
1777
1778 SET_CONST_EQUIV_DATA (map, temp, loc, CONST_AGE_PARM);
1779
1780 seq = gen_sequence ();
1781 end_sequence ();
1782 emit_insn_after (seq, map->insns_at_start);
1783 return temp;
1784 }
1785 else if (regno == VIRTUAL_INCOMING_ARGS_REGNUM
1786 || (map->integrating
1787 && (DECL_SAVED_INSNS (map->fndecl)->internal_arg_pointer
1788 == orig)))
1789 {
1790 /* Do the same for a block to contain any arguments referenced
1791 in memory. */
1792 rtx loc, seq;
1793 int size = DECL_SAVED_INSNS (map->fndecl)->args_size;
1794
1795 start_sequence ();
1796 loc = assign_stack_temp (BLKmode, size, 1);
1797 loc = XEXP (loc, 0);
1798 /* When arguments grow downward, the virtual incoming
1799 args pointer points to the top of the argument block,
1800 so the remapped location better do the same. */
1801 #ifdef ARGS_GROW_DOWNWARD
1802 loc = plus_constant (loc, size);
1803 #endif
1804 map->reg_map[regno] = temp
1805 = force_reg (Pmode, force_operand (loc, NULL_RTX));
1806
1807 #ifdef STACK_BOUNDARY
1808 mark_reg_pointer (map->reg_map[regno], STACK_BOUNDARY);
1809 #endif
1810
1811 SET_CONST_EQUIV_DATA (map, temp, loc, CONST_AGE_PARM);
1812
1813 seq = gen_sequence ();
1814 end_sequence ();
1815 emit_insn_after (seq, map->insns_at_start);
1816 return temp;
1817 }
1818 else if (REG_FUNCTION_VALUE_P (orig))
1819 {
1820 /* This is a reference to the function return value. If
1821 the function doesn't have a return value, error. If the
1822 mode doesn't agree, and it ain't BLKmode, make a SUBREG. */
1823 if (map->inline_target == 0)
1824 /* Must be unrolling loops or replicating code if we
1825 reach here, so return the register unchanged. */
1826 return orig;
1827 else if (GET_MODE (map->inline_target) != BLKmode
1828 && mode != GET_MODE (map->inline_target))
1829 return gen_lowpart (mode, map->inline_target);
1830 else
1831 return map->inline_target;
1832 }
1833 return orig;
1834 }
1835 if (map->reg_map[regno] == NULL)
1836 {
1837 map->reg_map[regno] = gen_reg_rtx (mode);
1838 REG_USERVAR_P (map->reg_map[regno]) = REG_USERVAR_P (orig);
1839 REG_LOOP_TEST_P (map->reg_map[regno]) = REG_LOOP_TEST_P (orig);
1840 RTX_UNCHANGING_P (map->reg_map[regno]) = RTX_UNCHANGING_P (orig);
1841 /* A reg with REG_FUNCTION_VALUE_P true will never reach here. */
1842
1843 if (map->regno_pointer_flag[regno])
1844 mark_reg_pointer (map->reg_map[regno],
1845 map->regno_pointer_align[regno]);
1846 }
1847 return map->reg_map[regno];
1848
1849 case SUBREG:
1850 copy = copy_rtx_and_substitute (SUBREG_REG (orig), map, for_lhs);
1851 /* SUBREG is ordinary, but don't make nested SUBREGs. */
1852 if (GET_CODE (copy) == SUBREG)
1853 return gen_rtx_SUBREG (GET_MODE (orig), SUBREG_REG (copy),
1854 SUBREG_WORD (orig) + SUBREG_WORD (copy));
1855 else if (GET_CODE (copy) == CONCAT)
1856 {
1857 rtx retval = subreg_realpart_p (orig) ? XEXP (copy, 0) : XEXP (copy, 1);
1858
1859 if (GET_MODE (retval) == GET_MODE (orig))
1860 return retval;
1861 else
1862 return gen_rtx_SUBREG (GET_MODE (orig), retval,
1863 (SUBREG_WORD (orig) %
1864 (GET_MODE_UNIT_SIZE (GET_MODE (SUBREG_REG (orig)))
1865 / (unsigned) UNITS_PER_WORD)));
1866 }
1867 else
1868 return gen_rtx_SUBREG (GET_MODE (orig), copy,
1869 SUBREG_WORD (orig));
1870
1871 case ADDRESSOF:
1872 copy = gen_rtx_ADDRESSOF (mode,
1873 copy_rtx_and_substitute (XEXP (orig, 0),
1874 map, for_lhs),
1875 0, ADDRESSOF_DECL(orig));
1876 regno = ADDRESSOF_REGNO (orig);
1877 if (map->reg_map[regno])
1878 regno = REGNO (map->reg_map[regno]);
1879 else if (regno > LAST_VIRTUAL_REGISTER)
1880 {
1881 temp = XEXP (orig, 0);
1882 map->reg_map[regno] = gen_reg_rtx (GET_MODE (temp));
1883 REG_USERVAR_P (map->reg_map[regno]) = REG_USERVAR_P (temp);
1884 REG_LOOP_TEST_P (map->reg_map[regno]) = REG_LOOP_TEST_P (temp);
1885 RTX_UNCHANGING_P (map->reg_map[regno]) = RTX_UNCHANGING_P (temp);
1886 /* A reg with REG_FUNCTION_VALUE_P true will never reach here. */
1887
1888 if (map->regno_pointer_flag[regno])
1889 mark_reg_pointer (map->reg_map[regno],
1890 map->regno_pointer_align[regno]);
1891 regno = REGNO (map->reg_map[regno]);
1892 }
1893 ADDRESSOF_REGNO (copy) = regno;
1894 return copy;
1895
1896 case USE:
1897 case CLOBBER:
1898 /* USE and CLOBBER are ordinary, but we convert (use (subreg foo))
1899 to (use foo) if the original insn didn't have a subreg.
1900 Removing the subreg distorts the VAX movstrhi pattern
1901 by changing the mode of an operand. */
1902 copy = copy_rtx_and_substitute (XEXP (orig, 0), map, code == CLOBBER);
1903 if (GET_CODE (copy) == SUBREG && GET_CODE (XEXP (orig, 0)) != SUBREG)
1904 copy = SUBREG_REG (copy);
1905 return gen_rtx_fmt_e (code, VOIDmode, copy);
1906
1907 case CODE_LABEL:
1908 LABEL_PRESERVE_P (get_label_from_map (map, CODE_LABEL_NUMBER (orig)))
1909 = LABEL_PRESERVE_P (orig);
1910 return get_label_from_map (map, CODE_LABEL_NUMBER (orig));
1911
1912 /* We need to handle "deleted" labels that appear in the DECL_RTL
1913 of a LABEL_DECL. */
1914 case NOTE:
1915 if (NOTE_LINE_NUMBER (orig) == NOTE_INSN_DELETED_LABEL)
1916 return map->insn_map[INSN_UID (orig)];
1917 break;
1918
1919 case LABEL_REF:
1920 copy
1921 = gen_rtx_LABEL_REF
1922 (mode,
1923 LABEL_REF_NONLOCAL_P (orig) ? XEXP (orig, 0)
1924 : get_label_from_map (map, CODE_LABEL_NUMBER (XEXP (orig, 0))));
1925
1926 LABEL_OUTSIDE_LOOP_P (copy) = LABEL_OUTSIDE_LOOP_P (orig);
1927
1928 /* The fact that this label was previously nonlocal does not mean
1929 it still is, so we must check if it is within the range of
1930 this function's labels. */
1931 LABEL_REF_NONLOCAL_P (copy)
1932 = (LABEL_REF_NONLOCAL_P (orig)
1933 && ! (CODE_LABEL_NUMBER (XEXP (copy, 0)) >= get_first_label_num ()
1934 && CODE_LABEL_NUMBER (XEXP (copy, 0)) < max_label_num ()));
1935
1936 /* If we have made a nonlocal label local, it means that this
1937 inlined call will be referring to our nonlocal goto handler.
1938 So make sure we create one for this block; we normally would
1939 not since this is not otherwise considered a "call". */
1940 if (LABEL_REF_NONLOCAL_P (orig) && ! LABEL_REF_NONLOCAL_P (copy))
1941 function_call_count++;
1942
1943 return copy;
1944
1945 case PC:
1946 case CC0:
1947 case CONST_INT:
1948 return orig;
1949
1950 case SYMBOL_REF:
1951 /* Symbols which represent the address of a label stored in the constant
1952 pool must be modified to point to a constant pool entry for the
1953 remapped label. Otherwise, symbols are returned unchanged. */
1954 if (CONSTANT_POOL_ADDRESS_P (orig))
1955 {
1956 struct function *f = inlining ? inlining : cfun;
1957 rtx constant = get_pool_constant_for_function (f, orig);
1958 enum machine_mode const_mode = get_pool_mode_for_function (f, orig);
1959 if (inlining)
1960 {
1961 rtx temp = force_const_mem (const_mode,
1962 copy_rtx_and_substitute (constant,
1963 map, 0));
1964
1965 #if 0
1966 /* Legitimizing the address here is incorrect.
1967
1968 Since we had a SYMBOL_REF before, we can assume it is valid
1969 to have one in this position in the insn.
1970
1971 Also, change_address may create new registers. These
1972 registers will not have valid reg_map entries. This can
1973 cause try_constants() to fail because assumes that all
1974 registers in the rtx have valid reg_map entries, and it may
1975 end up replacing one of these new registers with junk. */
1976
1977 if (! memory_address_p (GET_MODE (temp), XEXP (temp, 0)))
1978 temp = change_address (temp, GET_MODE (temp), XEXP (temp, 0));
1979 #endif
1980
1981 temp = XEXP (temp, 0);
1982
1983 #ifdef POINTERS_EXTEND_UNSIGNED
1984 if (GET_MODE (temp) != GET_MODE (orig))
1985 temp = convert_memory_address (GET_MODE (orig), temp);
1986 #endif
1987 return temp;
1988 }
1989 else if (GET_CODE (constant) == LABEL_REF)
1990 return XEXP (force_const_mem
1991 (GET_MODE (orig),
1992 copy_rtx_and_substitute (constant, map, for_lhs)),
1993 0);
1994 }
1995 else
1996 if (SYMBOL_REF_NEED_ADJUST (orig))
1997 {
1998 eif_eh_map = map;
1999 return rethrow_symbol_map (orig,
2000 expand_inline_function_eh_labelmap);
2001 }
2002
2003 return orig;
2004
2005 case CONST_DOUBLE:
2006 /* We have to make a new copy of this CONST_DOUBLE because don't want
2007 to use the old value of CONST_DOUBLE_MEM. Also, this may be a
2008 duplicate of a CONST_DOUBLE we have already seen. */
2009 if (GET_MODE_CLASS (GET_MODE (orig)) == MODE_FLOAT)
2010 {
2011 REAL_VALUE_TYPE d;
2012
2013 REAL_VALUE_FROM_CONST_DOUBLE (d, orig);
2014 return CONST_DOUBLE_FROM_REAL_VALUE (d, GET_MODE (orig));
2015 }
2016 else
2017 return immed_double_const (CONST_DOUBLE_LOW (orig),
2018 CONST_DOUBLE_HIGH (orig), VOIDmode);
2019
2020 case CONST:
2021 /* Make new constant pool entry for a constant
2022 that was in the pool of the inline function. */
2023 if (RTX_INTEGRATED_P (orig))
2024 abort ();
2025 break;
2026
2027 case ASM_OPERANDS:
2028 /* If a single asm insn contains multiple output operands
2029 then it contains multiple ASM_OPERANDS rtx's that share operand 3.
2030 We must make sure that the copied insn continues to share it. */
2031 if (map->orig_asm_operands_vector == XVEC (orig, 3))
2032 {
2033 copy = rtx_alloc (ASM_OPERANDS);
2034 copy->volatil = orig->volatil;
2035 XSTR (copy, 0) = XSTR (orig, 0);
2036 XSTR (copy, 1) = XSTR (orig, 1);
2037 XINT (copy, 2) = XINT (orig, 2);
2038 XVEC (copy, 3) = map->copy_asm_operands_vector;
2039 XVEC (copy, 4) = map->copy_asm_constraints_vector;
2040 XSTR (copy, 5) = XSTR (orig, 5);
2041 XINT (copy, 6) = XINT (orig, 6);
2042 return copy;
2043 }
2044 break;
2045
2046 case CALL:
2047 /* This is given special treatment because the first
2048 operand of a CALL is a (MEM ...) which may get
2049 forced into a register for cse. This is undesirable
2050 if function-address cse isn't wanted or if we won't do cse. */
2051 #ifndef NO_FUNCTION_CSE
2052 if (! (optimize && ! flag_no_function_cse))
2053 #endif
2054 return
2055 gen_rtx_CALL
2056 (GET_MODE (orig),
2057 gen_rtx_MEM (GET_MODE (XEXP (orig, 0)),
2058 copy_rtx_and_substitute (XEXP (XEXP (orig, 0), 0),
2059 map, 0)),
2060 copy_rtx_and_substitute (XEXP (orig, 1), map, 0));
2061 break;
2062
2063 #if 0
2064 /* Must be ifdefed out for loop unrolling to work. */
2065 case RETURN:
2066 abort ();
2067 #endif
2068
2069 case SET:
2070 /* If this is setting fp or ap, it means that we have a nonlocal goto.
2071 Adjust the setting by the offset of the area we made.
2072 If the nonlocal goto is into the current function,
2073 this will result in unnecessarily bad code, but should work. */
2074 if (SET_DEST (orig) == virtual_stack_vars_rtx
2075 || SET_DEST (orig) == virtual_incoming_args_rtx)
2076 {
2077 /* In case a translation hasn't occurred already, make one now. */
2078 rtx equiv_reg;
2079 rtx equiv_loc;
2080 HOST_WIDE_INT loc_offset;
2081
2082 copy_rtx_and_substitute (SET_DEST (orig), map, for_lhs);
2083 equiv_reg = map->reg_map[REGNO (SET_DEST (orig))];
2084 equiv_loc = VARRAY_CONST_EQUIV (map->const_equiv_varray,
2085 REGNO (equiv_reg)).rtx;
2086 loc_offset
2087 = GET_CODE (equiv_loc) == REG ? 0 : INTVAL (XEXP (equiv_loc, 1));
2088
2089 return gen_rtx_SET (VOIDmode, SET_DEST (orig),
2090 force_operand
2091 (plus_constant
2092 (copy_rtx_and_substitute (SET_SRC (orig),
2093 map, 0),
2094 - loc_offset),
2095 NULL_RTX));
2096 }
2097 else
2098 return gen_rtx_SET (VOIDmode,
2099 copy_rtx_and_substitute (SET_DEST (orig), map, 1),
2100 copy_rtx_and_substitute (SET_SRC (orig), map, 0));
2101 break;
2102
2103 case MEM:
2104 if (inlining
2105 && GET_CODE (XEXP (orig, 0)) == SYMBOL_REF
2106 && CONSTANT_POOL_ADDRESS_P (XEXP (orig, 0)))
2107 {
2108 enum machine_mode const_mode
2109 = get_pool_mode_for_function (inlining, XEXP (orig, 0));
2110 rtx constant
2111 = get_pool_constant_for_function (inlining, XEXP (orig, 0));
2112
2113 constant = copy_rtx_and_substitute (constant, map, 0);
2114
2115 /* If this was an address of a constant pool entry that itself
2116 had to be placed in the constant pool, it might not be a
2117 valid address. So the recursive call might have turned it
2118 into a register. In that case, it isn't a constant any
2119 more, so return it. This has the potential of changing a
2120 MEM into a REG, but we'll assume that it safe. */
2121 if (! CONSTANT_P (constant))
2122 return constant;
2123
2124 return validize_mem (force_const_mem (const_mode, constant));
2125 }
2126
2127 copy = rtx_alloc (MEM);
2128 PUT_MODE (copy, mode);
2129 XEXP (copy, 0) = copy_rtx_and_substitute (XEXP (orig, 0), map, 0);
2130 MEM_COPY_ATTRIBUTES (copy, orig);
2131 MEM_ALIAS_SET (copy) = MEM_ALIAS_SET (orig);
2132 RTX_UNCHANGING_P (copy) = RTX_UNCHANGING_P (orig);
2133 return copy;
2134
2135 default:
2136 break;
2137 }
2138
2139 copy = rtx_alloc (code);
2140 PUT_MODE (copy, mode);
2141 copy->in_struct = orig->in_struct;
2142 copy->volatil = orig->volatil;
2143 copy->unchanging = orig->unchanging;
2144
2145 format_ptr = GET_RTX_FORMAT (GET_CODE (copy));
2146
2147 for (i = 0; i < GET_RTX_LENGTH (GET_CODE (copy)); i++)
2148 {
2149 switch (*format_ptr++)
2150 {
2151 case '0':
2152 /* Copy this through the wide int field; that's safest. */
2153 X0WINT (copy, i) = X0WINT (orig, i);
2154 break;
2155
2156 case 'e':
2157 XEXP (copy, i)
2158 = copy_rtx_and_substitute (XEXP (orig, i), map, for_lhs);
2159 break;
2160
2161 case 'u':
2162 /* Change any references to old-insns to point to the
2163 corresponding copied insns. */
2164 XEXP (copy, i) = map->insn_map[INSN_UID (XEXP (orig, i))];
2165 break;
2166
2167 case 'E':
2168 XVEC (copy, i) = XVEC (orig, i);
2169 if (XVEC (orig, i) != NULL && XVECLEN (orig, i) != 0)
2170 {
2171 XVEC (copy, i) = rtvec_alloc (XVECLEN (orig, i));
2172 for (j = 0; j < XVECLEN (copy, i); j++)
2173 XVECEXP (copy, i, j)
2174 = copy_rtx_and_substitute (XVECEXP (orig, i, j),
2175 map, for_lhs);
2176 }
2177 break;
2178
2179 case 'w':
2180 XWINT (copy, i) = XWINT (orig, i);
2181 break;
2182
2183 case 'i':
2184 XINT (copy, i) = XINT (orig, i);
2185 break;
2186
2187 case 's':
2188 XSTR (copy, i) = XSTR (orig, i);
2189 break;
2190
2191 case 't':
2192 XTREE (copy, i) = XTREE (orig, i);
2193 break;
2194
2195 default:
2196 abort ();
2197 }
2198 }
2199
2200 if (code == ASM_OPERANDS && map->orig_asm_operands_vector == 0)
2201 {
2202 map->orig_asm_operands_vector = XVEC (orig, 3);
2203 map->copy_asm_operands_vector = XVEC (copy, 3);
2204 map->copy_asm_constraints_vector = XVEC (copy, 4);
2205 }
2206
2207 return copy;
2208 }
2209 \f
2210 /* Substitute known constant values into INSN, if that is valid. */
2211
2212 void
2213 try_constants (insn, map)
2214 rtx insn;
2215 struct inline_remap *map;
2216 {
2217 int i;
2218
2219 map->num_sets = 0;
2220
2221 /* First try just updating addresses, then other things. This is
2222 important when we have something like the store of a constant
2223 into memory and we can update the memory address but the machine
2224 does not support a constant source. */
2225 subst_constants (&PATTERN (insn), insn, map, 1);
2226 apply_change_group ();
2227 subst_constants (&PATTERN (insn), insn, map, 0);
2228 apply_change_group ();
2229
2230 /* Show we don't know the value of anything stored or clobbered. */
2231 note_stores (PATTERN (insn), mark_stores, NULL);
2232 map->last_pc_value = 0;
2233 #ifdef HAVE_cc0
2234 map->last_cc0_value = 0;
2235 #endif
2236
2237 /* Set up any constant equivalences made in this insn. */
2238 for (i = 0; i < map->num_sets; i++)
2239 {
2240 if (GET_CODE (map->equiv_sets[i].dest) == REG)
2241 {
2242 int regno = REGNO (map->equiv_sets[i].dest);
2243
2244 MAYBE_EXTEND_CONST_EQUIV_VARRAY (map, regno);
2245 if (VARRAY_CONST_EQUIV (map->const_equiv_varray, regno).rtx == 0
2246 /* Following clause is a hack to make case work where GNU C++
2247 reassigns a variable to make cse work right. */
2248 || ! rtx_equal_p (VARRAY_CONST_EQUIV (map->const_equiv_varray,
2249 regno).rtx,
2250 map->equiv_sets[i].equiv))
2251 SET_CONST_EQUIV_DATA (map, map->equiv_sets[i].dest,
2252 map->equiv_sets[i].equiv, map->const_age);
2253 }
2254 else if (map->equiv_sets[i].dest == pc_rtx)
2255 map->last_pc_value = map->equiv_sets[i].equiv;
2256 #ifdef HAVE_cc0
2257 else if (map->equiv_sets[i].dest == cc0_rtx)
2258 map->last_cc0_value = map->equiv_sets[i].equiv;
2259 #endif
2260 }
2261 }
2262 \f
2263 /* Substitute known constants for pseudo regs in the contents of LOC,
2264 which are part of INSN.
2265 If INSN is zero, the substitution should always be done (this is used to
2266 update DECL_RTL).
2267 These changes are taken out by try_constants if the result is not valid.
2268
2269 Note that we are more concerned with determining when the result of a SET
2270 is a constant, for further propagation, than actually inserting constants
2271 into insns; cse will do the latter task better.
2272
2273 This function is also used to adjust address of items previously addressed
2274 via the virtual stack variable or virtual incoming arguments registers.
2275
2276 If MEMONLY is nonzero, only make changes inside a MEM. */
2277
2278 static void
2279 subst_constants (loc, insn, map, memonly)
2280 rtx *loc;
2281 rtx insn;
2282 struct inline_remap *map;
2283 int memonly;
2284 {
2285 rtx x = *loc;
2286 register int i, j;
2287 register enum rtx_code code;
2288 register const char *format_ptr;
2289 int num_changes = num_validated_changes ();
2290 rtx new = 0;
2291 enum machine_mode op0_mode = MAX_MACHINE_MODE;
2292
2293 code = GET_CODE (x);
2294
2295 switch (code)
2296 {
2297 case PC:
2298 case CONST_INT:
2299 case CONST_DOUBLE:
2300 case SYMBOL_REF:
2301 case CONST:
2302 case LABEL_REF:
2303 case ADDRESS:
2304 return;
2305
2306 #ifdef HAVE_cc0
2307 case CC0:
2308 if (! memonly)
2309 validate_change (insn, loc, map->last_cc0_value, 1);
2310 return;
2311 #endif
2312
2313 case USE:
2314 case CLOBBER:
2315 /* The only thing we can do with a USE or CLOBBER is possibly do
2316 some substitutions in a MEM within it. */
2317 if (GET_CODE (XEXP (x, 0)) == MEM)
2318 subst_constants (&XEXP (XEXP (x, 0), 0), insn, map, 0);
2319 return;
2320
2321 case REG:
2322 /* Substitute for parms and known constants. Don't replace
2323 hard regs used as user variables with constants. */
2324 if (! memonly)
2325 {
2326 int regno = REGNO (x);
2327 struct const_equiv_data *p;
2328
2329 if (! (regno < FIRST_PSEUDO_REGISTER && REG_USERVAR_P (x))
2330 && (size_t) regno < VARRAY_SIZE (map->const_equiv_varray)
2331 && (p = &VARRAY_CONST_EQUIV (map->const_equiv_varray, regno),
2332 p->rtx != 0)
2333 && p->age >= map->const_age)
2334 validate_change (insn, loc, p->rtx, 1);
2335 }
2336 return;
2337
2338 case SUBREG:
2339 /* SUBREG applied to something other than a reg
2340 should be treated as ordinary, since that must
2341 be a special hack and we don't know how to treat it specially.
2342 Consider for example mulsidi3 in m68k.md.
2343 Ordinary SUBREG of a REG needs this special treatment. */
2344 if (! memonly && GET_CODE (SUBREG_REG (x)) == REG)
2345 {
2346 rtx inner = SUBREG_REG (x);
2347 rtx new = 0;
2348
2349 /* We can't call subst_constants on &SUBREG_REG (x) because any
2350 constant or SUBREG wouldn't be valid inside our SUBEG. Instead,
2351 see what is inside, try to form the new SUBREG and see if that is
2352 valid. We handle two cases: extracting a full word in an
2353 integral mode and extracting the low part. */
2354 subst_constants (&inner, NULL_RTX, map, 0);
2355
2356 if (GET_MODE_CLASS (GET_MODE (x)) == MODE_INT
2357 && GET_MODE_SIZE (GET_MODE (x)) == UNITS_PER_WORD
2358 && GET_MODE (SUBREG_REG (x)) != VOIDmode)
2359 new = operand_subword (inner, SUBREG_WORD (x), 0,
2360 GET_MODE (SUBREG_REG (x)));
2361
2362 cancel_changes (num_changes);
2363 if (new == 0 && subreg_lowpart_p (x))
2364 new = gen_lowpart_common (GET_MODE (x), inner);
2365
2366 if (new)
2367 validate_change (insn, loc, new, 1);
2368
2369 return;
2370 }
2371 break;
2372
2373 case MEM:
2374 subst_constants (&XEXP (x, 0), insn, map, 0);
2375
2376 /* If a memory address got spoiled, change it back. */
2377 if (! memonly && insn != 0 && num_validated_changes () != num_changes
2378 && ! memory_address_p (GET_MODE (x), XEXP (x, 0)))
2379 cancel_changes (num_changes);
2380 return;
2381
2382 case SET:
2383 {
2384 /* Substitute constants in our source, and in any arguments to a
2385 complex (e..g, ZERO_EXTRACT) destination, but not in the destination
2386 itself. */
2387 rtx *dest_loc = &SET_DEST (x);
2388 rtx dest = *dest_loc;
2389 rtx src, tem;
2390
2391 subst_constants (&SET_SRC (x), insn, map, memonly);
2392 src = SET_SRC (x);
2393
2394 while (GET_CODE (*dest_loc) == ZERO_EXTRACT
2395 || GET_CODE (*dest_loc) == SUBREG
2396 || GET_CODE (*dest_loc) == STRICT_LOW_PART)
2397 {
2398 if (GET_CODE (*dest_loc) == ZERO_EXTRACT)
2399 {
2400 subst_constants (&XEXP (*dest_loc, 1), insn, map, memonly);
2401 subst_constants (&XEXP (*dest_loc, 2), insn, map, memonly);
2402 }
2403 dest_loc = &XEXP (*dest_loc, 0);
2404 }
2405
2406 /* Do substitute in the address of a destination in memory. */
2407 if (GET_CODE (*dest_loc) == MEM)
2408 subst_constants (&XEXP (*dest_loc, 0), insn, map, 0);
2409
2410 /* Check for the case of DEST a SUBREG, both it and the underlying
2411 register are less than one word, and the SUBREG has the wider mode.
2412 In the case, we are really setting the underlying register to the
2413 source converted to the mode of DEST. So indicate that. */
2414 if (GET_CODE (dest) == SUBREG
2415 && GET_MODE_SIZE (GET_MODE (dest)) <= UNITS_PER_WORD
2416 && GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest))) <= UNITS_PER_WORD
2417 && (GET_MODE_SIZE (GET_MODE (SUBREG_REG (dest)))
2418 <= GET_MODE_SIZE (GET_MODE (dest)))
2419 && (tem = gen_lowpart_if_possible (GET_MODE (SUBREG_REG (dest)),
2420 src)))
2421 src = tem, dest = SUBREG_REG (dest);
2422
2423 /* If storing a recognizable value save it for later recording. */
2424 if ((map->num_sets < MAX_RECOG_OPERANDS)
2425 && (CONSTANT_P (src)
2426 || (GET_CODE (src) == REG
2427 && (REGNO (src) == VIRTUAL_INCOMING_ARGS_REGNUM
2428 || REGNO (src) == VIRTUAL_STACK_VARS_REGNUM))
2429 || (GET_CODE (src) == PLUS
2430 && GET_CODE (XEXP (src, 0)) == REG
2431 && (REGNO (XEXP (src, 0)) == VIRTUAL_INCOMING_ARGS_REGNUM
2432 || REGNO (XEXP (src, 0)) == VIRTUAL_STACK_VARS_REGNUM)
2433 && CONSTANT_P (XEXP (src, 1)))
2434 || GET_CODE (src) == COMPARE
2435 #ifdef HAVE_cc0
2436 || dest == cc0_rtx
2437 #endif
2438 || (dest == pc_rtx
2439 && (src == pc_rtx || GET_CODE (src) == RETURN
2440 || GET_CODE (src) == LABEL_REF))))
2441 {
2442 /* Normally, this copy won't do anything. But, if SRC is a COMPARE
2443 it will cause us to save the COMPARE with any constants
2444 substituted, which is what we want for later. */
2445 map->equiv_sets[map->num_sets].equiv = copy_rtx (src);
2446 map->equiv_sets[map->num_sets++].dest = dest;
2447 }
2448 }
2449 return;
2450
2451 default:
2452 break;
2453 }
2454
2455 format_ptr = GET_RTX_FORMAT (code);
2456
2457 /* If the first operand is an expression, save its mode for later. */
2458 if (*format_ptr == 'e')
2459 op0_mode = GET_MODE (XEXP (x, 0));
2460
2461 for (i = 0; i < GET_RTX_LENGTH (code); i++)
2462 {
2463 switch (*format_ptr++)
2464 {
2465 case '0':
2466 break;
2467
2468 case 'e':
2469 if (XEXP (x, i))
2470 subst_constants (&XEXP (x, i), insn, map, memonly);
2471 break;
2472
2473 case 'u':
2474 case 'i':
2475 case 's':
2476 case 'w':
2477 case 'n':
2478 case 't':
2479 break;
2480
2481 case 'E':
2482 if (XVEC (x, i) != NULL && XVECLEN (x, i) != 0)
2483 for (j = 0; j < XVECLEN (x, i); j++)
2484 subst_constants (&XVECEXP (x, i, j), insn, map, memonly);
2485
2486 break;
2487
2488 default:
2489 abort ();
2490 }
2491 }
2492
2493 /* If this is a commutative operation, move a constant to the second
2494 operand unless the second operand is already a CONST_INT. */
2495 if (! memonly
2496 && (GET_RTX_CLASS (code) == 'c' || code == NE || code == EQ)
2497 && CONSTANT_P (XEXP (x, 0)) && GET_CODE (XEXP (x, 1)) != CONST_INT)
2498 {
2499 rtx tem = XEXP (x, 0);
2500 validate_change (insn, &XEXP (x, 0), XEXP (x, 1), 1);
2501 validate_change (insn, &XEXP (x, 1), tem, 1);
2502 }
2503
2504 /* Simplify the expression in case we put in some constants. */
2505 if (! memonly)
2506 switch (GET_RTX_CLASS (code))
2507 {
2508 case '1':
2509 if (op0_mode == MAX_MACHINE_MODE)
2510 abort ();
2511 new = simplify_unary_operation (code, GET_MODE (x),
2512 XEXP (x, 0), op0_mode);
2513 break;
2514
2515 case '<':
2516 {
2517 enum machine_mode op_mode = GET_MODE (XEXP (x, 0));
2518
2519 if (op_mode == VOIDmode)
2520 op_mode = GET_MODE (XEXP (x, 1));
2521 new = simplify_relational_operation (code, op_mode,
2522 XEXP (x, 0), XEXP (x, 1));
2523 #ifdef FLOAT_STORE_FLAG_VALUE
2524 if (new != 0 && GET_MODE_CLASS (GET_MODE (x)) == MODE_FLOAT)
2525 {
2526 enum machine_mode mode = GET_MODE (x);
2527 if (new == const0_rtx)
2528 new = CONST0_RTX (mode);
2529 else
2530 {
2531 REAL_VALUE_TYPE val = FLOAT_STORE_FLAG_VALUE (mode);
2532 new = CONST_DOUBLE_FROM_REAL_VALUE (val, mode);
2533 }
2534 }
2535 #endif
2536 break;
2537 }
2538
2539 case '2':
2540 case 'c':
2541 new = simplify_binary_operation (code, GET_MODE (x),
2542 XEXP (x, 0), XEXP (x, 1));
2543 break;
2544
2545 case 'b':
2546 case '3':
2547 if (op0_mode == MAX_MACHINE_MODE)
2548 abort ();
2549
2550 new = simplify_ternary_operation (code, GET_MODE (x), op0_mode,
2551 XEXP (x, 0), XEXP (x, 1),
2552 XEXP (x, 2));
2553 break;
2554 }
2555
2556 if (new)
2557 validate_change (insn, loc, new, 1);
2558 }
2559
2560 /* Show that register modified no longer contain known constants. We are
2561 called from note_stores with parts of the new insn. */
2562
2563 static void
2564 mark_stores (dest, x, data)
2565 rtx dest;
2566 rtx x ATTRIBUTE_UNUSED;
2567 void *data ATTRIBUTE_UNUSED;
2568 {
2569 int regno = -1;
2570 enum machine_mode mode = VOIDmode;
2571
2572 /* DEST is always the innermost thing set, except in the case of
2573 SUBREGs of hard registers. */
2574
2575 if (GET_CODE (dest) == REG)
2576 regno = REGNO (dest), mode = GET_MODE (dest);
2577 else if (GET_CODE (dest) == SUBREG && GET_CODE (SUBREG_REG (dest)) == REG)
2578 {
2579 regno = REGNO (SUBREG_REG (dest)) + SUBREG_WORD (dest);
2580 mode = GET_MODE (SUBREG_REG (dest));
2581 }
2582
2583 if (regno >= 0)
2584 {
2585 unsigned int uregno = regno;
2586 unsigned int last_reg = (uregno >= FIRST_PSEUDO_REGISTER ? uregno
2587 : uregno + HARD_REGNO_NREGS (uregno, mode) - 1);
2588 unsigned int i;
2589
2590 /* Ignore virtual stack var or virtual arg register since those
2591 are handled separately. */
2592 if (uregno != VIRTUAL_INCOMING_ARGS_REGNUM
2593 && uregno != VIRTUAL_STACK_VARS_REGNUM)
2594 for (i = uregno; i <= last_reg; i++)
2595 if ((size_t) i < VARRAY_SIZE (global_const_equiv_varray))
2596 VARRAY_CONST_EQUIV (global_const_equiv_varray, i).rtx = 0;
2597 }
2598 }
2599 \f
2600 /* Given a pointer to some BLOCK node, if the BLOCK_ABSTRACT_ORIGIN for the
2601 given BLOCK node is NULL, set the BLOCK_ABSTRACT_ORIGIN for the node so
2602 that it points to the node itself, thus indicating that the node is its
2603 own (abstract) origin. Additionally, if the BLOCK_ABSTRACT_ORIGIN for
2604 the given node is NULL, recursively descend the decl/block tree which
2605 it is the root of, and for each other ..._DECL or BLOCK node contained
2606 therein whose DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also
2607 still NULL, set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN
2608 values to point to themselves. */
2609
2610 static void
2611 set_block_origin_self (stmt)
2612 register tree stmt;
2613 {
2614 if (BLOCK_ABSTRACT_ORIGIN (stmt) == NULL_TREE)
2615 {
2616 BLOCK_ABSTRACT_ORIGIN (stmt) = stmt;
2617
2618 {
2619 register tree local_decl;
2620
2621 for (local_decl = BLOCK_VARS (stmt);
2622 local_decl != NULL_TREE;
2623 local_decl = TREE_CHAIN (local_decl))
2624 set_decl_origin_self (local_decl); /* Potential recursion. */
2625 }
2626
2627 {
2628 register tree subblock;
2629
2630 for (subblock = BLOCK_SUBBLOCKS (stmt);
2631 subblock != NULL_TREE;
2632 subblock = BLOCK_CHAIN (subblock))
2633 set_block_origin_self (subblock); /* Recurse. */
2634 }
2635 }
2636 }
2637
2638 /* Given a pointer to some ..._DECL node, if the DECL_ABSTRACT_ORIGIN for
2639 the given ..._DECL node is NULL, set the DECL_ABSTRACT_ORIGIN for the
2640 node to so that it points to the node itself, thus indicating that the
2641 node represents its own (abstract) origin. Additionally, if the
2642 DECL_ABSTRACT_ORIGIN for the given node is NULL, recursively descend
2643 the decl/block tree of which the given node is the root of, and for
2644 each other ..._DECL or BLOCK node contained therein whose
2645 DECL_ABSTRACT_ORIGINs or BLOCK_ABSTRACT_ORIGINs are also still NULL,
2646 set *their* DECL_ABSTRACT_ORIGIN or BLOCK_ABSTRACT_ORIGIN values to
2647 point to themselves. */
2648
2649 void
2650 set_decl_origin_self (decl)
2651 register tree decl;
2652 {
2653 if (DECL_ABSTRACT_ORIGIN (decl) == NULL_TREE)
2654 {
2655 DECL_ABSTRACT_ORIGIN (decl) = decl;
2656 if (TREE_CODE (decl) == FUNCTION_DECL)
2657 {
2658 register tree arg;
2659
2660 for (arg = DECL_ARGUMENTS (decl); arg; arg = TREE_CHAIN (arg))
2661 DECL_ABSTRACT_ORIGIN (arg) = arg;
2662 if (DECL_INITIAL (decl) != NULL_TREE
2663 && DECL_INITIAL (decl) != error_mark_node)
2664 set_block_origin_self (DECL_INITIAL (decl));
2665 }
2666 }
2667 }
2668 \f
2669 /* Given a pointer to some BLOCK node, and a boolean value to set the
2670 "abstract" flags to, set that value into the BLOCK_ABSTRACT flag for
2671 the given block, and for all local decls and all local sub-blocks
2672 (recursively) which are contained therein. */
2673
2674 static void
2675 set_block_abstract_flags (stmt, setting)
2676 register tree stmt;
2677 register int setting;
2678 {
2679 register tree local_decl;
2680 register tree subblock;
2681
2682 BLOCK_ABSTRACT (stmt) = setting;
2683
2684 for (local_decl = BLOCK_VARS (stmt);
2685 local_decl != NULL_TREE;
2686 local_decl = TREE_CHAIN (local_decl))
2687 set_decl_abstract_flags (local_decl, setting);
2688
2689 for (subblock = BLOCK_SUBBLOCKS (stmt);
2690 subblock != NULL_TREE;
2691 subblock = BLOCK_CHAIN (subblock))
2692 set_block_abstract_flags (subblock, setting);
2693 }
2694
2695 /* Given a pointer to some ..._DECL node, and a boolean value to set the
2696 "abstract" flags to, set that value into the DECL_ABSTRACT flag for the
2697 given decl, and (in the case where the decl is a FUNCTION_DECL) also
2698 set the abstract flags for all of the parameters, local vars, local
2699 blocks and sub-blocks (recursively) to the same setting. */
2700
2701 void
2702 set_decl_abstract_flags (decl, setting)
2703 register tree decl;
2704 register int setting;
2705 {
2706 DECL_ABSTRACT (decl) = setting;
2707 if (TREE_CODE (decl) == FUNCTION_DECL)
2708 {
2709 register tree arg;
2710
2711 for (arg = DECL_ARGUMENTS (decl); arg; arg = TREE_CHAIN (arg))
2712 DECL_ABSTRACT (arg) = setting;
2713 if (DECL_INITIAL (decl) != NULL_TREE
2714 && DECL_INITIAL (decl) != error_mark_node)
2715 set_block_abstract_flags (DECL_INITIAL (decl), setting);
2716 }
2717 }
2718 \f
2719 /* Output the assembly language code for the function FNDECL
2720 from its DECL_SAVED_INSNS. Used for inline functions that are output
2721 at end of compilation instead of where they came in the source. */
2722
2723 void
2724 output_inline_function (fndecl)
2725 tree fndecl;
2726 {
2727 struct function *old_cfun = cfun;
2728 struct function *f = DECL_SAVED_INSNS (fndecl);
2729
2730 cfun = f;
2731 current_function_decl = fndecl;
2732 clear_emit_caches ();
2733
2734 /* Things we allocate from here on are part of this function, not
2735 permanent. */
2736 temporary_allocation ();
2737
2738 set_new_last_label_num (f->inl_max_label_num);
2739
2740 /* Compile this function all the way down to assembly code. */
2741 rest_of_compilation (fndecl);
2742
2743 /* We're not deferring this any longer. */
2744 DECL_DEFER_OUTPUT (fndecl) = 0;
2745
2746 /* We can't inline this anymore. */
2747 f->inlinable = 0;
2748 DECL_INLINE (fndecl) = 0;
2749
2750 cfun = old_cfun;
2751 current_function_decl = old_cfun ? old_cfun->decl : 0;
2752 }