[PR67828] don't unswitch on default defs of non-parms
[official-gcc.git] / gcc / valtrack.c
blob8236a78570ea215f51fc1765363c4cc1a7bddb9e
1 /* Infrastructure for tracking user variable locations and values
2 throughout compilation.
3 Copyright (C) 2010-2015 Free Software Foundation, Inc.
4 Contributed by Alexandre Oliva <aoliva@redhat.com>.
6 This file is part of GCC.
8 GCC is free software; you can redistribute it and/or modify it under
9 the terms of the GNU General Public License as published by the Free
10 Software Foundation; either version 3, or (at your option) any later
11 version.
13 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
14 WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 for more details.
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING3. If not see
20 <http://www.gnu.org/licenses/>. */
22 #include "config.h"
23 #include "system.h"
24 #include "coretypes.h"
25 #include "backend.h"
26 #include "rtl.h"
27 #include "df.h"
28 #include "valtrack.h"
29 #include "regs.h"
30 #include "emit-rtl.h"
32 /* gen_lowpart_no_emit hook implementation for DEBUG_INSNs. In DEBUG_INSNs,
33 all lowpart SUBREGs are valid, despite what the machine requires for
34 instructions. */
36 static rtx
37 gen_lowpart_for_debug (machine_mode mode, rtx x)
39 rtx result = gen_lowpart_if_possible (mode, x);
40 if (result)
41 return result;
43 if (GET_MODE (x) != VOIDmode)
44 return gen_rtx_raw_SUBREG (mode, x,
45 subreg_lowpart_offset (mode, GET_MODE (x)));
47 return NULL_RTX;
50 /* Replace auto-increment addressing modes with explicit operations to access
51 the same addresses without modifying the corresponding registers. */
53 static rtx
54 cleanup_auto_inc_dec (rtx src, machine_mode mem_mode ATTRIBUTE_UNUSED)
56 rtx x = src;
57 if (!AUTO_INC_DEC)
58 return copy_rtx (x);
60 const RTX_CODE code = GET_CODE (x);
61 int i;
62 const char *fmt;
64 switch (code)
66 case REG:
67 CASE_CONST_ANY:
68 case SYMBOL_REF:
69 case CODE_LABEL:
70 case PC:
71 case CC0:
72 case SCRATCH:
73 /* SCRATCH must be shared because they represent distinct values. */
74 return x;
75 case CLOBBER:
76 /* Share clobbers of hard registers (like cc0), but do not share pseudo reg
77 clobbers or clobbers of hard registers that originated as pseudos.
78 This is needed to allow safe register renaming. */
79 if (REG_P (XEXP (x, 0)) && REGNO (XEXP (x, 0)) < FIRST_PSEUDO_REGISTER
80 && ORIGINAL_REGNO (XEXP (x, 0)) == REGNO (XEXP (x, 0)))
81 return x;
82 break;
84 case CONST:
85 if (shared_const_p (x))
86 return x;
87 break;
89 case MEM:
90 mem_mode = GET_MODE (x);
91 break;
93 case PRE_INC:
94 case PRE_DEC:
95 gcc_assert (mem_mode != VOIDmode && mem_mode != BLKmode);
96 return gen_rtx_PLUS (GET_MODE (x),
97 cleanup_auto_inc_dec (XEXP (x, 0), mem_mode),
98 gen_int_mode (code == PRE_INC
99 ? GET_MODE_SIZE (mem_mode)
100 : -GET_MODE_SIZE (mem_mode),
101 GET_MODE (x)));
103 case POST_INC:
104 case POST_DEC:
105 case PRE_MODIFY:
106 case POST_MODIFY:
107 return cleanup_auto_inc_dec (code == PRE_MODIFY
108 ? XEXP (x, 1) : XEXP (x, 0),
109 mem_mode);
111 default:
112 break;
115 /* Copy the various flags, fields, and other information. We assume
116 that all fields need copying, and then clear the fields that should
117 not be copied. That is the sensible default behavior, and forces
118 us to explicitly document why we are *not* copying a flag. */
119 x = shallow_copy_rtx (x);
121 /* We do not copy the USED flag, which is used as a mark bit during
122 walks over the RTL. */
123 RTX_FLAG (x, used) = 0;
125 /* We do not copy FRAME_RELATED for INSNs. */
126 if (INSN_P (x))
127 RTX_FLAG (x, frame_related) = 0;
129 fmt = GET_RTX_FORMAT (code);
130 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
131 if (fmt[i] == 'e')
132 XEXP (x, i) = cleanup_auto_inc_dec (XEXP (x, i), mem_mode);
133 else if (fmt[i] == 'E' || fmt[i] == 'V')
135 int j;
136 XVEC (x, i) = rtvec_alloc (XVECLEN (x, i));
137 for (j = 0; j < XVECLEN (x, i); j++)
138 XVECEXP (x, i, j)
139 = cleanup_auto_inc_dec (XVECEXP (src, i, j), mem_mode);
142 return x;
145 /* Auxiliary data structure for propagate_for_debug_stmt. */
147 struct rtx_subst_pair
149 rtx to;
150 bool adjusted;
153 /* DATA points to an rtx_subst_pair. Return the value that should be
154 substituted. */
156 static rtx
157 propagate_for_debug_subst (rtx from, const_rtx old_rtx, void *data)
159 struct rtx_subst_pair *pair = (struct rtx_subst_pair *)data;
161 if (!rtx_equal_p (from, old_rtx))
162 return NULL_RTX;
163 if (!pair->adjusted)
165 pair->adjusted = true;
166 pair->to = cleanup_auto_inc_dec (pair->to, VOIDmode);
167 pair->to = make_compound_operation (pair->to, SET);
168 return pair->to;
170 return copy_rtx (pair->to);
173 /* Replace all the occurrences of DEST with SRC in DEBUG_INSNs between INSN
174 and LAST, not including INSN, but including LAST. Also stop at the end
175 of THIS_BASIC_BLOCK. */
177 void
178 propagate_for_debug (rtx_insn *insn, rtx_insn *last, rtx dest, rtx src,
179 basic_block this_basic_block)
181 rtx_insn *next, *end = NEXT_INSN (BB_END (this_basic_block));
182 rtx loc;
183 rtx (*saved_rtl_hook_no_emit) (machine_mode, rtx);
185 struct rtx_subst_pair p;
186 p.to = src;
187 p.adjusted = false;
189 next = NEXT_INSN (insn);
190 last = NEXT_INSN (last);
191 saved_rtl_hook_no_emit = rtl_hooks.gen_lowpart_no_emit;
192 rtl_hooks.gen_lowpart_no_emit = gen_lowpart_for_debug;
193 while (next != last && next != end)
195 insn = next;
196 next = NEXT_INSN (insn);
197 if (DEBUG_INSN_P (insn))
199 loc = simplify_replace_fn_rtx (INSN_VAR_LOCATION_LOC (insn),
200 dest, propagate_for_debug_subst, &p);
201 if (loc == INSN_VAR_LOCATION_LOC (insn))
202 continue;
203 INSN_VAR_LOCATION_LOC (insn) = loc;
204 df_insn_rescan (insn);
207 rtl_hooks.gen_lowpart_no_emit = saved_rtl_hook_no_emit;
210 /* Initialize DEBUG to an empty list, and clear USED, if given. */
212 void
213 dead_debug_global_init (struct dead_debug_global *debug, bitmap used)
215 debug->used = used;
216 debug->htab = NULL;
217 if (used)
218 bitmap_clear (used);
221 /* Initialize DEBUG to an empty list, and clear USED, if given. Link
222 back to GLOBAL, if given, and bring in used bits from it. */
224 void
225 dead_debug_local_init (struct dead_debug_local *debug, bitmap used,
226 struct dead_debug_global *global)
228 if (!used && global && global->used)
229 used = BITMAP_ALLOC (NULL);
231 debug->head = NULL;
232 debug->global = global;
233 debug->used = used;
234 debug->to_rescan = NULL;
236 if (used)
238 if (global && global->used)
239 bitmap_copy (used, global->used);
240 else
241 bitmap_clear (used);
245 /* Locate the entry for REG in GLOBAL->htab. */
247 static dead_debug_global_entry *
248 dead_debug_global_find (struct dead_debug_global *global, rtx reg)
250 dead_debug_global_entry temp_entry;
251 temp_entry.reg = reg;
253 dead_debug_global_entry *entry = global->htab->find (&temp_entry);
254 gcc_checking_assert (entry && entry->reg == temp_entry.reg);
256 return entry;
259 /* Insert an entry mapping REG to DTEMP in GLOBAL->htab. */
261 static dead_debug_global_entry *
262 dead_debug_global_insert (struct dead_debug_global *global, rtx reg, rtx dtemp)
264 dead_debug_global_entry temp_entry;
265 temp_entry.reg = reg;
266 temp_entry.dtemp = dtemp;
268 if (!global->htab)
269 global->htab = new hash_table<dead_debug_hash_descr> (31);
271 dead_debug_global_entry **slot = global->htab->find_slot (&temp_entry,
272 INSERT);
273 gcc_checking_assert (!*slot);
274 *slot = XNEW (dead_debug_global_entry);
275 **slot = temp_entry;
276 return *slot;
279 /* If UREGNO, referenced by USE, is a pseudo marked as used in GLOBAL,
280 replace it with a USE of the debug temp recorded for it, and
281 return TRUE. Otherwise, just return FALSE.
283 If PTO_RESCAN is given, instead of rescanning modified INSNs right
284 away, add their UIDs to the bitmap, allocating one of *PTO_RESCAN
285 is NULL. */
287 static bool
288 dead_debug_global_replace_temp (struct dead_debug_global *global,
289 df_ref use, unsigned int uregno,
290 bitmap *pto_rescan)
292 if (!global || uregno < FIRST_PSEUDO_REGISTER
293 || !global->used
294 || !REG_P (*DF_REF_REAL_LOC (use))
295 || REGNO (*DF_REF_REAL_LOC (use)) != uregno
296 || !bitmap_bit_p (global->used, uregno))
297 return false;
299 dead_debug_global_entry *entry
300 = dead_debug_global_find (global, *DF_REF_REAL_LOC (use));
301 gcc_checking_assert (GET_CODE (entry->reg) == REG
302 && REGNO (entry->reg) == uregno);
304 if (!entry->dtemp)
305 return true;
307 *DF_REF_REAL_LOC (use) = entry->dtemp;
308 if (!pto_rescan)
309 df_insn_rescan (DF_REF_INSN (use));
310 else
312 if (!*pto_rescan)
313 *pto_rescan = BITMAP_ALLOC (NULL);
314 bitmap_set_bit (*pto_rescan, INSN_UID (DF_REF_INSN (use)));
317 return true;
320 /* Reset all debug uses in HEAD, and clear DEBUG->to_rescan bits of
321 each reset insn. DEBUG is not otherwise modified. If HEAD is
322 DEBUG->head, DEBUG->head will be set to NULL at the end.
323 Otherwise, entries from DEBUG->head that pertain to reset insns
324 will be removed, and only then rescanned. */
326 static void
327 dead_debug_reset_uses (struct dead_debug_local *debug,
328 struct dead_debug_use *head)
330 bool got_head = (debug->head == head);
331 bitmap rescan;
332 struct dead_debug_use **tailp = &debug->head;
333 struct dead_debug_use *cur;
334 bitmap_iterator bi;
335 unsigned int uid;
337 if (got_head)
338 rescan = NULL;
339 else
340 rescan = BITMAP_ALLOC (NULL);
342 while (head)
344 struct dead_debug_use *next = head->next;
345 rtx_insn *insn;
347 insn = DF_REF_INSN (head->use);
348 if (!next || DF_REF_INSN (next->use) != insn)
350 INSN_VAR_LOCATION_LOC (insn) = gen_rtx_UNKNOWN_VAR_LOC ();
351 if (got_head)
352 df_insn_rescan_debug_internal (insn);
353 else
354 bitmap_set_bit (rescan, INSN_UID (insn));
355 if (debug->to_rescan)
356 bitmap_clear_bit (debug->to_rescan, INSN_UID (insn));
358 XDELETE (head);
359 head = next;
362 if (got_head)
364 debug->head = NULL;
365 return;
368 while ((cur = *tailp))
369 if (bitmap_bit_p (rescan, INSN_UID (DF_REF_INSN (cur->use))))
371 *tailp = cur->next;
372 XDELETE (cur);
374 else
375 tailp = &cur->next;
377 EXECUTE_IF_SET_IN_BITMAP (rescan, 0, uid, bi)
379 struct df_insn_info *insn_info = DF_INSN_UID_SAFE_GET (uid);
380 if (insn_info)
381 df_insn_rescan_debug_internal (insn_info->insn);
384 BITMAP_FREE (rescan);
387 /* Promote pending local uses of pseudos in DEBUG to global
388 substitutions. Uses of non-pseudos are left alone for
389 resetting. */
391 static void
392 dead_debug_promote_uses (struct dead_debug_local *debug)
394 for (struct dead_debug_use *head = debug->head, **headp = &debug->head;
395 head; head = *headp)
397 rtx reg = *DF_REF_REAL_LOC (head->use);
398 df_ref ref;
399 dead_debug_global_entry *entry;
401 if (GET_CODE (reg) != REG
402 || REGNO (reg) < FIRST_PSEUDO_REGISTER)
404 headp = &head->next;
405 continue;
408 if (!debug->global->used)
409 debug->global->used = BITMAP_ALLOC (NULL);
411 bool added = bitmap_set_bit (debug->global->used, REGNO (reg));
412 gcc_checking_assert (added);
414 entry = dead_debug_global_insert (debug->global, reg,
415 make_debug_expr_from_rtl (reg));
417 gcc_checking_assert (entry->dtemp);
419 /* Tentatively remove the USE from the list. */
420 *headp = head->next;
422 if (!debug->to_rescan)
423 debug->to_rescan = BITMAP_ALLOC (NULL);
425 for (ref = DF_REG_USE_CHAIN (REGNO (reg)); ref;
426 ref = DF_REF_NEXT_REG (ref))
427 if (DEBUG_INSN_P (DF_REF_INSN (ref)))
429 if (!dead_debug_global_replace_temp (debug->global, ref,
430 REGNO (reg),
431 &debug->to_rescan))
433 rtx_insn *insn = DF_REF_INSN (ref);
434 INSN_VAR_LOCATION_LOC (insn) = gen_rtx_UNKNOWN_VAR_LOC ();
435 bitmap_set_bit (debug->to_rescan, INSN_UID (insn));
439 for (ref = DF_REG_DEF_CHAIN (REGNO (reg)); ref;
440 ref = DF_REF_NEXT_REG (ref))
441 if (!dead_debug_insert_temp (debug, REGNO (reg), DF_REF_INSN (ref),
442 DEBUG_TEMP_BEFORE_WITH_VALUE))
444 rtx bind;
445 bind = gen_rtx_VAR_LOCATION (GET_MODE (reg),
446 DEBUG_EXPR_TREE_DECL (entry->dtemp),
447 gen_rtx_UNKNOWN_VAR_LOC (),
448 VAR_INIT_STATUS_INITIALIZED);
449 rtx_insn *insn = emit_debug_insn_before (bind, DF_REF_INSN (ref));
450 bitmap_set_bit (debug->to_rescan, INSN_UID (insn));
453 entry->dtemp = NULL;
454 XDELETE (head);
458 /* Reset all debug insns with pending uses. Release the bitmap in it,
459 unless it is USED. USED must be the same bitmap passed to
460 dead_debug_local_init. */
462 void
463 dead_debug_local_finish (struct dead_debug_local *debug, bitmap used)
465 if (debug->global)
466 dead_debug_promote_uses (debug);
468 if (debug->used != used)
469 BITMAP_FREE (debug->used);
471 dead_debug_reset_uses (debug, debug->head);
473 if (debug->to_rescan)
475 bitmap_iterator bi;
476 unsigned int uid;
478 EXECUTE_IF_SET_IN_BITMAP (debug->to_rescan, 0, uid, bi)
480 struct df_insn_info *insn_info = DF_INSN_UID_SAFE_GET (uid);
481 if (insn_info)
482 df_insn_rescan (insn_info->insn);
484 BITMAP_FREE (debug->to_rescan);
488 /* Release GLOBAL->used unless it is the same as USED. Release the
489 mapping hash table if it was initialized. */
491 void
492 dead_debug_global_finish (struct dead_debug_global *global, bitmap used)
494 if (global->used != used)
495 BITMAP_FREE (global->used);
497 delete global->htab;
498 global->htab = NULL;
501 /* Add USE to DEBUG, or substitute it right away if it's a pseudo in
502 the global substitution list. USE must be a dead reference to
503 UREGNO in a debug insn. Create a bitmap for DEBUG as needed. */
505 void
506 dead_debug_add (struct dead_debug_local *debug, df_ref use, unsigned int uregno)
508 if (dead_debug_global_replace_temp (debug->global, use, uregno,
509 &debug->to_rescan))
510 return;
512 struct dead_debug_use *newddu = XNEW (struct dead_debug_use);
514 newddu->use = use;
515 newddu->next = debug->head;
516 debug->head = newddu;
518 if (!debug->used)
519 debug->used = BITMAP_ALLOC (NULL);
521 /* ??? If we dealt with split multi-registers below, we should set
522 all registers for the used mode in case of hardware
523 registers. */
524 bitmap_set_bit (debug->used, uregno);
527 /* Like lowpart_subreg, but if a subreg is not valid for machine, force
528 it anyway - for use in debug insns. */
530 static rtx
531 debug_lowpart_subreg (machine_mode outer_mode, rtx expr,
532 machine_mode inner_mode)
534 if (inner_mode == VOIDmode)
535 inner_mode = GET_MODE (expr);
536 int offset = subreg_lowpart_offset (outer_mode, inner_mode);
537 rtx ret = simplify_gen_subreg (outer_mode, expr, inner_mode, offset);
538 if (ret)
539 return ret;
540 return gen_rtx_raw_SUBREG (outer_mode, expr, offset);
543 /* If UREGNO is referenced by any entry in DEBUG, emit a debug insn
544 before or after INSN (depending on WHERE), that binds a (possibly
545 global) debug temp to the widest-mode use of UREGNO, if WHERE is
546 *_WITH_REG, or the value stored in UREGNO by INSN otherwise, and
547 replace all uses of UREGNO in DEBUG with uses of the debug temp.
548 INSN must be where UREGNO dies, if WHERE is *_BEFORE_*, or where it
549 is set otherwise. Return the number of debug insns emitted. */
552 dead_debug_insert_temp (struct dead_debug_local *debug, unsigned int uregno,
553 rtx_insn *insn, enum debug_temp_where where)
555 struct dead_debug_use **tailp = &debug->head;
556 struct dead_debug_use *cur;
557 struct dead_debug_use *uses = NULL;
558 struct dead_debug_use **usesp = &uses;
559 rtx reg = NULL_RTX;
560 rtx breg;
561 rtx dval = NULL_RTX;
562 rtx bind;
563 bool global;
565 if (!debug->used)
566 return 0;
568 global = (debug->global && debug->global->used
569 && bitmap_bit_p (debug->global->used, uregno));
571 if (!global && !bitmap_clear_bit (debug->used, uregno))
572 return 0;
574 /* Move all uses of uregno from debug->head to uses, setting mode to
575 the widest referenced mode. */
576 while ((cur = *tailp))
578 if (DF_REF_REGNO (cur->use) == uregno)
580 /* If this loc has been changed e.g. to debug_expr already
581 as part of a multi-register use, just drop it. */
582 if (!REG_P (*DF_REF_REAL_LOC (cur->use)))
584 *tailp = cur->next;
585 XDELETE (cur);
586 continue;
588 *usesp = cur;
589 usesp = &cur->next;
590 *tailp = cur->next;
591 cur->next = NULL;
592 if (!reg
593 || (GET_MODE_BITSIZE (GET_MODE (reg))
594 < GET_MODE_BITSIZE (GET_MODE (*DF_REF_REAL_LOC (cur->use)))))
595 reg = *DF_REF_REAL_LOC (cur->use);
597 else
598 tailp = &(*tailp)->next;
601 /* We may have dangling bits in debug->used for registers that were part
602 of a multi-register use, one component of which has been reset. */
603 if (reg == NULL)
605 gcc_checking_assert (!uses);
606 if (!global)
607 return 0;
610 if (global)
612 if (!reg)
613 reg = regno_reg_rtx[uregno];
614 dead_debug_global_entry *entry
615 = dead_debug_global_find (debug->global, reg);
616 gcc_checking_assert (entry->reg == reg);
617 dval = entry->dtemp;
618 if (!dval)
619 return 0;
622 gcc_checking_assert (uses || global);
624 breg = reg;
625 /* Recover the expression INSN stores in REG. */
626 if (where == DEBUG_TEMP_BEFORE_WITH_VALUE)
628 rtx set = single_set (insn);
629 rtx dest, src;
631 if (set)
633 dest = SET_DEST (set);
634 src = SET_SRC (set);
635 /* Lose if the REG-setting insn is a CALL. */
636 if (GET_CODE (src) == CALL)
638 while (uses)
640 cur = uses->next;
641 XDELETE (uses);
642 uses = cur;
644 return 0;
648 /* ??? Should we try to extract it from a PARALLEL? */
649 if (!set)
650 breg = NULL;
651 /* Cool, it's the same REG, we can use SRC. */
652 else if (dest == reg)
653 breg = cleanup_auto_inc_dec (src, VOIDmode);
654 else if (REG_P (dest))
656 /* Hmm... Something's fishy, we should be setting REG here. */
657 if (REGNO (dest) != REGNO (reg))
658 breg = NULL;
659 /* If we're not overwriting all the hardware registers that
660 setting REG in its mode would, we won't know what to bind
661 the debug temp to. ??? We could bind the debug_expr to a
662 CONCAT or PARALLEL with the split multi-registers, and
663 replace them as we found the corresponding sets. */
664 else if (REG_NREGS (reg) != REG_NREGS (dest))
665 breg = NULL;
666 /* Ok, it's the same (hardware) REG, but with a different
667 mode, so SUBREG it. */
668 else
669 breg = debug_lowpart_subreg (GET_MODE (reg),
670 cleanup_auto_inc_dec (src, VOIDmode),
671 GET_MODE (dest));
673 else if (GET_CODE (dest) == SUBREG)
675 /* We should be setting REG here. Lose. */
676 if (REGNO (SUBREG_REG (dest)) != REGNO (reg))
677 breg = NULL;
678 /* Lose if we're setting something other than the lowpart of
679 REG. */
680 else if (!subreg_lowpart_p (dest))
681 breg = NULL;
682 /* If we're not overwriting all the hardware registers that
683 setting REG in its mode would, we won't know what to bind
684 the debug temp to. */
685 else if (REGNO (reg) < FIRST_PSEUDO_REGISTER
686 && (REG_NREGS (reg)
687 != hard_regno_nregs[REGNO (reg)][GET_MODE (dest)]))
688 breg = NULL;
689 /* Yay, we can use SRC, just adjust its mode. */
690 else
691 breg = debug_lowpart_subreg (GET_MODE (reg),
692 cleanup_auto_inc_dec (src, VOIDmode),
693 GET_MODE (dest));
695 /* Oh well, we're out of luck. */
696 else
697 breg = NULL;
699 /* We couldn't figure out the value stored in REG, so reset all
700 of its pending debug uses. */
701 if (!breg)
703 dead_debug_reset_uses (debug, uses);
704 return 0;
708 /* If there's a single (debug) use of an otherwise unused REG, and
709 the debug use is not part of a larger expression, then it
710 probably doesn't make sense to introduce a new debug temp. */
711 if (where == DEBUG_TEMP_AFTER_WITH_REG && !uses->next)
713 rtx_insn *next = DF_REF_INSN (uses->use);
715 if (DEBUG_INSN_P (next) && reg == INSN_VAR_LOCATION_LOC (next))
717 XDELETE (uses);
718 return 0;
722 if (!global)
723 /* Create DEBUG_EXPR (and DEBUG_EXPR_DECL). */
724 dval = make_debug_expr_from_rtl (reg);
726 /* Emit a debug bind insn before the insn in which reg dies. */
727 bind = gen_rtx_VAR_LOCATION (GET_MODE (reg),
728 DEBUG_EXPR_TREE_DECL (dval), breg,
729 VAR_INIT_STATUS_INITIALIZED);
731 if (where == DEBUG_TEMP_AFTER_WITH_REG
732 || where == DEBUG_TEMP_AFTER_WITH_REG_FORCE)
733 bind = emit_debug_insn_after (bind, insn);
734 else
735 bind = emit_debug_insn_before (bind, insn);
736 if (debug->to_rescan == NULL)
737 debug->to_rescan = BITMAP_ALLOC (NULL);
738 bitmap_set_bit (debug->to_rescan, INSN_UID (bind));
740 /* Adjust all uses. */
741 while ((cur = uses))
743 if (GET_MODE (*DF_REF_REAL_LOC (cur->use)) == GET_MODE (reg))
744 *DF_REF_REAL_LOC (cur->use) = dval;
745 else
746 *DF_REF_REAL_LOC (cur->use)
747 = debug_lowpart_subreg (GET_MODE (*DF_REF_REAL_LOC (cur->use)), dval,
748 GET_MODE (dval));
749 /* ??? Should we simplify subreg of subreg? */
750 bitmap_set_bit (debug->to_rescan, INSN_UID (DF_REF_INSN (cur->use)));
751 uses = cur->next;
752 XDELETE (cur);
755 return 1;