]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/ira-lives.c
Replace call_used_reg_set with call_used_or_fixed_regs
[thirdparty/gcc.git] / gcc / ira-lives.c
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>.
4
5 This file is part of GCC.
6
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.
11
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.
16
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/>. */
20
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"
36
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. */
40
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;
49
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;
53
54 /* Number of the current program point. */
55 static int curr_point;
56
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];
64
65 /* Objects live at current point in the scan. */
66 static sparseset objects_live;
67
68 /* A temporary bitmap used in functions that wish to avoid visiting an allocno
69 multiple times. */
70 static sparseset allocnos_processed;
71
72 /* Set of hard regs (except eliminable ones) currently live. */
73 static HARD_REG_SET hard_regs_live;
74
75 /* The loop tree node corresponding to the current basic block. */
76 static ira_loop_tree_node_t curr_bb_node;
77
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;
82
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;
87
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;
91
92 /* Record hard register REGNO as now being live. */
93 static void
94 make_hard_regno_live (int regno)
95 {
96 SET_HARD_REG_BIT (hard_regs_live, regno);
97 }
98
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)
103 {
104 unsigned int i;
105 EXECUTE_IF_SET_IN_SPARSESET (objects_live, i)
106 {
107 ira_object_t obj = ira_object_id_map[i];
108
109 if (ignore_reg_for_conflicts != NULL_RTX
110 && REGNO (ignore_reg_for_conflicts)
111 == (unsigned int) ALLOCNO_REGNO (OBJECT_ALLOCNO (obj)))
112 continue;
113
114 SET_HARD_REG_BIT (OBJECT_CONFLICT_HARD_REGS (obj), regno);
115 SET_HARD_REG_BIT (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj), regno);
116 }
117 CLEAR_HARD_REG_BIT (hard_regs_live, regno);
118 }
119
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)
124 {
125 sparseset_set_bit (objects_live, OBJECT_CONFLICT_ID (obj));
126
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);
131 }
132
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)
137 {
138 ira_allocno_t a = OBJECT_ALLOCNO (obj);
139 int start, i;
140 enum reg_class aclass, pclass, cl;
141 live_range_t p;
142
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++)
148 {
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;
158 }
159 }
160
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)
165 {
166 live_range_t lr;
167 int regno;
168 int ignore_regno = -1;
169 int ignore_total_regno = -1;
170 int end_regno = -1;
171
172 sparseset_clear_bit (objects_live, OBJECT_CONFLICT_ID (obj));
173
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)
178 {
179 end_regno = END_REGNO (ignore_reg_for_conflicts);
180 ignore_regno = ignore_total_regno = REGNO (ignore_reg_for_conflicts);
181
182 for (regno = ignore_regno; regno < end_regno; regno++)
183 {
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;
188 }
189 }
190
191 OBJECT_CONFLICT_HARD_REGS (obj) |= hard_regs_live;
192 OBJECT_TOTAL_CONFLICT_HARD_REGS (obj) |= hard_regs_live;
193
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);
200
201 lr = OBJECT_LIVE_RANGES (obj);
202 ira_assert (lr != NULL);
203 lr->finish = curr_point;
204 update_allocno_pressure_excess_length (obj);
205 }
206
207 /* The current register pressures for each pressure class for the current
208 basic block. */
209 static int curr_reg_pressure[N_REG_CLASSES];
210
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)
217 {
218 int i;
219 enum reg_class cl;
220
221 for (i = 0;
222 (cl = ira_reg_class_super_classes[pclass][i]) != LIM_REG_CLASSES;
223 i++)
224 {
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];
233 }
234 }
235
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. */
240
241 static void
242 dec_register_pressure (enum reg_class pclass, int nregs)
243 {
244 int i;
245 unsigned int j;
246 enum reg_class cl;
247 bool set_p = false;
248
249 for (i = 0;
250 (cl = ira_reg_class_super_classes[pclass][i]) != LIM_REG_CLASSES;
251 i++)
252 {
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;
260 }
261 if (set_p)
262 {
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++)
268 {
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;
274 }
275 }
276 }
277
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)
282 {
283 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
284 ira_object_t obj;
285
286 if (a == NULL)
287 return false;
288 if (ALLOCNO_NUM_OBJECTS (a) > 1)
289 return false;
290
291 obj = ALLOCNO_OBJECT (a, 0);
292
293 return sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj));
294 }
295
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)
300 {
301 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
302 enum reg_class pclass;
303 int i, n, nregs;
304
305 if (a == NULL)
306 return;
307
308 /* Invalidate because it is referenced. */
309 allocno_saved_at_call[ALLOCNO_NUM (a)] = 0;
310
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)
315 {
316 /* We track every subobject separately. */
317 gcc_assert (nregs == n);
318 nregs = 1;
319 }
320
321 for (i = 0; i < n; i++)
322 {
323 ira_object_t obj = ALLOCNO_OBJECT (a, i);
324
325 if (sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj)))
326 continue;
327
328 inc_register_pressure (pclass, nregs);
329 make_object_live (obj);
330 }
331 }
332
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)
338 {
339 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
340 int n;
341 enum reg_class pclass;
342 ira_object_t obj;
343
344 if (a == NULL)
345 return;
346
347 /* Invalidate because it is referenced. */
348 allocno_saved_at_call[ALLOCNO_NUM (a)] = 0;
349
350 n = ALLOCNO_NUM_OBJECTS (a);
351 if (n == 1)
352 {
353 mark_pseudo_regno_live (regno);
354 return;
355 }
356
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);
361
362 if (sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj)))
363 return;
364
365 inc_register_pressure (pclass, 1);
366 make_object_live (obj);
367 }
368
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)
374 {
375 int regno = REGNO (reg);
376
377 if (! TEST_HARD_REG_BIT (ira_no_alloc_regs, regno))
378 {
379 int last = END_REGNO (reg);
380 enum reg_class aclass, pclass;
381
382 while (regno < last)
383 {
384 if (! TEST_HARD_REG_BIT (hard_regs_live, regno)
385 && ! TEST_HARD_REG_BIT (eliminable_regset, regno))
386 {
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);
391 }
392 regno++;
393 }
394 }
395 }
396
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)
402 {
403 if (read_modify_subreg_p (orig_reg))
404 {
405 mark_pseudo_regno_subword_live (regno,
406 subreg_lowpart_p (orig_reg) ? 0 : 1);
407 }
408 else
409 mark_pseudo_regno_live (regno);
410 }
411
412 /* Mark the register referenced by use or def REF as live. */
413 static void
414 mark_ref_live (df_ref ref)
415 {
416 rtx reg = DF_REF_REG (ref);
417 rtx orig_reg = reg;
418
419 if (GET_CODE (reg) == SUBREG)
420 reg = SUBREG_REG (reg);
421
422 if (REGNO (reg) >= FIRST_PSEUDO_REGISTER)
423 mark_pseudo_reg_live (orig_reg, REGNO (reg));
424 else
425 mark_hard_reg_live (reg);
426 }
427
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)
432 {
433 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
434 int n, i, nregs;
435 enum reg_class cl;
436
437 if (a == NULL)
438 return;
439
440 /* Invalidate because it is referenced. */
441 allocno_saved_at_call[ALLOCNO_NUM (a)] = 0;
442
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)
447 {
448 /* We track every subobject separately. */
449 gcc_assert (nregs == n);
450 nregs = 1;
451 }
452 for (i = 0; i < n; i++)
453 {
454 ira_object_t obj = ALLOCNO_OBJECT (a, i);
455 if (!sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj)))
456 continue;
457
458 dec_register_pressure (cl, nregs);
459 make_object_dead (obj);
460 }
461 }
462
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)
467 {
468 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
469 int n;
470 enum reg_class cl;
471 ira_object_t obj;
472
473 if (a == NULL)
474 return;
475
476 /* Invalidate because it is referenced. */
477 allocno_saved_at_call[ALLOCNO_NUM (a)] = 0;
478
479 n = ALLOCNO_NUM_OBJECTS (a);
480 if (n == 1)
481 /* The allocno as a whole doesn't die in this case. */
482 return;
483
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)]);
487
488 obj = ALLOCNO_OBJECT (a, subword);
489 if (!sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj)))
490 return;
491
492 dec_register_pressure (cl, 1);
493 make_object_dead (obj);
494 }
495
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)
500 {
501 int regno = REGNO (reg);
502
503 if (! TEST_HARD_REG_BIT (ira_no_alloc_regs, regno))
504 {
505 int last = END_REGNO (reg);
506 enum reg_class aclass, pclass;
507
508 while (regno < last)
509 {
510 if (TEST_HARD_REG_BIT (hard_regs_live, regno))
511 {
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);
516 }
517 regno++;
518 }
519 }
520 }
521
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)
527 {
528 if (read_modify_subreg_p (orig_reg))
529 {
530 mark_pseudo_regno_subword_dead (regno,
531 subreg_lowpart_p (orig_reg) ? 0 : 1);
532 }
533 else
534 mark_pseudo_regno_dead (regno);
535 }
536
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)
541 {
542 rtx reg = DF_REF_REG (def);
543 rtx orig_reg = reg;
544
545 if (DF_REF_FLAGS_IS_SET (def, DF_REF_CONDITIONAL))
546 return;
547
548 if (GET_CODE (reg) == SUBREG)
549 reg = SUBREG_REG (reg);
550
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;
556
557 if (REGNO (reg) >= FIRST_PSEUDO_REGISTER)
558 mark_pseudo_reg_dead (orig_reg, REGNO (reg));
559 else
560 mark_hard_reg_dead (reg);
561 }
562
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)
572 {
573 rtx orig_reg = reg;
574 ira_allocno_t a;
575
576 if (GET_CODE (reg) == SUBREG)
577 reg = SUBREG_REG (reg);
578
579 if (! REG_P (reg) || REGNO (reg) < FIRST_PSEUDO_REGISTER)
580 return advance_p;
581
582 a = ira_curr_regno_allocno_map[REGNO (reg)];
583 if (! reg_classes_intersect_p (cl, ALLOCNO_CLASS (a)))
584 return advance_p;
585
586 if (advance_p)
587 curr_point++;
588
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));
593
594 return false;
595 }
596
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)
607 {
608 if (! reg_classes_intersect_p (def_cl, use_cl))
609 return advance_p;
610
611 advance_p = make_pseudo_conflict (recog_data.operand[use],
612 use_cl, dreg, orig_dreg, advance_p);
613
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;
631 }
632
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)
638 {
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;
645
646 if (def_cl == NO_REGS)
647 return;
648
649 if (GET_CODE (dreg) == SUBREG)
650 dreg = SUBREG_REG (dreg);
651
652 if (! REG_P (dreg) || REGNO (dreg) < FIRST_PSEUDO_REGISTER)
653 return;
654
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;
659
660 advance_p = true;
661
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++)
665 {
666 int alt1;
667
668 if (use == def || recog_data.operand_type[use] == OP_OUT)
669 continue;
670
671 if (op_alt[use].anything_ok)
672 use_cl = ALL_REGS;
673 else
674 use_cl = op_alt[use].cl;
675
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++)
680 {
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;
693 }
694
695 if (alt1 < recog_data.n_alternatives)
696 continue;
697
698 advance_p = check_and_make_def_use_conflict (dreg, orig_dreg, def_cl,
699 use, use_cl, advance_p);
700
701 if ((use_match = op_alt[use].matches) >= 0)
702 {
703 if (use_match == def)
704 continue;
705
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);
712 }
713 }
714 }
715
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)
722 {
723 int alt;
724 int def, def_match;
725 enum reg_class def_cl;
726
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++)
733 {
734 def_cl = NO_REGS;
735 if (op_alt[def].earlyclobber)
736 {
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);
742 }
743 if ((def_match = op_alt[def].matches) >= 0
744 && (op_alt[def_match].earlyclobber
745 || op_alt[def].earlyclobber))
746 {
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);
752 }
753 }
754 }
755
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)
760 {
761 df_ref def;
762 bool set_p = false;
763
764 FOR_EACH_INSN_DEF (def, insn)
765 if (DF_REF_FLAGS_IS_SET (def, DF_REF_MUST_CLOBBER))
766 {
767 rtx dreg = DF_REF_REG (def);
768
769 if (GET_CODE (dreg) == SUBREG)
770 dreg = SUBREG_REG (dreg);
771 if (! REG_P (dreg) || REGNO (dreg) >= FIRST_PSEUDO_REGISTER)
772 continue;
773
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;
782 }
783
784 return set_p;
785 }
786
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)
792 {
793 int c;
794 enum reg_class cl, next_cl;
795 enum constraint_num cn;
796
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)
806 {
807 case 'g':
808 return NO_REGS;
809
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;
832
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;
845 }
846 return cl;
847 }
848
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)
854 {
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);
859 }
860
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)
867 {
868 int i, c, regno = 0;
869 enum reg_class cl;
870 rtx op;
871 machine_mode mode;
872
873 CLEAR_HARD_REG_SET (*set);
874 for (i = 0; i < recog_data.n_operands; i++)
875 {
876 op = recog_data.operand[i];
877
878 if (GET_CODE (op) == SUBREG)
879 op = SUBREG_REG (op);
880
881 if (GET_CODE (op) == SCRATCH
882 || (REG_P (op) && (regno = REGNO (op)) >= FIRST_PSEUDO_REGISTER))
883 {
884 const char *p = recog_data.constraints[i];
885
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)
895 {
896 cl = reg_class_for_constraint (lookup_constraint (p));
897 if (cl != NO_REGS)
898 {
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);
904 }
905 }
906 }
907 }
908 }
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)
915 {
916 int i, regno;
917 unsigned int px;
918 enum reg_class cl;
919 rtx operand;
920 ira_allocno_t operand_a, a;
921
922 for (i = 0; i < recog_data.n_operands; i++)
923 {
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;
934
935 operand_a = NULL;
936
937 if (GET_CODE (operand) == SUBREG)
938 operand = SUBREG_REG (operand);
939
940 if (REG_P (operand)
941 && (regno = REGNO (operand)) >= FIRST_PSEUDO_REGISTER)
942 {
943 enum reg_class aclass;
944
945 operand_a = ira_curr_regno_allocno_map[regno];
946 aclass = ALLOCNO_CLASS (operand_a);
947 if (ira_class_subset_p[cl][aclass])
948 {
949 /* View the desired allocation of OPERAND as:
950
951 (REG:YMODE YREGNO),
952
953 a simplification of:
954
955 (subreg:YMODE (reg:XMODE XREGNO) OFFSET). */
956 machine_mode ymode, xmode;
957 int xregno, yregno;
958 poly_int64 offset;
959
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)
968 {
969 int cost;
970
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;
980 }
981 }
982 }
983
984 EXECUTE_IF_SET_IN_SPARSESET (objects_live, px)
985 {
986 ira_object_t obj = ira_object_id_map[px];
987 a = OBJECT_ALLOCNO (obj);
988 if (a != operand_a)
989 {
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 OBJECT_CONFLICT_HARD_REGS (obj) |= reg_class_contents[cl];
994 OBJECT_TOTAL_CONFLICT_HARD_REGS (obj) |= reg_class_contents[cl];
995 }
996 }
997 }
998 }
999
1000 /* Look through the CALL_INSN_FUNCTION_USAGE of a call insn INSN, and see if
1001 we find a SET rtx that we can use to deduce that a register can be cheaply
1002 caller-saved. Return such a register, or NULL_RTX if none is found. */
1003 static rtx
1004 find_call_crossed_cheap_reg (rtx_insn *insn)
1005 {
1006 rtx cheap_reg = NULL_RTX;
1007 rtx exp = CALL_INSN_FUNCTION_USAGE (insn);
1008
1009 while (exp != NULL)
1010 {
1011 rtx x = XEXP (exp, 0);
1012 if (GET_CODE (x) == SET)
1013 {
1014 exp = x;
1015 break;
1016 }
1017 exp = XEXP (exp, 1);
1018 }
1019 if (exp != NULL)
1020 {
1021 basic_block bb = BLOCK_FOR_INSN (insn);
1022 rtx reg = SET_SRC (exp);
1023 rtx_insn *prev = PREV_INSN (insn);
1024 while (prev && !(INSN_P (prev)
1025 && BLOCK_FOR_INSN (prev) != bb))
1026 {
1027 if (NONDEBUG_INSN_P (prev))
1028 {
1029 rtx set = single_set (prev);
1030
1031 if (set && rtx_equal_p (SET_DEST (set), reg))
1032 {
1033 rtx src = SET_SRC (set);
1034 if (!REG_P (src) || HARD_REGISTER_P (src)
1035 || !pseudo_regno_single_word_and_live_p (REGNO (src)))
1036 break;
1037 if (!modified_between_p (src, prev, insn))
1038 cheap_reg = src;
1039 break;
1040 }
1041 if (set && rtx_equal_p (SET_SRC (set), reg))
1042 {
1043 rtx dest = SET_DEST (set);
1044 if (!REG_P (dest) || HARD_REGISTER_P (dest)
1045 || !pseudo_regno_single_word_and_live_p (REGNO (dest)))
1046 break;
1047 if (!modified_between_p (dest, prev, insn))
1048 cheap_reg = dest;
1049 break;
1050 }
1051
1052 if (reg_set_p (reg, prev))
1053 break;
1054 }
1055 prev = PREV_INSN (prev);
1056 }
1057 }
1058 return cheap_reg;
1059 }
1060
1061 /* Determine whether INSN is a register to register copy of the type where
1062 we do not need to make the source and destiniation registers conflict.
1063 If this is a copy instruction, then return the source reg. Otherwise,
1064 return NULL_RTX. */
1065 rtx
1066 non_conflicting_reg_copy_p (rtx_insn *insn)
1067 {
1068 /* Reload has issues with overlapping pseudos being assigned to the
1069 same hard register, so don't allow it. See PR87600 for details. */
1070 if (!targetm.lra_p ())
1071 return NULL_RTX;
1072
1073 rtx set = single_set (insn);
1074
1075 /* Disallow anything other than a simple register to register copy
1076 that has no side effects. */
1077 if (set == NULL_RTX
1078 || !REG_P (SET_DEST (set))
1079 || !REG_P (SET_SRC (set))
1080 || side_effects_p (set))
1081 return NULL_RTX;
1082
1083 int dst_regno = REGNO (SET_DEST (set));
1084 int src_regno = REGNO (SET_SRC (set));
1085 machine_mode mode = GET_MODE (SET_DEST (set));
1086
1087 /* By definition, a register does not conflict with itself, therefore we
1088 do not have to handle it specially. Returning NULL_RTX now, helps
1089 simplify the callers of this function. */
1090 if (dst_regno == src_regno)
1091 return NULL_RTX;
1092
1093 /* Computing conflicts for register pairs is difficult to get right, so
1094 for now, disallow it. */
1095 if ((HARD_REGISTER_NUM_P (dst_regno)
1096 && hard_regno_nregs (dst_regno, mode) != 1)
1097 || (HARD_REGISTER_NUM_P (src_regno)
1098 && hard_regno_nregs (src_regno, mode) != 1))
1099 return NULL_RTX;
1100
1101 return SET_SRC (set);
1102 }
1103
1104 /* Process insns of the basic block given by its LOOP_TREE_NODE to
1105 update allocno live ranges, allocno hard register conflicts,
1106 intersected calls, and register pressure info for allocnos for the
1107 basic block for and regions containing the basic block. */
1108 static void
1109 process_bb_node_lives (ira_loop_tree_node_t loop_tree_node)
1110 {
1111 int i, freq;
1112 unsigned int j;
1113 basic_block bb;
1114 rtx_insn *insn;
1115 bitmap_iterator bi;
1116 bitmap reg_live_out;
1117 unsigned int px;
1118 bool set_p;
1119
1120 bb = loop_tree_node->bb;
1121 if (bb != NULL)
1122 {
1123 for (i = 0; i < ira_pressure_classes_num; i++)
1124 {
1125 curr_reg_pressure[ira_pressure_classes[i]] = 0;
1126 high_pressure_start_point[ira_pressure_classes[i]] = -1;
1127 }
1128 curr_bb_node = loop_tree_node;
1129 reg_live_out = df_get_live_out (bb);
1130 sparseset_clear (objects_live);
1131 REG_SET_TO_HARD_REG_SET (hard_regs_live, reg_live_out);
1132 hard_regs_live &= ~(eliminable_regset | ira_no_alloc_regs);
1133 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1134 if (TEST_HARD_REG_BIT (hard_regs_live, i))
1135 {
1136 enum reg_class aclass, pclass, cl;
1137
1138 aclass = ira_allocno_class_translate[REGNO_REG_CLASS (i)];
1139 pclass = ira_pressure_class_translate[aclass];
1140 for (j = 0;
1141 (cl = ira_reg_class_super_classes[pclass][j])
1142 != LIM_REG_CLASSES;
1143 j++)
1144 {
1145 if (! ira_reg_pressure_class_p[cl])
1146 continue;
1147 curr_reg_pressure[cl]++;
1148 if (curr_bb_node->reg_pressure[cl] < curr_reg_pressure[cl])
1149 curr_bb_node->reg_pressure[cl] = curr_reg_pressure[cl];
1150 ira_assert (curr_reg_pressure[cl]
1151 <= ira_class_hard_regs_num[cl]);
1152 }
1153 }
1154 EXECUTE_IF_SET_IN_BITMAP (reg_live_out, FIRST_PSEUDO_REGISTER, j, bi)
1155 mark_pseudo_regno_live (j);
1156
1157 freq = REG_FREQ_FROM_BB (bb);
1158 if (freq == 0)
1159 freq = 1;
1160
1161 /* Invalidate all allocno_saved_at_call entries. */
1162 last_call_num++;
1163
1164 /* Scan the code of this basic block, noting which allocnos and
1165 hard regs are born or die.
1166
1167 Note that this loop treats uninitialized values as live until
1168 the beginning of the block. For example, if an instruction
1169 uses (reg:DI foo), and only (subreg:SI (reg:DI foo) 0) is ever
1170 set, FOO will remain live until the beginning of the block.
1171 Likewise if FOO is not set at all. This is unnecessarily
1172 pessimistic, but it probably doesn't matter much in practice. */
1173 FOR_BB_INSNS_REVERSE (bb, insn)
1174 {
1175 ira_allocno_t a;
1176 df_ref def, use;
1177 bool call_p;
1178
1179 if (!NONDEBUG_INSN_P (insn))
1180 continue;
1181
1182 if (internal_flag_ira_verbose > 2 && ira_dump_file != NULL)
1183 fprintf (ira_dump_file, " Insn %u(l%d): point = %d\n",
1184 INSN_UID (insn), loop_tree_node->parent->loop_num,
1185 curr_point);
1186
1187 call_p = CALL_P (insn);
1188 ignore_reg_for_conflicts = non_conflicting_reg_copy_p (insn);
1189
1190 /* Mark each defined value as live. We need to do this for
1191 unused values because they still conflict with quantities
1192 that are live at the time of the definition.
1193
1194 Ignore DF_REF_MAY_CLOBBERs on a call instruction. Such
1195 references represent the effect of the called function
1196 on a call-clobbered register. Marking the register as
1197 live would stop us from allocating it to a call-crossing
1198 allocno. */
1199 FOR_EACH_INSN_DEF (def, insn)
1200 if (!call_p || !DF_REF_FLAGS_IS_SET (def, DF_REF_MAY_CLOBBER))
1201 mark_ref_live (def);
1202
1203 /* If INSN has multiple outputs, then any value used in one
1204 of the outputs conflicts with the other outputs. Model this
1205 by making the used value live during the output phase.
1206
1207 It is unsafe to use !single_set here since it will ignore
1208 an unused output. Just because an output is unused does
1209 not mean the compiler can assume the side effect will not
1210 occur. Consider if ALLOCNO appears in the address of an
1211 output and we reload the output. If we allocate ALLOCNO
1212 to the same hard register as an unused output we could
1213 set the hard register before the output reload insn. */
1214 if (GET_CODE (PATTERN (insn)) == PARALLEL && multiple_sets (insn))
1215 FOR_EACH_INSN_USE (use, insn)
1216 {
1217 int i;
1218 rtx reg;
1219
1220 reg = DF_REF_REG (use);
1221 for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1222 {
1223 rtx set;
1224
1225 set = XVECEXP (PATTERN (insn), 0, i);
1226 if (GET_CODE (set) == SET
1227 && reg_overlap_mentioned_p (reg, SET_DEST (set)))
1228 {
1229 /* After the previous loop, this is a no-op if
1230 REG is contained within SET_DEST (SET). */
1231 mark_ref_live (use);
1232 break;
1233 }
1234 }
1235 }
1236
1237 preferred_alternatives = ira_setup_alts (insn);
1238 process_single_reg_class_operands (false, freq);
1239
1240 if (call_p)
1241 {
1242 /* Try to find a SET in the CALL_INSN_FUNCTION_USAGE, and from
1243 there, try to find a pseudo that is live across the call but
1244 can be cheaply reconstructed from the return value. */
1245 rtx cheap_reg = find_call_crossed_cheap_reg (insn);
1246 if (cheap_reg != NULL_RTX)
1247 add_reg_note (insn, REG_RETURNED, cheap_reg);
1248
1249 last_call_num++;
1250 sparseset_clear (allocnos_processed);
1251 /* The current set of live allocnos are live across the call. */
1252 EXECUTE_IF_SET_IN_SPARSESET (objects_live, i)
1253 {
1254 ira_object_t obj = ira_object_id_map[i];
1255 a = OBJECT_ALLOCNO (obj);
1256 int num = ALLOCNO_NUM (a);
1257 HARD_REG_SET this_call_used_reg_set;
1258
1259 get_call_reg_set_usage (insn, &this_call_used_reg_set,
1260 call_used_or_fixed_regs);
1261
1262 /* Don't allocate allocnos that cross setjmps or any
1263 call, if this function receives a nonlocal
1264 goto. */
1265 if (cfun->has_nonlocal_label
1266 || (!targetm.setjmp_preserves_nonvolatile_regs_p ()
1267 && (find_reg_note (insn, REG_SETJMP, NULL_RTX)
1268 != NULL_RTX)))
1269 {
1270 SET_HARD_REG_SET (OBJECT_CONFLICT_HARD_REGS (obj));
1271 SET_HARD_REG_SET (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj));
1272 }
1273 if (can_throw_internal (insn))
1274 {
1275 OBJECT_CONFLICT_HARD_REGS (obj)
1276 |= this_call_used_reg_set;
1277 OBJECT_TOTAL_CONFLICT_HARD_REGS (obj)
1278 |= this_call_used_reg_set;
1279 }
1280
1281 if (sparseset_bit_p (allocnos_processed, num))
1282 continue;
1283 sparseset_set_bit (allocnos_processed, num);
1284
1285 if (allocno_saved_at_call[num] != last_call_num)
1286 /* Here we are mimicking caller-save.c behavior
1287 which does not save hard register at a call if
1288 it was saved on previous call in the same basic
1289 block and the hard register was not mentioned
1290 between the two calls. */
1291 ALLOCNO_CALL_FREQ (a) += freq;
1292 /* Mark it as saved at the next call. */
1293 allocno_saved_at_call[num] = last_call_num + 1;
1294 ALLOCNO_CALLS_CROSSED_NUM (a)++;
1295 ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS (a)
1296 |= this_call_used_reg_set;
1297 if (cheap_reg != NULL_RTX
1298 && ALLOCNO_REGNO (a) == (int) REGNO (cheap_reg))
1299 ALLOCNO_CHEAP_CALLS_CROSSED_NUM (a)++;
1300 }
1301 }
1302
1303 /* See which defined values die here. Note that we include
1304 the call insn in the lifetimes of these values, so we don't
1305 mistakenly consider, for e.g. an addressing mode with a
1306 side-effect like a post-increment fetching the address,
1307 that the use happens before the call, and the def to happen
1308 after the call: we believe both to happen before the actual
1309 call. (We don't handle return-values here.) */
1310 FOR_EACH_INSN_DEF (def, insn)
1311 if (!call_p || !DF_REF_FLAGS_IS_SET (def, DF_REF_MAY_CLOBBER))
1312 mark_ref_dead (def);
1313
1314 make_early_clobber_and_input_conflicts ();
1315
1316 curr_point++;
1317
1318 /* Mark each used value as live. */
1319 FOR_EACH_INSN_USE (use, insn)
1320 mark_ref_live (use);
1321
1322 process_single_reg_class_operands (true, freq);
1323
1324 set_p = mark_hard_reg_early_clobbers (insn, true);
1325
1326 if (set_p)
1327 {
1328 mark_hard_reg_early_clobbers (insn, false);
1329
1330 /* Mark each hard reg as live again. For example, a
1331 hard register can be in clobber and in an insn
1332 input. */
1333 FOR_EACH_INSN_USE (use, insn)
1334 {
1335 rtx ureg = DF_REF_REG (use);
1336
1337 if (GET_CODE (ureg) == SUBREG)
1338 ureg = SUBREG_REG (ureg);
1339 if (! REG_P (ureg) || REGNO (ureg) >= FIRST_PSEUDO_REGISTER)
1340 continue;
1341
1342 mark_ref_live (use);
1343 }
1344 }
1345
1346 curr_point++;
1347 }
1348 ignore_reg_for_conflicts = NULL_RTX;
1349
1350 if (bb_has_eh_pred (bb))
1351 for (j = 0; ; ++j)
1352 {
1353 unsigned int regno = EH_RETURN_DATA_REGNO (j);
1354 if (regno == INVALID_REGNUM)
1355 break;
1356 make_hard_regno_live (regno);
1357 }
1358
1359 /* Allocnos can't go in stack regs at the start of a basic block
1360 that is reached by an abnormal edge. Likewise for call
1361 clobbered regs, because caller-save, fixup_abnormal_edges and
1362 possibly the table driven EH machinery are not quite ready to
1363 handle such allocnos live across such edges. */
1364 if (bb_has_abnormal_pred (bb))
1365 {
1366 #ifdef STACK_REGS
1367 EXECUTE_IF_SET_IN_SPARSESET (objects_live, px)
1368 {
1369 ira_allocno_t a = OBJECT_ALLOCNO (ira_object_id_map[px]);
1370
1371 ALLOCNO_NO_STACK_REG_P (a) = true;
1372 ALLOCNO_TOTAL_NO_STACK_REG_P (a) = true;
1373 }
1374 for (px = FIRST_STACK_REG; px <= LAST_STACK_REG; px++)
1375 make_hard_regno_live (px);
1376 #endif
1377 /* No need to record conflicts for call clobbered regs if we
1378 have nonlocal labels around, as we don't ever try to
1379 allocate such regs in this case. */
1380 if (!cfun->has_nonlocal_label
1381 && has_abnormal_call_or_eh_pred_edge_p (bb))
1382 for (px = 0; px < FIRST_PSEUDO_REGISTER; px++)
1383 if (call_used_regs[px]
1384 #ifdef REAL_PIC_OFFSET_TABLE_REGNUM
1385 /* We should create a conflict of PIC pseudo with
1386 PIC hard reg as PIC hard reg can have a wrong
1387 value after jump described by the abnormal edge.
1388 In this case we cannot allocate PIC hard reg to
1389 PIC pseudo as PIC pseudo will also have a wrong
1390 value. This code is not critical as LRA can fix
1391 it but it is better to have the right allocation
1392 earlier. */
1393 || (px == REAL_PIC_OFFSET_TABLE_REGNUM
1394 && pic_offset_table_rtx != NULL_RTX
1395 && REGNO (pic_offset_table_rtx) >= FIRST_PSEUDO_REGISTER)
1396 #endif
1397 )
1398 make_hard_regno_live (px);
1399 }
1400
1401 EXECUTE_IF_SET_IN_SPARSESET (objects_live, i)
1402 make_object_dead (ira_object_id_map[i]);
1403
1404 curr_point++;
1405
1406 }
1407 /* Propagate register pressure to upper loop tree nodes. */
1408 if (loop_tree_node != ira_loop_tree_root)
1409 for (i = 0; i < ira_pressure_classes_num; i++)
1410 {
1411 enum reg_class pclass;
1412
1413 pclass = ira_pressure_classes[i];
1414 if (loop_tree_node->reg_pressure[pclass]
1415 > loop_tree_node->parent->reg_pressure[pclass])
1416 loop_tree_node->parent->reg_pressure[pclass]
1417 = loop_tree_node->reg_pressure[pclass];
1418 }
1419 }
1420
1421 /* Create and set up IRA_START_POINT_RANGES and
1422 IRA_FINISH_POINT_RANGES. */
1423 static void
1424 create_start_finish_chains (void)
1425 {
1426 ira_object_t obj;
1427 ira_object_iterator oi;
1428 live_range_t r;
1429
1430 ira_start_point_ranges
1431 = (live_range_t *) ira_allocate (ira_max_point * sizeof (live_range_t));
1432 memset (ira_start_point_ranges, 0, ira_max_point * sizeof (live_range_t));
1433 ira_finish_point_ranges
1434 = (live_range_t *) ira_allocate (ira_max_point * sizeof (live_range_t));
1435 memset (ira_finish_point_ranges, 0, ira_max_point * sizeof (live_range_t));
1436 FOR_EACH_OBJECT (obj, oi)
1437 for (r = OBJECT_LIVE_RANGES (obj); r != NULL; r = r->next)
1438 {
1439 r->start_next = ira_start_point_ranges[r->start];
1440 ira_start_point_ranges[r->start] = r;
1441 r->finish_next = ira_finish_point_ranges[r->finish];
1442 ira_finish_point_ranges[r->finish] = r;
1443 }
1444 }
1445
1446 /* Rebuild IRA_START_POINT_RANGES and IRA_FINISH_POINT_RANGES after
1447 new live ranges and program points were added as a result if new
1448 insn generation. */
1449 void
1450 ira_rebuild_start_finish_chains (void)
1451 {
1452 ira_free (ira_finish_point_ranges);
1453 ira_free (ira_start_point_ranges);
1454 create_start_finish_chains ();
1455 }
1456
1457 /* Compress allocno live ranges by removing program points where
1458 nothing happens. */
1459 static void
1460 remove_some_program_points_and_update_live_ranges (void)
1461 {
1462 unsigned i;
1463 int n;
1464 int *map;
1465 ira_object_t obj;
1466 ira_object_iterator oi;
1467 live_range_t r, prev_r, next_r;
1468 sbitmap_iterator sbi;
1469 bool born_p, dead_p, prev_born_p, prev_dead_p;
1470
1471 auto_sbitmap born (ira_max_point);
1472 auto_sbitmap dead (ira_max_point);
1473 bitmap_clear (born);
1474 bitmap_clear (dead);
1475 FOR_EACH_OBJECT (obj, oi)
1476 for (r = OBJECT_LIVE_RANGES (obj); r != NULL; r = r->next)
1477 {
1478 ira_assert (r->start <= r->finish);
1479 bitmap_set_bit (born, r->start);
1480 bitmap_set_bit (dead, r->finish);
1481 }
1482
1483 auto_sbitmap born_or_dead (ira_max_point);
1484 bitmap_ior (born_or_dead, born, dead);
1485 map = (int *) ira_allocate (sizeof (int) * ira_max_point);
1486 n = -1;
1487 prev_born_p = prev_dead_p = false;
1488 EXECUTE_IF_SET_IN_BITMAP (born_or_dead, 0, i, sbi)
1489 {
1490 born_p = bitmap_bit_p (born, i);
1491 dead_p = bitmap_bit_p (dead, i);
1492 if ((prev_born_p && ! prev_dead_p && born_p && ! dead_p)
1493 || (prev_dead_p && ! prev_born_p && dead_p && ! born_p))
1494 map[i] = n;
1495 else
1496 map[i] = ++n;
1497 prev_born_p = born_p;
1498 prev_dead_p = dead_p;
1499 }
1500
1501 n++;
1502 if (internal_flag_ira_verbose > 1 && ira_dump_file != NULL)
1503 fprintf (ira_dump_file, "Compressing live ranges: from %d to %d - %d%%\n",
1504 ira_max_point, n, 100 * n / ira_max_point);
1505 ira_max_point = n;
1506
1507 FOR_EACH_OBJECT (obj, oi)
1508 for (r = OBJECT_LIVE_RANGES (obj), prev_r = NULL; r != NULL; r = next_r)
1509 {
1510 next_r = r->next;
1511 r->start = map[r->start];
1512 r->finish = map[r->finish];
1513 if (prev_r == NULL || prev_r->start > r->finish + 1)
1514 {
1515 prev_r = r;
1516 continue;
1517 }
1518 prev_r->start = r->start;
1519 prev_r->next = next_r;
1520 ira_finish_live_range (r);
1521 }
1522
1523 ira_free (map);
1524 }
1525
1526 /* Print live ranges R to file F. */
1527 void
1528 ira_print_live_range_list (FILE *f, live_range_t r)
1529 {
1530 for (; r != NULL; r = r->next)
1531 fprintf (f, " [%d..%d]", r->start, r->finish);
1532 fprintf (f, "\n");
1533 }
1534
1535 DEBUG_FUNCTION void
1536 debug (live_range &ref)
1537 {
1538 ira_print_live_range_list (stderr, &ref);
1539 }
1540
1541 DEBUG_FUNCTION void
1542 debug (live_range *ptr)
1543 {
1544 if (ptr)
1545 debug (*ptr);
1546 else
1547 fprintf (stderr, "<nil>\n");
1548 }
1549
1550 /* Print live ranges R to stderr. */
1551 void
1552 ira_debug_live_range_list (live_range_t r)
1553 {
1554 ira_print_live_range_list (stderr, r);
1555 }
1556
1557 /* Print live ranges of object OBJ to file F. */
1558 static void
1559 print_object_live_ranges (FILE *f, ira_object_t obj)
1560 {
1561 ira_print_live_range_list (f, OBJECT_LIVE_RANGES (obj));
1562 }
1563
1564 /* Print live ranges of allocno A to file F. */
1565 static void
1566 print_allocno_live_ranges (FILE *f, ira_allocno_t a)
1567 {
1568 int n = ALLOCNO_NUM_OBJECTS (a);
1569 int i;
1570
1571 for (i = 0; i < n; i++)
1572 {
1573 fprintf (f, " a%d(r%d", ALLOCNO_NUM (a), ALLOCNO_REGNO (a));
1574 if (n > 1)
1575 fprintf (f, " [%d]", i);
1576 fprintf (f, "):");
1577 print_object_live_ranges (f, ALLOCNO_OBJECT (a, i));
1578 }
1579 }
1580
1581 /* Print live ranges of allocno A to stderr. */
1582 void
1583 ira_debug_allocno_live_ranges (ira_allocno_t a)
1584 {
1585 print_allocno_live_ranges (stderr, a);
1586 }
1587
1588 /* Print live ranges of all allocnos to file F. */
1589 static void
1590 print_live_ranges (FILE *f)
1591 {
1592 ira_allocno_t a;
1593 ira_allocno_iterator ai;
1594
1595 FOR_EACH_ALLOCNO (a, ai)
1596 print_allocno_live_ranges (f, a);
1597 }
1598
1599 /* Print live ranges of all allocnos to stderr. */
1600 void
1601 ira_debug_live_ranges (void)
1602 {
1603 print_live_ranges (stderr);
1604 }
1605
1606 /* The main entry function creates live ranges, set up
1607 CONFLICT_HARD_REGS and TOTAL_CONFLICT_HARD_REGS for objects, and
1608 calculate register pressure info. */
1609 void
1610 ira_create_allocno_live_ranges (void)
1611 {
1612 objects_live = sparseset_alloc (ira_objects_num);
1613 allocnos_processed = sparseset_alloc (ira_allocnos_num);
1614 curr_point = 0;
1615 last_call_num = 0;
1616 allocno_saved_at_call
1617 = (int *) ira_allocate (ira_allocnos_num * sizeof (int));
1618 memset (allocno_saved_at_call, 0, ira_allocnos_num * sizeof (int));
1619 ira_traverse_loop_tree (true, ira_loop_tree_root, NULL,
1620 process_bb_node_lives);
1621 ira_max_point = curr_point;
1622 create_start_finish_chains ();
1623 if (internal_flag_ira_verbose > 2 && ira_dump_file != NULL)
1624 print_live_ranges (ira_dump_file);
1625 /* Clean up. */
1626 ira_free (allocno_saved_at_call);
1627 sparseset_free (objects_live);
1628 sparseset_free (allocnos_processed);
1629 }
1630
1631 /* Compress allocno live ranges. */
1632 void
1633 ira_compress_allocno_live_ranges (void)
1634 {
1635 remove_some_program_points_and_update_live_ranges ();
1636 ira_rebuild_start_finish_chains ();
1637 if (internal_flag_ira_verbose > 2 && ira_dump_file != NULL)
1638 {
1639 fprintf (ira_dump_file, "Ranges after the compression:\n");
1640 print_live_ranges (ira_dump_file);
1641 }
1642 }
1643
1644 /* Free arrays IRA_START_POINT_RANGES and IRA_FINISH_POINT_RANGES. */
1645 void
1646 ira_finish_allocno_live_ranges (void)
1647 {
1648 ira_free (ira_finish_point_ranges);
1649 ira_free (ira_start_point_ranges);
1650 }