re PR middle-end/91603 (Unaligned access in expand_assignment)
[official-gcc.git] / gcc / ira-lives.c
blob2029027125a1a6ca9fa9c8fdd3e9ac80d2d59416
1 /* IRA processing allocno lives to build allocno live ranges.
2 Copyright (C) 2006-2019 Free Software Foundation, Inc.
3 Contributed by Vladimir Makarov <vmakarov@redhat.com>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 #include "config.h"
22 #include "system.h"
23 #include "coretypes.h"
24 #include "backend.h"
25 #include "target.h"
26 #include "rtl.h"
27 #include "predict.h"
28 #include "df.h"
29 #include "memmodel.h"
30 #include "tm_p.h"
31 #include "insn-config.h"
32 #include "regs.h"
33 #include "ira.h"
34 #include "ira-int.h"
35 #include "sparseset.h"
37 /* The code in this file is similar to one in global but the code
38 works on the allocno basis and creates live ranges instead of
39 pseudo-register conflicts. */
41 /* Program points are enumerated by numbers from range
42 0..IRA_MAX_POINT-1. There are approximately two times more program
43 points than insns. Program points are places in the program where
44 liveness info can be changed. In most general case (there are more
45 complicated cases too) some program points correspond to places
46 where input operand dies and other ones correspond to places where
47 output operands are born. */
48 int ira_max_point;
50 /* Arrays of size IRA_MAX_POINT mapping a program point to the allocno
51 live ranges with given start/finish point. */
52 live_range_t *ira_start_point_ranges, *ira_finish_point_ranges;
54 /* Number of the current program point. */
55 static int curr_point;
57 /* Point where register pressure excess started or -1 if there is no
58 register pressure excess. Excess pressure for a register class at
59 some point means that there are more allocnos of given register
60 class living at the point than number of hard-registers of the
61 class available for the allocation. It is defined only for
62 pressure classes. */
63 static int high_pressure_start_point[N_REG_CLASSES];
65 /* Objects live at current point in the scan. */
66 static sparseset objects_live;
68 /* A temporary bitmap used in functions that wish to avoid visiting an allocno
69 multiple times. */
70 static sparseset allocnos_processed;
72 /* Set of hard regs (except eliminable ones) currently live. */
73 static HARD_REG_SET hard_regs_live;
75 /* The loop tree node corresponding to the current basic block. */
76 static ira_loop_tree_node_t curr_bb_node;
78 /* The number of the last processed call. */
79 static int last_call_num;
80 /* The number of last call at which given allocno was saved. */
81 static int *allocno_saved_at_call;
83 /* The value returned by ira_setup_alts for the current instruction;
84 i.e. the set of alternatives that we should consider to be likely
85 candidates during reloading. */
86 static alternative_mask preferred_alternatives;
88 /* If non-NULL, the source operand of a register to register copy for which
89 we should not add a conflict with the copy's destination operand. */
90 static rtx ignore_reg_for_conflicts;
92 /* Record hard register REGNO as now being live. */
93 static void
94 make_hard_regno_live (int regno)
96 SET_HARD_REG_BIT (hard_regs_live, regno);
99 /* Process the definition of hard register REGNO. This updates
100 hard_regs_live and hard reg conflict information for living allocnos. */
101 static void
102 make_hard_regno_dead (int regno)
104 unsigned int i;
105 EXECUTE_IF_SET_IN_SPARSESET (objects_live, i)
107 ira_object_t obj = ira_object_id_map[i];
109 if (ignore_reg_for_conflicts != NULL_RTX
110 && REGNO (ignore_reg_for_conflicts)
111 == (unsigned int) ALLOCNO_REGNO (OBJECT_ALLOCNO (obj)))
112 continue;
114 SET_HARD_REG_BIT (OBJECT_CONFLICT_HARD_REGS (obj), regno);
115 SET_HARD_REG_BIT (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj), regno);
117 CLEAR_HARD_REG_BIT (hard_regs_live, regno);
120 /* Record object OBJ as now being live. Set a bit for it in objects_live,
121 and start a new live range for it if necessary. */
122 static void
123 make_object_live (ira_object_t obj)
125 sparseset_set_bit (objects_live, OBJECT_CONFLICT_ID (obj));
127 live_range_t lr = OBJECT_LIVE_RANGES (obj);
128 if (lr == NULL
129 || (lr->finish != curr_point && lr->finish + 1 != curr_point))
130 ira_add_live_range_to_object (obj, curr_point, -1);
133 /* Update ALLOCNO_EXCESS_PRESSURE_POINTS_NUM for the allocno
134 associated with object OBJ. */
135 static void
136 update_allocno_pressure_excess_length (ira_object_t obj)
138 ira_allocno_t a = OBJECT_ALLOCNO (obj);
139 int start, i;
140 enum reg_class aclass, pclass, cl;
141 live_range_t p;
143 aclass = ALLOCNO_CLASS (a);
144 pclass = ira_pressure_class_translate[aclass];
145 for (i = 0;
146 (cl = ira_reg_class_super_classes[pclass][i]) != LIM_REG_CLASSES;
147 i++)
149 if (! ira_reg_pressure_class_p[cl])
150 continue;
151 if (high_pressure_start_point[cl] < 0)
152 continue;
153 p = OBJECT_LIVE_RANGES (obj);
154 ira_assert (p != NULL);
155 start = (high_pressure_start_point[cl] > p->start
156 ? high_pressure_start_point[cl] : p->start);
157 ALLOCNO_EXCESS_PRESSURE_POINTS_NUM (a) += curr_point - start + 1;
161 /* Process the definition of object OBJ, which is associated with allocno A.
162 This finishes the current live range for it. */
163 static void
164 make_object_dead (ira_object_t obj)
166 live_range_t lr;
167 int regno;
168 int ignore_regno = -1;
169 int ignore_total_regno = -1;
170 int end_regno = -1;
172 sparseset_clear_bit (objects_live, OBJECT_CONFLICT_ID (obj));
174 /* Check whether any part of IGNORE_REG_FOR_CONFLICTS already conflicts
175 with OBJ. */
176 if (ignore_reg_for_conflicts != NULL_RTX
177 && REGNO (ignore_reg_for_conflicts) < FIRST_PSEUDO_REGISTER)
179 end_regno = END_REGNO (ignore_reg_for_conflicts);
180 ignore_regno = ignore_total_regno = REGNO (ignore_reg_for_conflicts);
182 for (regno = ignore_regno; regno < end_regno; regno++)
184 if (TEST_HARD_REG_BIT (OBJECT_CONFLICT_HARD_REGS (obj), regno))
185 ignore_regno = end_regno;
186 if (TEST_HARD_REG_BIT (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj), regno))
187 ignore_total_regno = end_regno;
191 IOR_HARD_REG_SET (OBJECT_CONFLICT_HARD_REGS (obj), hard_regs_live);
192 IOR_HARD_REG_SET (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj), hard_regs_live);
194 /* If IGNORE_REG_FOR_CONFLICTS did not already conflict with OBJ, make
195 sure it still doesn't. */
196 for (regno = ignore_regno; regno < end_regno; regno++)
197 CLEAR_HARD_REG_BIT (OBJECT_CONFLICT_HARD_REGS (obj), regno);
198 for (regno = ignore_total_regno; regno < end_regno; regno++)
199 CLEAR_HARD_REG_BIT (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj), regno);
201 lr = OBJECT_LIVE_RANGES (obj);
202 ira_assert (lr != NULL);
203 lr->finish = curr_point;
204 update_allocno_pressure_excess_length (obj);
207 /* The current register pressures for each pressure class for the current
208 basic block. */
209 static int curr_reg_pressure[N_REG_CLASSES];
211 /* Record that register pressure for PCLASS increased by N registers.
212 Update the current register pressure, maximal register pressure for
213 the current BB and the start point of the register pressure
214 excess. */
215 static void
216 inc_register_pressure (enum reg_class pclass, int n)
218 int i;
219 enum reg_class cl;
221 for (i = 0;
222 (cl = ira_reg_class_super_classes[pclass][i]) != LIM_REG_CLASSES;
223 i++)
225 if (! ira_reg_pressure_class_p[cl])
226 continue;
227 curr_reg_pressure[cl] += n;
228 if (high_pressure_start_point[cl] < 0
229 && (curr_reg_pressure[cl] > ira_class_hard_regs_num[cl]))
230 high_pressure_start_point[cl] = curr_point;
231 if (curr_bb_node->reg_pressure[cl] < curr_reg_pressure[cl])
232 curr_bb_node->reg_pressure[cl] = curr_reg_pressure[cl];
236 /* Record that register pressure for PCLASS has decreased by NREGS
237 registers; update current register pressure, start point of the
238 register pressure excess, and register pressure excess length for
239 living allocnos. */
241 static void
242 dec_register_pressure (enum reg_class pclass, int nregs)
244 int i;
245 unsigned int j;
246 enum reg_class cl;
247 bool set_p = false;
249 for (i = 0;
250 (cl = ira_reg_class_super_classes[pclass][i]) != LIM_REG_CLASSES;
251 i++)
253 if (! ira_reg_pressure_class_p[cl])
254 continue;
255 curr_reg_pressure[cl] -= nregs;
256 ira_assert (curr_reg_pressure[cl] >= 0);
257 if (high_pressure_start_point[cl] >= 0
258 && curr_reg_pressure[cl] <= ira_class_hard_regs_num[cl])
259 set_p = true;
261 if (set_p)
263 EXECUTE_IF_SET_IN_SPARSESET (objects_live, j)
264 update_allocno_pressure_excess_length (ira_object_id_map[j]);
265 for (i = 0;
266 (cl = ira_reg_class_super_classes[pclass][i]) != LIM_REG_CLASSES;
267 i++)
269 if (! ira_reg_pressure_class_p[cl])
270 continue;
271 if (high_pressure_start_point[cl] >= 0
272 && curr_reg_pressure[cl] <= ira_class_hard_regs_num[cl])
273 high_pressure_start_point[cl] = -1;
278 /* Determine from the objects_live bitmap whether REGNO is currently live,
279 and occupies only one object. Return false if we have no information. */
280 static bool
281 pseudo_regno_single_word_and_live_p (int regno)
283 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
284 ira_object_t obj;
286 if (a == NULL)
287 return false;
288 if (ALLOCNO_NUM_OBJECTS (a) > 1)
289 return false;
291 obj = ALLOCNO_OBJECT (a, 0);
293 return sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj));
296 /* Mark the pseudo register REGNO as live. Update all information about
297 live ranges and register pressure. */
298 static void
299 mark_pseudo_regno_live (int regno)
301 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
302 enum reg_class pclass;
303 int i, n, nregs;
305 if (a == NULL)
306 return;
308 /* Invalidate because it is referenced. */
309 allocno_saved_at_call[ALLOCNO_NUM (a)] = 0;
311 n = ALLOCNO_NUM_OBJECTS (a);
312 pclass = ira_pressure_class_translate[ALLOCNO_CLASS (a)];
313 nregs = ira_reg_class_max_nregs[ALLOCNO_CLASS (a)][ALLOCNO_MODE (a)];
314 if (n > 1)
316 /* We track every subobject separately. */
317 gcc_assert (nregs == n);
318 nregs = 1;
321 for (i = 0; i < n; i++)
323 ira_object_t obj = ALLOCNO_OBJECT (a, i);
325 if (sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj)))
326 continue;
328 inc_register_pressure (pclass, nregs);
329 make_object_live (obj);
333 /* Like mark_pseudo_regno_live, but try to only mark one subword of
334 the pseudo as live. SUBWORD indicates which; a value of 0
335 indicates the low part. */
336 static void
337 mark_pseudo_regno_subword_live (int regno, int subword)
339 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
340 int n;
341 enum reg_class pclass;
342 ira_object_t obj;
344 if (a == NULL)
345 return;
347 /* Invalidate because it is referenced. */
348 allocno_saved_at_call[ALLOCNO_NUM (a)] = 0;
350 n = ALLOCNO_NUM_OBJECTS (a);
351 if (n == 1)
353 mark_pseudo_regno_live (regno);
354 return;
357 pclass = ira_pressure_class_translate[ALLOCNO_CLASS (a)];
358 gcc_assert
359 (n == ira_reg_class_max_nregs[ALLOCNO_CLASS (a)][ALLOCNO_MODE (a)]);
360 obj = ALLOCNO_OBJECT (a, subword);
362 if (sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj)))
363 return;
365 inc_register_pressure (pclass, 1);
366 make_object_live (obj);
369 /* Mark the register REG as live. Store a 1 in hard_regs_live for
370 this register, record how many consecutive hardware registers it
371 actually needs. */
372 static void
373 mark_hard_reg_live (rtx reg)
375 int regno = REGNO (reg);
377 if (! TEST_HARD_REG_BIT (ira_no_alloc_regs, regno))
379 int last = END_REGNO (reg);
380 enum reg_class aclass, pclass;
382 while (regno < last)
384 if (! TEST_HARD_REG_BIT (hard_regs_live, regno)
385 && ! TEST_HARD_REG_BIT (eliminable_regset, regno))
387 aclass = ira_hard_regno_allocno_class[regno];
388 pclass = ira_pressure_class_translate[aclass];
389 inc_register_pressure (pclass, 1);
390 make_hard_regno_live (regno);
392 regno++;
397 /* Mark a pseudo, or one of its subwords, as live. REGNO is the pseudo's
398 register number; ORIG_REG is the access in the insn, which may be a
399 subreg. */
400 static void
401 mark_pseudo_reg_live (rtx orig_reg, unsigned regno)
403 if (read_modify_subreg_p (orig_reg))
405 mark_pseudo_regno_subword_live (regno,
406 subreg_lowpart_p (orig_reg) ? 0 : 1);
408 else
409 mark_pseudo_regno_live (regno);
412 /* Mark the register referenced by use or def REF as live. */
413 static void
414 mark_ref_live (df_ref ref)
416 rtx reg = DF_REF_REG (ref);
417 rtx orig_reg = reg;
419 if (GET_CODE (reg) == SUBREG)
420 reg = SUBREG_REG (reg);
422 if (REGNO (reg) >= FIRST_PSEUDO_REGISTER)
423 mark_pseudo_reg_live (orig_reg, REGNO (reg));
424 else
425 mark_hard_reg_live (reg);
428 /* Mark the pseudo register REGNO as dead. Update all information about
429 live ranges and register pressure. */
430 static void
431 mark_pseudo_regno_dead (int regno)
433 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
434 int n, i, nregs;
435 enum reg_class cl;
437 if (a == NULL)
438 return;
440 /* Invalidate because it is referenced. */
441 allocno_saved_at_call[ALLOCNO_NUM (a)] = 0;
443 n = ALLOCNO_NUM_OBJECTS (a);
444 cl = ira_pressure_class_translate[ALLOCNO_CLASS (a)];
445 nregs = ira_reg_class_max_nregs[ALLOCNO_CLASS (a)][ALLOCNO_MODE (a)];
446 if (n > 1)
448 /* We track every subobject separately. */
449 gcc_assert (nregs == n);
450 nregs = 1;
452 for (i = 0; i < n; i++)
454 ira_object_t obj = ALLOCNO_OBJECT (a, i);
455 if (!sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj)))
456 continue;
458 dec_register_pressure (cl, nregs);
459 make_object_dead (obj);
463 /* Like mark_pseudo_regno_dead, but called when we know that only part of the
464 register dies. SUBWORD indicates which; a value of 0 indicates the low part. */
465 static void
466 mark_pseudo_regno_subword_dead (int regno, int subword)
468 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
469 int n;
470 enum reg_class cl;
471 ira_object_t obj;
473 if (a == NULL)
474 return;
476 /* Invalidate because it is referenced. */
477 allocno_saved_at_call[ALLOCNO_NUM (a)] = 0;
479 n = ALLOCNO_NUM_OBJECTS (a);
480 if (n == 1)
481 /* The allocno as a whole doesn't die in this case. */
482 return;
484 cl = ira_pressure_class_translate[ALLOCNO_CLASS (a)];
485 gcc_assert
486 (n == ira_reg_class_max_nregs[ALLOCNO_CLASS (a)][ALLOCNO_MODE (a)]);
488 obj = ALLOCNO_OBJECT (a, subword);
489 if (!sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj)))
490 return;
492 dec_register_pressure (cl, 1);
493 make_object_dead (obj);
496 /* Process the definition of hard register REG. This updates hard_regs_live
497 and hard reg conflict information for living allocnos. */
498 static void
499 mark_hard_reg_dead (rtx reg)
501 int regno = REGNO (reg);
503 if (! TEST_HARD_REG_BIT (ira_no_alloc_regs, regno))
505 int last = END_REGNO (reg);
506 enum reg_class aclass, pclass;
508 while (regno < last)
510 if (TEST_HARD_REG_BIT (hard_regs_live, regno))
512 aclass = ira_hard_regno_allocno_class[regno];
513 pclass = ira_pressure_class_translate[aclass];
514 dec_register_pressure (pclass, 1);
515 make_hard_regno_dead (regno);
517 regno++;
522 /* Mark a pseudo, or one of its subwords, as dead. REGNO is the pseudo's
523 register number; ORIG_REG is the access in the insn, which may be a
524 subreg. */
525 static void
526 mark_pseudo_reg_dead (rtx orig_reg, unsigned regno)
528 if (read_modify_subreg_p (orig_reg))
530 mark_pseudo_regno_subword_dead (regno,
531 subreg_lowpart_p (orig_reg) ? 0 : 1);
533 else
534 mark_pseudo_regno_dead (regno);
537 /* Mark the register referenced by definition DEF as dead, if the
538 definition is a total one. */
539 static void
540 mark_ref_dead (df_ref def)
542 rtx reg = DF_REF_REG (def);
543 rtx orig_reg = reg;
545 if (DF_REF_FLAGS_IS_SET (def, DF_REF_CONDITIONAL))
546 return;
548 if (GET_CODE (reg) == SUBREG)
549 reg = SUBREG_REG (reg);
551 if (DF_REF_FLAGS_IS_SET (def, DF_REF_PARTIAL)
552 && (GET_CODE (orig_reg) != SUBREG
553 || REGNO (reg) < FIRST_PSEUDO_REGISTER
554 || !read_modify_subreg_p (orig_reg)))
555 return;
557 if (REGNO (reg) >= FIRST_PSEUDO_REGISTER)
558 mark_pseudo_reg_dead (orig_reg, REGNO (reg));
559 else
560 mark_hard_reg_dead (reg);
563 /* If REG is a pseudo or a subreg of it, and the class of its allocno
564 intersects CL, make a conflict with pseudo DREG. ORIG_DREG is the
565 rtx actually accessed, it may be identical to DREG or a subreg of it.
566 Advance the current program point before making the conflict if
567 ADVANCE_P. Return TRUE if we will need to advance the current
568 program point. */
569 static bool
570 make_pseudo_conflict (rtx reg, enum reg_class cl, rtx dreg, rtx orig_dreg,
571 bool advance_p)
573 rtx orig_reg = reg;
574 ira_allocno_t a;
576 if (GET_CODE (reg) == SUBREG)
577 reg = SUBREG_REG (reg);
579 if (! REG_P (reg) || REGNO (reg) < FIRST_PSEUDO_REGISTER)
580 return advance_p;
582 a = ira_curr_regno_allocno_map[REGNO (reg)];
583 if (! reg_classes_intersect_p (cl, ALLOCNO_CLASS (a)))
584 return advance_p;
586 if (advance_p)
587 curr_point++;
589 mark_pseudo_reg_live (orig_reg, REGNO (reg));
590 mark_pseudo_reg_live (orig_dreg, REGNO (dreg));
591 mark_pseudo_reg_dead (orig_reg, REGNO (reg));
592 mark_pseudo_reg_dead (orig_dreg, REGNO (dreg));
594 return false;
597 /* Check and make if necessary conflicts for pseudo DREG of class
598 DEF_CL of the current insn with input operand USE of class USE_CL.
599 ORIG_DREG is the rtx actually accessed, it may be identical to
600 DREG or a subreg of it. Advance the current program point before
601 making the conflict if ADVANCE_P. Return TRUE if we will need to
602 advance the current program point. */
603 static bool
604 check_and_make_def_use_conflict (rtx dreg, rtx orig_dreg,
605 enum reg_class def_cl, int use,
606 enum reg_class use_cl, bool advance_p)
608 if (! reg_classes_intersect_p (def_cl, use_cl))
609 return advance_p;
611 advance_p = make_pseudo_conflict (recog_data.operand[use],
612 use_cl, dreg, orig_dreg, advance_p);
614 /* Reload may end up swapping commutative operands, so you
615 have to take both orderings into account. The
616 constraints for the two operands can be completely
617 different. (Indeed, if the constraints for the two
618 operands are the same for all alternatives, there's no
619 point marking them as commutative.) */
620 if (use < recog_data.n_operands - 1
621 && recog_data.constraints[use][0] == '%')
622 advance_p
623 = make_pseudo_conflict (recog_data.operand[use + 1],
624 use_cl, dreg, orig_dreg, advance_p);
625 if (use >= 1
626 && recog_data.constraints[use - 1][0] == '%')
627 advance_p
628 = make_pseudo_conflict (recog_data.operand[use - 1],
629 use_cl, dreg, orig_dreg, advance_p);
630 return advance_p;
633 /* Check and make if necessary conflicts for definition DEF of class
634 DEF_CL of the current insn with input operands. Process only
635 constraints of alternative ALT. */
636 static void
637 check_and_make_def_conflict (int alt, int def, enum reg_class def_cl)
639 int use, use_match;
640 ira_allocno_t a;
641 enum reg_class use_cl, acl;
642 bool advance_p;
643 rtx dreg = recog_data.operand[def];
644 rtx orig_dreg = dreg;
646 if (def_cl == NO_REGS)
647 return;
649 if (GET_CODE (dreg) == SUBREG)
650 dreg = SUBREG_REG (dreg);
652 if (! REG_P (dreg) || REGNO (dreg) < FIRST_PSEUDO_REGISTER)
653 return;
655 a = ira_curr_regno_allocno_map[REGNO (dreg)];
656 acl = ALLOCNO_CLASS (a);
657 if (! reg_classes_intersect_p (acl, def_cl))
658 return;
660 advance_p = true;
662 int n_operands = recog_data.n_operands;
663 const operand_alternative *op_alt = &recog_op_alt[alt * n_operands];
664 for (use = 0; use < n_operands; use++)
666 int alt1;
668 if (use == def || recog_data.operand_type[use] == OP_OUT)
669 continue;
671 if (op_alt[use].anything_ok)
672 use_cl = ALL_REGS;
673 else
674 use_cl = op_alt[use].cl;
676 /* If there's any alternative that allows USE to match DEF, do not
677 record a conflict. If that causes us to create an invalid
678 instruction due to the earlyclobber, reload must fix it up. */
679 for (alt1 = 0; alt1 < recog_data.n_alternatives; alt1++)
681 if (!TEST_BIT (preferred_alternatives, alt1))
682 continue;
683 const operand_alternative *op_alt1
684 = &recog_op_alt[alt1 * n_operands];
685 if (op_alt1[use].matches == def
686 || (use < n_operands - 1
687 && recog_data.constraints[use][0] == '%'
688 && op_alt1[use + 1].matches == def)
689 || (use >= 1
690 && recog_data.constraints[use - 1][0] == '%'
691 && op_alt1[use - 1].matches == def))
692 break;
695 if (alt1 < recog_data.n_alternatives)
696 continue;
698 advance_p = check_and_make_def_use_conflict (dreg, orig_dreg, def_cl,
699 use, use_cl, advance_p);
701 if ((use_match = op_alt[use].matches) >= 0)
703 if (use_match == def)
704 continue;
706 if (op_alt[use_match].anything_ok)
707 use_cl = ALL_REGS;
708 else
709 use_cl = op_alt[use_match].cl;
710 advance_p = check_and_make_def_use_conflict (dreg, orig_dreg, def_cl,
711 use, use_cl, advance_p);
716 /* Make conflicts of early clobber pseudo registers of the current
717 insn with its inputs. Avoid introducing unnecessary conflicts by
718 checking classes of the constraints and pseudos because otherwise
719 significant code degradation is possible for some targets. */
720 static void
721 make_early_clobber_and_input_conflicts (void)
723 int alt;
724 int def, def_match;
725 enum reg_class def_cl;
727 int n_alternatives = recog_data.n_alternatives;
728 int n_operands = recog_data.n_operands;
729 const operand_alternative *op_alt = recog_op_alt;
730 for (alt = 0; alt < n_alternatives; alt++, op_alt += n_operands)
731 if (TEST_BIT (preferred_alternatives, alt))
732 for (def = 0; def < n_operands; def++)
734 def_cl = NO_REGS;
735 if (op_alt[def].earlyclobber)
737 if (op_alt[def].anything_ok)
738 def_cl = ALL_REGS;
739 else
740 def_cl = op_alt[def].cl;
741 check_and_make_def_conflict (alt, def, def_cl);
743 if ((def_match = op_alt[def].matches) >= 0
744 && (op_alt[def_match].earlyclobber
745 || op_alt[def].earlyclobber))
747 if (op_alt[def_match].anything_ok)
748 def_cl = ALL_REGS;
749 else
750 def_cl = op_alt[def_match].cl;
751 check_and_make_def_conflict (alt, def, def_cl);
756 /* Mark early clobber hard registers of the current INSN as live (if
757 LIVE_P) or dead. Return true if there are such registers. */
758 static bool
759 mark_hard_reg_early_clobbers (rtx_insn *insn, bool live_p)
761 df_ref def;
762 bool set_p = false;
764 FOR_EACH_INSN_DEF (def, insn)
765 if (DF_REF_FLAGS_IS_SET (def, DF_REF_MUST_CLOBBER))
767 rtx dreg = DF_REF_REG (def);
769 if (GET_CODE (dreg) == SUBREG)
770 dreg = SUBREG_REG (dreg);
771 if (! REG_P (dreg) || REGNO (dreg) >= FIRST_PSEUDO_REGISTER)
772 continue;
774 /* Hard register clobbers are believed to be early clobber
775 because there is no way to say that non-operand hard
776 register clobbers are not early ones. */
777 if (live_p)
778 mark_ref_live (def);
779 else
780 mark_ref_dead (def);
781 set_p = true;
784 return set_p;
787 /* Checks that CONSTRAINTS permits to use only one hard register. If
788 it is so, the function returns the class of the hard register.
789 Otherwise it returns NO_REGS. */
790 static enum reg_class
791 single_reg_class (const char *constraints, rtx op, rtx equiv_const)
793 int c;
794 enum reg_class cl, next_cl;
795 enum constraint_num cn;
797 cl = NO_REGS;
798 alternative_mask preferred = preferred_alternatives;
799 for (; (c = *constraints); constraints += CONSTRAINT_LEN (c, constraints))
800 if (c == '#')
801 preferred &= ~ALTERNATIVE_BIT (0);
802 else if (c == ',')
803 preferred >>= 1;
804 else if (preferred & 1)
805 switch (c)
807 case 'g':
808 return NO_REGS;
810 default:
811 /* ??? Is this the best way to handle memory constraints? */
812 cn = lookup_constraint (constraints);
813 if (insn_extra_memory_constraint (cn)
814 || insn_extra_special_memory_constraint (cn)
815 || insn_extra_address_constraint (cn))
816 return NO_REGS;
817 if (constraint_satisfied_p (op, cn)
818 || (equiv_const != NULL_RTX
819 && CONSTANT_P (equiv_const)
820 && constraint_satisfied_p (equiv_const, cn)))
821 return NO_REGS;
822 next_cl = reg_class_for_constraint (cn);
823 if (next_cl == NO_REGS)
824 break;
825 if (cl == NO_REGS
826 ? ira_class_singleton[next_cl][GET_MODE (op)] < 0
827 : (ira_class_singleton[cl][GET_MODE (op)]
828 != ira_class_singleton[next_cl][GET_MODE (op)]))
829 return NO_REGS;
830 cl = next_cl;
831 break;
833 case '0': case '1': case '2': case '3': case '4':
834 case '5': case '6': case '7': case '8': case '9':
835 next_cl
836 = single_reg_class (recog_data.constraints[c - '0'],
837 recog_data.operand[c - '0'], NULL_RTX);
838 if (cl == NO_REGS
839 ? ira_class_singleton[next_cl][GET_MODE (op)] < 0
840 : (ira_class_singleton[cl][GET_MODE (op)]
841 != ira_class_singleton[next_cl][GET_MODE (op)]))
842 return NO_REGS;
843 cl = next_cl;
844 break;
846 return cl;
849 /* The function checks that operand OP_NUM of the current insn can use
850 only one hard register. If it is so, the function returns the
851 class of the hard register. Otherwise it returns NO_REGS. */
852 static enum reg_class
853 single_reg_operand_class (int op_num)
855 if (op_num < 0 || recog_data.n_alternatives == 0)
856 return NO_REGS;
857 return single_reg_class (recog_data.constraints[op_num],
858 recog_data.operand[op_num], NULL_RTX);
861 /* The function sets up hard register set *SET to hard registers which
862 might be used by insn reloads because the constraints are too
863 strict. */
864 void
865 ira_implicitly_set_insn_hard_regs (HARD_REG_SET *set,
866 alternative_mask preferred)
868 int i, c, regno = 0;
869 enum reg_class cl;
870 rtx op;
871 machine_mode mode;
873 CLEAR_HARD_REG_SET (*set);
874 for (i = 0; i < recog_data.n_operands; i++)
876 op = recog_data.operand[i];
878 if (GET_CODE (op) == SUBREG)
879 op = SUBREG_REG (op);
881 if (GET_CODE (op) == SCRATCH
882 || (REG_P (op) && (regno = REGNO (op)) >= FIRST_PSEUDO_REGISTER))
884 const char *p = recog_data.constraints[i];
886 mode = (GET_CODE (op) == SCRATCH
887 ? GET_MODE (op) : PSEUDO_REGNO_MODE (regno));
888 cl = NO_REGS;
889 for (; (c = *p); p += CONSTRAINT_LEN (c, p))
890 if (c == '#')
891 preferred &= ~ALTERNATIVE_BIT (0);
892 else if (c == ',')
893 preferred >>= 1;
894 else if (preferred & 1)
896 cl = reg_class_for_constraint (lookup_constraint (p));
897 if (cl != NO_REGS)
899 /* There is no register pressure problem if all of the
900 regs in this class are fixed. */
901 int regno = ira_class_singleton[cl][mode];
902 if (regno >= 0)
903 add_to_hard_reg_set (set, mode, regno);
909 /* Processes input operands, if IN_P, or output operands otherwise of
910 the current insn with FREQ to find allocno which can use only one
911 hard register and makes other currently living allocnos conflicting
912 with the hard register. */
913 static void
914 process_single_reg_class_operands (bool in_p, int freq)
916 int i, regno;
917 unsigned int px;
918 enum reg_class cl;
919 rtx operand;
920 ira_allocno_t operand_a, a;
922 for (i = 0; i < recog_data.n_operands; i++)
924 operand = recog_data.operand[i];
925 if (in_p && recog_data.operand_type[i] != OP_IN
926 && recog_data.operand_type[i] != OP_INOUT)
927 continue;
928 if (! in_p && recog_data.operand_type[i] != OP_OUT
929 && recog_data.operand_type[i] != OP_INOUT)
930 continue;
931 cl = single_reg_operand_class (i);
932 if (cl == NO_REGS)
933 continue;
935 operand_a = NULL;
937 if (GET_CODE (operand) == SUBREG)
938 operand = SUBREG_REG (operand);
940 if (REG_P (operand)
941 && (regno = REGNO (operand)) >= FIRST_PSEUDO_REGISTER)
943 enum reg_class aclass;
945 operand_a = ira_curr_regno_allocno_map[regno];
946 aclass = ALLOCNO_CLASS (operand_a);
947 if (ira_class_subset_p[cl][aclass])
949 /* View the desired allocation of OPERAND as:
951 (REG:YMODE YREGNO),
953 a simplification of:
955 (subreg:YMODE (reg:XMODE XREGNO) OFFSET). */
956 machine_mode ymode, xmode;
957 int xregno, yregno;
958 poly_int64 offset;
960 xmode = recog_data.operand_mode[i];
961 xregno = ira_class_singleton[cl][xmode];
962 gcc_assert (xregno >= 0);
963 ymode = ALLOCNO_MODE (operand_a);
964 offset = subreg_lowpart_offset (ymode, xmode);
965 yregno = simplify_subreg_regno (xregno, xmode, offset, ymode);
966 if (yregno >= 0
967 && ira_class_hard_reg_index[aclass][yregno] >= 0)
969 int cost;
971 ira_allocate_and_set_costs
972 (&ALLOCNO_CONFLICT_HARD_REG_COSTS (operand_a),
973 aclass, 0);
974 ira_init_register_move_cost_if_necessary (xmode);
975 cost = freq * (in_p
976 ? ira_register_move_cost[xmode][aclass][cl]
977 : ira_register_move_cost[xmode][cl][aclass]);
978 ALLOCNO_CONFLICT_HARD_REG_COSTS (operand_a)
979 [ira_class_hard_reg_index[aclass][yregno]] -= cost;
984 EXECUTE_IF_SET_IN_SPARSESET (objects_live, px)
986 ira_object_t obj = ira_object_id_map[px];
987 a = OBJECT_ALLOCNO (obj);
988 if (a != operand_a)
990 /* We could increase costs of A instead of making it
991 conflicting with the hard register. But it works worse
992 because it will be spilled in reload in anyway. */
993 IOR_HARD_REG_SET (OBJECT_CONFLICT_HARD_REGS (obj),
994 reg_class_contents[cl]);
995 IOR_HARD_REG_SET (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj),
996 reg_class_contents[cl]);
1002 /* Look through the CALL_INSN_FUNCTION_USAGE of a call insn INSN, and see if
1003 we find a SET rtx that we can use to deduce that a register can be cheaply
1004 caller-saved. Return such a register, or NULL_RTX if none is found. */
1005 static rtx
1006 find_call_crossed_cheap_reg (rtx_insn *insn)
1008 rtx cheap_reg = NULL_RTX;
1009 rtx exp = CALL_INSN_FUNCTION_USAGE (insn);
1011 while (exp != NULL)
1013 rtx x = XEXP (exp, 0);
1014 if (GET_CODE (x) == SET)
1016 exp = x;
1017 break;
1019 exp = XEXP (exp, 1);
1021 if (exp != NULL)
1023 basic_block bb = BLOCK_FOR_INSN (insn);
1024 rtx reg = SET_SRC (exp);
1025 rtx_insn *prev = PREV_INSN (insn);
1026 while (prev && !(INSN_P (prev)
1027 && BLOCK_FOR_INSN (prev) != bb))
1029 if (NONDEBUG_INSN_P (prev))
1031 rtx set = single_set (prev);
1033 if (set && rtx_equal_p (SET_DEST (set), reg))
1035 rtx src = SET_SRC (set);
1036 if (!REG_P (src) || HARD_REGISTER_P (src)
1037 || !pseudo_regno_single_word_and_live_p (REGNO (src)))
1038 break;
1039 if (!modified_between_p (src, prev, insn))
1040 cheap_reg = src;
1041 break;
1043 if (set && rtx_equal_p (SET_SRC (set), reg))
1045 rtx dest = SET_DEST (set);
1046 if (!REG_P (dest) || HARD_REGISTER_P (dest)
1047 || !pseudo_regno_single_word_and_live_p (REGNO (dest)))
1048 break;
1049 if (!modified_between_p (dest, prev, insn))
1050 cheap_reg = dest;
1051 break;
1054 if (reg_set_p (reg, prev))
1055 break;
1057 prev = PREV_INSN (prev);
1060 return cheap_reg;
1063 /* Determine whether INSN is a register to register copy of the type where
1064 we do not need to make the source and destiniation registers conflict.
1065 If this is a copy instruction, then return the source reg. Otherwise,
1066 return NULL_RTX. */
1068 non_conflicting_reg_copy_p (rtx_insn *insn)
1070 /* Reload has issues with overlapping pseudos being assigned to the
1071 same hard register, so don't allow it. See PR87600 for details. */
1072 if (!targetm.lra_p ())
1073 return NULL_RTX;
1075 rtx set = single_set (insn);
1077 /* Disallow anything other than a simple register to register copy
1078 that has no side effects. */
1079 if (set == NULL_RTX
1080 || !REG_P (SET_DEST (set))
1081 || !REG_P (SET_SRC (set))
1082 || side_effects_p (set))
1083 return NULL_RTX;
1085 int dst_regno = REGNO (SET_DEST (set));
1086 int src_regno = REGNO (SET_SRC (set));
1087 machine_mode mode = GET_MODE (SET_DEST (set));
1089 /* By definition, a register does not conflict with itself, therefore we
1090 do not have to handle it specially. Returning NULL_RTX now, helps
1091 simplify the callers of this function. */
1092 if (dst_regno == src_regno)
1093 return NULL_RTX;
1095 /* Computing conflicts for register pairs is difficult to get right, so
1096 for now, disallow it. */
1097 if ((HARD_REGISTER_NUM_P (dst_regno)
1098 && hard_regno_nregs (dst_regno, mode) != 1)
1099 || (HARD_REGISTER_NUM_P (src_regno)
1100 && hard_regno_nregs (src_regno, mode) != 1))
1101 return NULL_RTX;
1103 return SET_SRC (set);
1106 /* Process insns of the basic block given by its LOOP_TREE_NODE to
1107 update allocno live ranges, allocno hard register conflicts,
1108 intersected calls, and register pressure info for allocnos for the
1109 basic block for and regions containing the basic block. */
1110 static void
1111 process_bb_node_lives (ira_loop_tree_node_t loop_tree_node)
1113 int i, freq;
1114 unsigned int j;
1115 basic_block bb;
1116 rtx_insn *insn;
1117 bitmap_iterator bi;
1118 bitmap reg_live_out;
1119 unsigned int px;
1120 bool set_p;
1122 bb = loop_tree_node->bb;
1123 if (bb != NULL)
1125 for (i = 0; i < ira_pressure_classes_num; i++)
1127 curr_reg_pressure[ira_pressure_classes[i]] = 0;
1128 high_pressure_start_point[ira_pressure_classes[i]] = -1;
1130 curr_bb_node = loop_tree_node;
1131 reg_live_out = df_get_live_out (bb);
1132 sparseset_clear (objects_live);
1133 REG_SET_TO_HARD_REG_SET (hard_regs_live, reg_live_out);
1134 AND_COMPL_HARD_REG_SET (hard_regs_live, eliminable_regset);
1135 AND_COMPL_HARD_REG_SET (hard_regs_live, ira_no_alloc_regs);
1136 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1137 if (TEST_HARD_REG_BIT (hard_regs_live, i))
1139 enum reg_class aclass, pclass, cl;
1141 aclass = ira_allocno_class_translate[REGNO_REG_CLASS (i)];
1142 pclass = ira_pressure_class_translate[aclass];
1143 for (j = 0;
1144 (cl = ira_reg_class_super_classes[pclass][j])
1145 != LIM_REG_CLASSES;
1146 j++)
1148 if (! ira_reg_pressure_class_p[cl])
1149 continue;
1150 curr_reg_pressure[cl]++;
1151 if (curr_bb_node->reg_pressure[cl] < curr_reg_pressure[cl])
1152 curr_bb_node->reg_pressure[cl] = curr_reg_pressure[cl];
1153 ira_assert (curr_reg_pressure[cl]
1154 <= ira_class_hard_regs_num[cl]);
1157 EXECUTE_IF_SET_IN_BITMAP (reg_live_out, FIRST_PSEUDO_REGISTER, j, bi)
1158 mark_pseudo_regno_live (j);
1160 freq = REG_FREQ_FROM_BB (bb);
1161 if (freq == 0)
1162 freq = 1;
1164 /* Invalidate all allocno_saved_at_call entries. */
1165 last_call_num++;
1167 /* Scan the code of this basic block, noting which allocnos and
1168 hard regs are born or die.
1170 Note that this loop treats uninitialized values as live until
1171 the beginning of the block. For example, if an instruction
1172 uses (reg:DI foo), and only (subreg:SI (reg:DI foo) 0) is ever
1173 set, FOO will remain live until the beginning of the block.
1174 Likewise if FOO is not set at all. This is unnecessarily
1175 pessimistic, but it probably doesn't matter much in practice. */
1176 FOR_BB_INSNS_REVERSE (bb, insn)
1178 ira_allocno_t a;
1179 df_ref def, use;
1180 bool call_p;
1182 if (!NONDEBUG_INSN_P (insn))
1183 continue;
1185 if (internal_flag_ira_verbose > 2 && ira_dump_file != NULL)
1186 fprintf (ira_dump_file, " Insn %u(l%d): point = %d\n",
1187 INSN_UID (insn), loop_tree_node->parent->loop_num,
1188 curr_point);
1190 call_p = CALL_P (insn);
1191 ignore_reg_for_conflicts = non_conflicting_reg_copy_p (insn);
1193 /* Mark each defined value as live. We need to do this for
1194 unused values because they still conflict with quantities
1195 that are live at the time of the definition.
1197 Ignore DF_REF_MAY_CLOBBERs on a call instruction. Such
1198 references represent the effect of the called function
1199 on a call-clobbered register. Marking the register as
1200 live would stop us from allocating it to a call-crossing
1201 allocno. */
1202 FOR_EACH_INSN_DEF (def, insn)
1203 if (!call_p || !DF_REF_FLAGS_IS_SET (def, DF_REF_MAY_CLOBBER))
1204 mark_ref_live (def);
1206 /* If INSN has multiple outputs, then any value used in one
1207 of the outputs conflicts with the other outputs. Model this
1208 by making the used value live during the output phase.
1210 It is unsafe to use !single_set here since it will ignore
1211 an unused output. Just because an output is unused does
1212 not mean the compiler can assume the side effect will not
1213 occur. Consider if ALLOCNO appears in the address of an
1214 output and we reload the output. If we allocate ALLOCNO
1215 to the same hard register as an unused output we could
1216 set the hard register before the output reload insn. */
1217 if (GET_CODE (PATTERN (insn)) == PARALLEL && multiple_sets (insn))
1218 FOR_EACH_INSN_USE (use, insn)
1220 int i;
1221 rtx reg;
1223 reg = DF_REF_REG (use);
1224 for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1226 rtx set;
1228 set = XVECEXP (PATTERN (insn), 0, i);
1229 if (GET_CODE (set) == SET
1230 && reg_overlap_mentioned_p (reg, SET_DEST (set)))
1232 /* After the previous loop, this is a no-op if
1233 REG is contained within SET_DEST (SET). */
1234 mark_ref_live (use);
1235 break;
1240 preferred_alternatives = ira_setup_alts (insn);
1241 process_single_reg_class_operands (false, freq);
1243 if (call_p)
1245 /* Try to find a SET in the CALL_INSN_FUNCTION_USAGE, and from
1246 there, try to find a pseudo that is live across the call but
1247 can be cheaply reconstructed from the return value. */
1248 rtx cheap_reg = find_call_crossed_cheap_reg (insn);
1249 if (cheap_reg != NULL_RTX)
1250 add_reg_note (insn, REG_RETURNED, cheap_reg);
1252 last_call_num++;
1253 sparseset_clear (allocnos_processed);
1254 /* The current set of live allocnos are live across the call. */
1255 EXECUTE_IF_SET_IN_SPARSESET (objects_live, i)
1257 ira_object_t obj = ira_object_id_map[i];
1258 a = OBJECT_ALLOCNO (obj);
1259 int num = ALLOCNO_NUM (a);
1260 HARD_REG_SET this_call_used_reg_set;
1262 get_call_reg_set_usage (insn, &this_call_used_reg_set,
1263 call_used_reg_set);
1265 /* Don't allocate allocnos that cross setjmps or any
1266 call, if this function receives a nonlocal
1267 goto. */
1268 if (cfun->has_nonlocal_label
1269 || (!targetm.setjmp_preserves_nonvolatile_regs_p ()
1270 && (find_reg_note (insn, REG_SETJMP, NULL_RTX)
1271 != NULL_RTX)))
1273 SET_HARD_REG_SET (OBJECT_CONFLICT_HARD_REGS (obj));
1274 SET_HARD_REG_SET (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj));
1276 if (can_throw_internal (insn))
1278 IOR_HARD_REG_SET (OBJECT_CONFLICT_HARD_REGS (obj),
1279 this_call_used_reg_set);
1280 IOR_HARD_REG_SET (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj),
1281 this_call_used_reg_set);
1284 if (sparseset_bit_p (allocnos_processed, num))
1285 continue;
1286 sparseset_set_bit (allocnos_processed, num);
1288 if (allocno_saved_at_call[num] != last_call_num)
1289 /* Here we are mimicking caller-save.c behavior
1290 which does not save hard register at a call if
1291 it was saved on previous call in the same basic
1292 block and the hard register was not mentioned
1293 between the two calls. */
1294 ALLOCNO_CALL_FREQ (a) += freq;
1295 /* Mark it as saved at the next call. */
1296 allocno_saved_at_call[num] = last_call_num + 1;
1297 ALLOCNO_CALLS_CROSSED_NUM (a)++;
1298 IOR_HARD_REG_SET (ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS (a),
1299 this_call_used_reg_set);
1300 if (cheap_reg != NULL_RTX
1301 && ALLOCNO_REGNO (a) == (int) REGNO (cheap_reg))
1302 ALLOCNO_CHEAP_CALLS_CROSSED_NUM (a)++;
1306 /* See which defined values die here. Note that we include
1307 the call insn in the lifetimes of these values, so we don't
1308 mistakenly consider, for e.g. an addressing mode with a
1309 side-effect like a post-increment fetching the address,
1310 that the use happens before the call, and the def to happen
1311 after the call: we believe both to happen before the actual
1312 call. (We don't handle return-values here.) */
1313 FOR_EACH_INSN_DEF (def, insn)
1314 if (!call_p || !DF_REF_FLAGS_IS_SET (def, DF_REF_MAY_CLOBBER))
1315 mark_ref_dead (def);
1317 make_early_clobber_and_input_conflicts ();
1319 curr_point++;
1321 /* Mark each used value as live. */
1322 FOR_EACH_INSN_USE (use, insn)
1323 mark_ref_live (use);
1325 process_single_reg_class_operands (true, freq);
1327 set_p = mark_hard_reg_early_clobbers (insn, true);
1329 if (set_p)
1331 mark_hard_reg_early_clobbers (insn, false);
1333 /* Mark each hard reg as live again. For example, a
1334 hard register can be in clobber and in an insn
1335 input. */
1336 FOR_EACH_INSN_USE (use, insn)
1338 rtx ureg = DF_REF_REG (use);
1340 if (GET_CODE (ureg) == SUBREG)
1341 ureg = SUBREG_REG (ureg);
1342 if (! REG_P (ureg) || REGNO (ureg) >= FIRST_PSEUDO_REGISTER)
1343 continue;
1345 mark_ref_live (use);
1349 curr_point++;
1351 ignore_reg_for_conflicts = NULL_RTX;
1353 if (bb_has_eh_pred (bb))
1354 for (j = 0; ; ++j)
1356 unsigned int regno = EH_RETURN_DATA_REGNO (j);
1357 if (regno == INVALID_REGNUM)
1358 break;
1359 make_hard_regno_live (regno);
1362 /* Allocnos can't go in stack regs at the start of a basic block
1363 that is reached by an abnormal edge. Likewise for call
1364 clobbered regs, because caller-save, fixup_abnormal_edges and
1365 possibly the table driven EH machinery are not quite ready to
1366 handle such allocnos live across such edges. */
1367 if (bb_has_abnormal_pred (bb))
1369 #ifdef STACK_REGS
1370 EXECUTE_IF_SET_IN_SPARSESET (objects_live, px)
1372 ira_allocno_t a = OBJECT_ALLOCNO (ira_object_id_map[px]);
1374 ALLOCNO_NO_STACK_REG_P (a) = true;
1375 ALLOCNO_TOTAL_NO_STACK_REG_P (a) = true;
1377 for (px = FIRST_STACK_REG; px <= LAST_STACK_REG; px++)
1378 make_hard_regno_live (px);
1379 #endif
1380 /* No need to record conflicts for call clobbered regs if we
1381 have nonlocal labels around, as we don't ever try to
1382 allocate such regs in this case. */
1383 if (!cfun->has_nonlocal_label
1384 && has_abnormal_call_or_eh_pred_edge_p (bb))
1385 for (px = 0; px < FIRST_PSEUDO_REGISTER; px++)
1386 if (call_used_regs[px]
1387 #ifdef REAL_PIC_OFFSET_TABLE_REGNUM
1388 /* We should create a conflict of PIC pseudo with
1389 PIC hard reg as PIC hard reg can have a wrong
1390 value after jump described by the abnormal edge.
1391 In this case we cannot allocate PIC hard reg to
1392 PIC pseudo as PIC pseudo will also have a wrong
1393 value. This code is not critical as LRA can fix
1394 it but it is better to have the right allocation
1395 earlier. */
1396 || (px == REAL_PIC_OFFSET_TABLE_REGNUM
1397 && pic_offset_table_rtx != NULL_RTX
1398 && REGNO (pic_offset_table_rtx) >= FIRST_PSEUDO_REGISTER)
1399 #endif
1401 make_hard_regno_live (px);
1404 EXECUTE_IF_SET_IN_SPARSESET (objects_live, i)
1405 make_object_dead (ira_object_id_map[i]);
1407 curr_point++;
1410 /* Propagate register pressure to upper loop tree nodes. */
1411 if (loop_tree_node != ira_loop_tree_root)
1412 for (i = 0; i < ira_pressure_classes_num; i++)
1414 enum reg_class pclass;
1416 pclass = ira_pressure_classes[i];
1417 if (loop_tree_node->reg_pressure[pclass]
1418 > loop_tree_node->parent->reg_pressure[pclass])
1419 loop_tree_node->parent->reg_pressure[pclass]
1420 = loop_tree_node->reg_pressure[pclass];
1424 /* Create and set up IRA_START_POINT_RANGES and
1425 IRA_FINISH_POINT_RANGES. */
1426 static void
1427 create_start_finish_chains (void)
1429 ira_object_t obj;
1430 ira_object_iterator oi;
1431 live_range_t r;
1433 ira_start_point_ranges
1434 = (live_range_t *) ira_allocate (ira_max_point * sizeof (live_range_t));
1435 memset (ira_start_point_ranges, 0, ira_max_point * sizeof (live_range_t));
1436 ira_finish_point_ranges
1437 = (live_range_t *) ira_allocate (ira_max_point * sizeof (live_range_t));
1438 memset (ira_finish_point_ranges, 0, ira_max_point * sizeof (live_range_t));
1439 FOR_EACH_OBJECT (obj, oi)
1440 for (r = OBJECT_LIVE_RANGES (obj); r != NULL; r = r->next)
1442 r->start_next = ira_start_point_ranges[r->start];
1443 ira_start_point_ranges[r->start] = r;
1444 r->finish_next = ira_finish_point_ranges[r->finish];
1445 ira_finish_point_ranges[r->finish] = r;
1449 /* Rebuild IRA_START_POINT_RANGES and IRA_FINISH_POINT_RANGES after
1450 new live ranges and program points were added as a result if new
1451 insn generation. */
1452 void
1453 ira_rebuild_start_finish_chains (void)
1455 ira_free (ira_finish_point_ranges);
1456 ira_free (ira_start_point_ranges);
1457 create_start_finish_chains ();
1460 /* Compress allocno live ranges by removing program points where
1461 nothing happens. */
1462 static void
1463 remove_some_program_points_and_update_live_ranges (void)
1465 unsigned i;
1466 int n;
1467 int *map;
1468 ira_object_t obj;
1469 ira_object_iterator oi;
1470 live_range_t r, prev_r, next_r;
1471 sbitmap_iterator sbi;
1472 bool born_p, dead_p, prev_born_p, prev_dead_p;
1474 auto_sbitmap born (ira_max_point);
1475 auto_sbitmap dead (ira_max_point);
1476 bitmap_clear (born);
1477 bitmap_clear (dead);
1478 FOR_EACH_OBJECT (obj, oi)
1479 for (r = OBJECT_LIVE_RANGES (obj); r != NULL; r = r->next)
1481 ira_assert (r->start <= r->finish);
1482 bitmap_set_bit (born, r->start);
1483 bitmap_set_bit (dead, r->finish);
1486 auto_sbitmap born_or_dead (ira_max_point);
1487 bitmap_ior (born_or_dead, born, dead);
1488 map = (int *) ira_allocate (sizeof (int) * ira_max_point);
1489 n = -1;
1490 prev_born_p = prev_dead_p = false;
1491 EXECUTE_IF_SET_IN_BITMAP (born_or_dead, 0, i, sbi)
1493 born_p = bitmap_bit_p (born, i);
1494 dead_p = bitmap_bit_p (dead, i);
1495 if ((prev_born_p && ! prev_dead_p && born_p && ! dead_p)
1496 || (prev_dead_p && ! prev_born_p && dead_p && ! born_p))
1497 map[i] = n;
1498 else
1499 map[i] = ++n;
1500 prev_born_p = born_p;
1501 prev_dead_p = dead_p;
1504 n++;
1505 if (internal_flag_ira_verbose > 1 && ira_dump_file != NULL)
1506 fprintf (ira_dump_file, "Compressing live ranges: from %d to %d - %d%%\n",
1507 ira_max_point, n, 100 * n / ira_max_point);
1508 ira_max_point = n;
1510 FOR_EACH_OBJECT (obj, oi)
1511 for (r = OBJECT_LIVE_RANGES (obj), prev_r = NULL; r != NULL; r = next_r)
1513 next_r = r->next;
1514 r->start = map[r->start];
1515 r->finish = map[r->finish];
1516 if (prev_r == NULL || prev_r->start > r->finish + 1)
1518 prev_r = r;
1519 continue;
1521 prev_r->start = r->start;
1522 prev_r->next = next_r;
1523 ira_finish_live_range (r);
1526 ira_free (map);
1529 /* Print live ranges R to file F. */
1530 void
1531 ira_print_live_range_list (FILE *f, live_range_t r)
1533 for (; r != NULL; r = r->next)
1534 fprintf (f, " [%d..%d]", r->start, r->finish);
1535 fprintf (f, "\n");
1538 DEBUG_FUNCTION void
1539 debug (live_range &ref)
1541 ira_print_live_range_list (stderr, &ref);
1544 DEBUG_FUNCTION void
1545 debug (live_range *ptr)
1547 if (ptr)
1548 debug (*ptr);
1549 else
1550 fprintf (stderr, "<nil>\n");
1553 /* Print live ranges R to stderr. */
1554 void
1555 ira_debug_live_range_list (live_range_t r)
1557 ira_print_live_range_list (stderr, r);
1560 /* Print live ranges of object OBJ to file F. */
1561 static void
1562 print_object_live_ranges (FILE *f, ira_object_t obj)
1564 ira_print_live_range_list (f, OBJECT_LIVE_RANGES (obj));
1567 /* Print live ranges of allocno A to file F. */
1568 static void
1569 print_allocno_live_ranges (FILE *f, ira_allocno_t a)
1571 int n = ALLOCNO_NUM_OBJECTS (a);
1572 int i;
1574 for (i = 0; i < n; i++)
1576 fprintf (f, " a%d(r%d", ALLOCNO_NUM (a), ALLOCNO_REGNO (a));
1577 if (n > 1)
1578 fprintf (f, " [%d]", i);
1579 fprintf (f, "):");
1580 print_object_live_ranges (f, ALLOCNO_OBJECT (a, i));
1584 /* Print live ranges of allocno A to stderr. */
1585 void
1586 ira_debug_allocno_live_ranges (ira_allocno_t a)
1588 print_allocno_live_ranges (stderr, a);
1591 /* Print live ranges of all allocnos to file F. */
1592 static void
1593 print_live_ranges (FILE *f)
1595 ira_allocno_t a;
1596 ira_allocno_iterator ai;
1598 FOR_EACH_ALLOCNO (a, ai)
1599 print_allocno_live_ranges (f, a);
1602 /* Print live ranges of all allocnos to stderr. */
1603 void
1604 ira_debug_live_ranges (void)
1606 print_live_ranges (stderr);
1609 /* The main entry function creates live ranges, set up
1610 CONFLICT_HARD_REGS and TOTAL_CONFLICT_HARD_REGS for objects, and
1611 calculate register pressure info. */
1612 void
1613 ira_create_allocno_live_ranges (void)
1615 objects_live = sparseset_alloc (ira_objects_num);
1616 allocnos_processed = sparseset_alloc (ira_allocnos_num);
1617 curr_point = 0;
1618 last_call_num = 0;
1619 allocno_saved_at_call
1620 = (int *) ira_allocate (ira_allocnos_num * sizeof (int));
1621 memset (allocno_saved_at_call, 0, ira_allocnos_num * sizeof (int));
1622 ira_traverse_loop_tree (true, ira_loop_tree_root, NULL,
1623 process_bb_node_lives);
1624 ira_max_point = curr_point;
1625 create_start_finish_chains ();
1626 if (internal_flag_ira_verbose > 2 && ira_dump_file != NULL)
1627 print_live_ranges (ira_dump_file);
1628 /* Clean up. */
1629 ira_free (allocno_saved_at_call);
1630 sparseset_free (objects_live);
1631 sparseset_free (allocnos_processed);
1634 /* Compress allocno live ranges. */
1635 void
1636 ira_compress_allocno_live_ranges (void)
1638 remove_some_program_points_and_update_live_ranges ();
1639 ira_rebuild_start_finish_chains ();
1640 if (internal_flag_ira_verbose > 2 && ira_dump_file != NULL)
1642 fprintf (ira_dump_file, "Ranges after the compression:\n");
1643 print_live_ranges (ira_dump_file);
1647 /* Free arrays IRA_START_POINT_RANGES and IRA_FINISH_POINT_RANGES. */
1648 void
1649 ira_finish_allocno_live_ranges (void)
1651 ira_free (ira_finish_point_ranges);
1652 ira_free (ira_start_point_ranges);