]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/ira-lives.c
2019-10-18 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
[thirdparty/gcc.git] / gcc / ira-lives.c
CommitLineData
47dd2e78 1/* IRA processing allocno lives to build allocno live ranges.
fbd26352 2 Copyright (C) 2006-2019 Free Software Foundation, Inc.
47dd2e78 3 Contributed by Vladimir Makarov <vmakarov@redhat.com>.
4
5This file is part of GCC.
6
7GCC is free software; you can redistribute it and/or modify it under
8the terms of the GNU General Public License as published by the Free
9Software Foundation; either version 3, or (at your option) any later
10version.
11
12GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13WARRANTY; without even the implied warranty of MERCHANTABILITY or
14FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15for more details.
16
17You should have received a copy of the GNU General Public License
18along 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"
9ef16211 24#include "backend.h"
7c29e30e 25#include "target.h"
47dd2e78 26#include "rtl.h"
7c29e30e 27#include "predict.h"
9ef16211 28#include "df.h"
ad7b10a2 29#include "memmodel.h"
47dd2e78 30#include "tm_p.h"
47dd2e78 31#include "insn-config.h"
7c29e30e 32#include "regs.h"
33#include "ira.h"
34#include "ira-int.h"
47dd2e78 35#include "sparseset.h"
2ec5d342 36#include "function-abi.h"
47dd2e78 37
38/* The code in this file is similar to one in global but the code
39 works on the allocno basis and creates live ranges instead of
40 pseudo-register conflicts. */
41
42/* Program points are enumerated by numbers from range
43 0..IRA_MAX_POINT-1. There are approximately two times more program
44 points than insns. Program points are places in the program where
45 liveness info can be changed. In most general case (there are more
46 complicated cases too) some program points correspond to places
47 where input operand dies and other ones correspond to places where
48 output operands are born. */
49int ira_max_point;
50
51/* Arrays of size IRA_MAX_POINT mapping a program point to the allocno
52 live ranges with given start/finish point. */
fbff82f4 53live_range_t *ira_start_point_ranges, *ira_finish_point_ranges;
47dd2e78 54
55/* Number of the current program point. */
56static int curr_point;
57
58/* Point where register pressure excess started or -1 if there is no
59 register pressure excess. Excess pressure for a register class at
60 some point means that there are more allocnos of given register
61 class living at the point than number of hard-registers of the
66d9a7b9 62 class available for the allocation. It is defined only for
63 pressure classes. */
47dd2e78 64static int high_pressure_start_point[N_REG_CLASSES];
65
be18556f 66/* Objects live at current point in the scan. */
67static sparseset objects_live;
68
69/* A temporary bitmap used in functions that wish to avoid visiting an allocno
70 multiple times. */
71static sparseset allocnos_processed;
47dd2e78 72
73/* Set of hard regs (except eliminable ones) currently live. */
74static HARD_REG_SET hard_regs_live;
75
76/* The loop tree node corresponding to the current basic block. */
77static ira_loop_tree_node_t curr_bb_node;
78
df07a54c 79/* The number of the last processed call. */
80static int last_call_num;
81/* The number of last call at which given allocno was saved. */
82static int *allocno_saved_at_call;
83
f278a92e 84/* The value returned by ira_setup_alts for the current instruction;
85 i.e. the set of alternatives that we should consider to be likely
86 candidates during reloading. */
e1a797ad 87static alternative_mask preferred_alternatives;
88
4bcfedf5 89/* If non-NULL, the source operand of a register to register copy for which
90 we should not add a conflict with the copy's destination operand. */
91static rtx ignore_reg_for_conflicts;
92
7e203840 93/* Record hard register REGNO as now being live. */
47dd2e78 94static void
7e203840 95make_hard_regno_live (int regno)
47dd2e78 96{
b4f5e198 97 SET_HARD_REG_BIT (hard_regs_live, regno);
7e203840 98}
99
100/* Process the definition of hard register REGNO. This updates
101 hard_regs_live and hard reg conflict information for living allocnos. */
102static void
103make_hard_regno_dead (int regno)
104{
105 unsigned int i;
be18556f 106 EXECUTE_IF_SET_IN_SPARSESET (objects_live, i)
47dd2e78 107 {
be18556f 108 ira_object_t obj = ira_object_id_map[i];
66d9a7b9 109
4bcfedf5 110 if (ignore_reg_for_conflicts != NULL_RTX
111 && REGNO (ignore_reg_for_conflicts)
112 == (unsigned int) ALLOCNO_REGNO (OBJECT_ALLOCNO (obj)))
113 continue;
114
ae9587ed 115 SET_HARD_REG_BIT (OBJECT_CONFLICT_HARD_REGS (obj), regno);
116 SET_HARD_REG_BIT (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj), regno);
47dd2e78 117 }
b4f5e198 118 CLEAR_HARD_REG_BIT (hard_regs_live, regno);
119}
120
7e203840 121/* Record object OBJ as now being live. Set a bit for it in objects_live,
122 and start a new live range for it if necessary. */
b4f5e198 123static void
7e203840 124make_object_live (ira_object_t obj)
b4f5e198 125{
be18556f 126 sparseset_set_bit (objects_live, OBJECT_CONFLICT_ID (obj));
b4f5e198 127
7e203840 128 live_range_t lr = OBJECT_LIVE_RANGES (obj);
be18556f 129 if (lr == NULL
130 || (lr->finish != curr_point && lr->finish + 1 != curr_point))
131 ira_add_live_range_to_object (obj, curr_point, -1);
47dd2e78 132}
133
be18556f 134/* Update ALLOCNO_EXCESS_PRESSURE_POINTS_NUM for the allocno
135 associated with object OBJ. */
47dd2e78 136static void
be18556f 137update_allocno_pressure_excess_length (ira_object_t obj)
47dd2e78 138{
be18556f 139 ira_allocno_t a = OBJECT_ALLOCNO (obj);
14792f4e 140 int start, i;
66d9a7b9 141 enum reg_class aclass, pclass, cl;
fbff82f4 142 live_range_t p;
47dd2e78 143
66d9a7b9 144 aclass = ALLOCNO_CLASS (a);
145 pclass = ira_pressure_class_translate[aclass];
14792f4e 146 for (i = 0;
66d9a7b9 147 (cl = ira_reg_class_super_classes[pclass][i]) != LIM_REG_CLASSES;
14792f4e 148 i++)
149 {
66d9a7b9 150 if (! ira_reg_pressure_class_p[cl])
151 continue;
14792f4e 152 if (high_pressure_start_point[cl] < 0)
153 continue;
9d53e372 154 p = OBJECT_LIVE_RANGES (obj);
14792f4e 155 ira_assert (p != NULL);
156 start = (high_pressure_start_point[cl] > p->start
157 ? high_pressure_start_point[cl] : p->start);
158 ALLOCNO_EXCESS_PRESSURE_POINTS_NUM (a) += curr_point - start + 1;
159 }
47dd2e78 160}
161
7e203840 162/* Process the definition of object OBJ, which is associated with allocno A.
163 This finishes the current live range for it. */
47dd2e78 164static void
be18556f 165make_object_dead (ira_object_t obj)
47dd2e78 166{
be18556f 167 live_range_t lr;
b652bc6b 168 int regno;
4bcfedf5 169 int ignore_regno = -1;
b652bc6b 170 int ignore_total_regno = -1;
4bcfedf5 171 int end_regno = -1;
47dd2e78 172
be18556f 173 sparseset_clear_bit (objects_live, OBJECT_CONFLICT_ID (obj));
7e203840 174
4bcfedf5 175 /* Check whether any part of IGNORE_REG_FOR_CONFLICTS already conflicts
176 with OBJ. */
177 if (ignore_reg_for_conflicts != NULL_RTX
178 && REGNO (ignore_reg_for_conflicts) < FIRST_PSEUDO_REGISTER)
179 {
180 end_regno = END_REGNO (ignore_reg_for_conflicts);
b652bc6b 181 ignore_regno = ignore_total_regno = REGNO (ignore_reg_for_conflicts);
4bcfedf5 182
b652bc6b 183 for (regno = ignore_regno; regno < end_regno; regno++)
4bcfedf5 184 {
b652bc6b 185 if (TEST_HARD_REG_BIT (OBJECT_CONFLICT_HARD_REGS (obj), regno))
186 ignore_regno = end_regno;
187 if (TEST_HARD_REG_BIT (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj), regno))
188 ignore_total_regno = end_regno;
4bcfedf5 189 }
190 }
191
247f191e 192 OBJECT_CONFLICT_HARD_REGS (obj) |= hard_regs_live;
193 OBJECT_TOTAL_CONFLICT_HARD_REGS (obj) |= hard_regs_live;
7e203840 194
4bcfedf5 195 /* If IGNORE_REG_FOR_CONFLICTS did not already conflict with OBJ, make
196 sure it still doesn't. */
b652bc6b 197 for (regno = ignore_regno; regno < end_regno; regno++)
198 CLEAR_HARD_REG_BIT (OBJECT_CONFLICT_HARD_REGS (obj), regno);
199 for (regno = ignore_total_regno; regno < end_regno; regno++)
200 CLEAR_HARD_REG_BIT (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj), regno);
4bcfedf5 201
be18556f 202 lr = OBJECT_LIVE_RANGES (obj);
203 ira_assert (lr != NULL);
204 lr->finish = curr_point;
205 update_allocno_pressure_excess_length (obj);
47dd2e78 206}
207
66d9a7b9 208/* The current register pressures for each pressure class for the current
47dd2e78 209 basic block. */
210static int curr_reg_pressure[N_REG_CLASSES];
211
66d9a7b9 212/* Record that register pressure for PCLASS increased by N registers.
213 Update the current register pressure, maximal register pressure for
214 the current BB and the start point of the register pressure
215 excess. */
47dd2e78 216static void
66d9a7b9 217inc_register_pressure (enum reg_class pclass, int n)
47dd2e78 218{
14792f4e 219 int i;
b4f5e198 220 enum reg_class cl;
47dd2e78 221
14792f4e 222 for (i = 0;
66d9a7b9 223 (cl = ira_reg_class_super_classes[pclass][i]) != LIM_REG_CLASSES;
14792f4e 224 i++)
225 {
66d9a7b9 226 if (! ira_reg_pressure_class_p[cl])
227 continue;
b4f5e198 228 curr_reg_pressure[cl] += n;
14792f4e 229 if (high_pressure_start_point[cl] < 0
1072fecf 230 && (curr_reg_pressure[cl] > ira_class_hard_regs_num[cl]))
14792f4e 231 high_pressure_start_point[cl] = curr_point;
232 if (curr_bb_node->reg_pressure[cl] < curr_reg_pressure[cl])
233 curr_bb_node->reg_pressure[cl] = curr_reg_pressure[cl];
234 }
47dd2e78 235}
236
66d9a7b9 237/* Record that register pressure for PCLASS has decreased by NREGS
238 registers; update current register pressure, start point of the
239 register pressure excess, and register pressure excess length for
240 living allocnos. */
b4f5e198 241
47dd2e78 242static void
66d9a7b9 243dec_register_pressure (enum reg_class pclass, int nregs)
47dd2e78 244{
14792f4e 245 int i;
246 unsigned int j;
b4f5e198 247 enum reg_class cl;
248 bool set_p = false;
47dd2e78 249
b4f5e198 250 for (i = 0;
66d9a7b9 251 (cl = ira_reg_class_super_classes[pclass][i]) != LIM_REG_CLASSES;
b4f5e198 252 i++)
47dd2e78 253 {
66d9a7b9 254 if (! ira_reg_pressure_class_p[cl])
255 continue;
b4f5e198 256 curr_reg_pressure[cl] -= nregs;
257 ira_assert (curr_reg_pressure[cl] >= 0);
258 if (high_pressure_start_point[cl] >= 0
1072fecf 259 && curr_reg_pressure[cl] <= ira_class_hard_regs_num[cl])
b4f5e198 260 set_p = true;
261 }
262 if (set_p)
263 {
be18556f 264 EXECUTE_IF_SET_IN_SPARSESET (objects_live, j)
265 update_allocno_pressure_excess_length (ira_object_id_map[j]);
14792f4e 266 for (i = 0;
66d9a7b9 267 (cl = ira_reg_class_super_classes[pclass][i]) != LIM_REG_CLASSES;
14792f4e 268 i++)
66d9a7b9 269 {
270 if (! ira_reg_pressure_class_p[cl])
271 continue;
272 if (high_pressure_start_point[cl] >= 0
1072fecf 273 && curr_reg_pressure[cl] <= ira_class_hard_regs_num[cl])
66d9a7b9 274 high_pressure_start_point[cl] = -1;
275 }
47dd2e78 276 }
47dd2e78 277}
278
c8010b80 279/* Determine from the objects_live bitmap whether REGNO is currently live,
280 and occupies only one object. Return false if we have no information. */
281static bool
282pseudo_regno_single_word_and_live_p (int regno)
283{
284 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
285 ira_object_t obj;
286
287 if (a == NULL)
288 return false;
289 if (ALLOCNO_NUM_OBJECTS (a) > 1)
290 return false;
291
292 obj = ALLOCNO_OBJECT (a, 0);
293
294 return sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj));
295}
296
b4f5e198 297/* Mark the pseudo register REGNO as live. Update all information about
298 live ranges and register pressure. */
47dd2e78 299static void
b4f5e198 300mark_pseudo_regno_live (int regno)
47dd2e78 301{
b4f5e198 302 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
66d9a7b9 303 enum reg_class pclass;
be18556f 304 int i, n, nregs;
47dd2e78 305
b4f5e198 306 if (a == NULL)
307 return;
47dd2e78 308
b4f5e198 309 /* Invalidate because it is referenced. */
310 allocno_saved_at_call[ALLOCNO_NUM (a)] = 0;
47dd2e78 311
be18556f 312 n = ALLOCNO_NUM_OBJECTS (a);
66d9a7b9 313 pclass = ira_pressure_class_translate[ALLOCNO_CLASS (a)];
314 nregs = ira_reg_class_max_nregs[ALLOCNO_CLASS (a)][ALLOCNO_MODE (a)];
be18556f 315 if (n > 1)
316 {
317 /* We track every subobject separately. */
318 gcc_assert (nregs == n);
319 nregs = 1;
320 }
321
322 for (i = 0; i < n; i++)
323 {
324 ira_object_t obj = ALLOCNO_OBJECT (a, i);
66d9a7b9 325
be18556f 326 if (sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj)))
327 continue;
328
66d9a7b9 329 inc_register_pressure (pclass, nregs);
7e203840 330 make_object_live (obj);
be18556f 331 }
332}
333
334/* Like mark_pseudo_regno_live, but try to only mark one subword of
335 the pseudo as live. SUBWORD indicates which; a value of 0
336 indicates the low part. */
337static void
338mark_pseudo_regno_subword_live (int regno, int subword)
339{
340 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
342f23d2 341 int n;
66d9a7b9 342 enum reg_class pclass;
be18556f 343 ira_object_t obj;
344
345 if (a == NULL)
b4f5e198 346 return;
347
be18556f 348 /* Invalidate because it is referenced. */
349 allocno_saved_at_call[ALLOCNO_NUM (a)] = 0;
350
351 n = ALLOCNO_NUM_OBJECTS (a);
352 if (n == 1)
353 {
354 mark_pseudo_regno_live (regno);
355 return;
356 }
357
66d9a7b9 358 pclass = ira_pressure_class_translate[ALLOCNO_CLASS (a)];
342f23d2 359 gcc_assert
360 (n == ira_reg_class_max_nregs[ALLOCNO_CLASS (a)][ALLOCNO_MODE (a)]);
be18556f 361 obj = ALLOCNO_OBJECT (a, subword);
362
363 if (sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj)))
364 return;
365
342f23d2 366 inc_register_pressure (pclass, 1);
7e203840 367 make_object_live (obj);
b4f5e198 368}
369
be18556f 370/* Mark the register REG as live. Store a 1 in hard_regs_live for
371 this register, record how many consecutive hardware registers it
372 actually needs. */
b4f5e198 373static void
374mark_hard_reg_live (rtx reg)
375{
376 int regno = REGNO (reg);
377
378 if (! TEST_HARD_REG_BIT (ira_no_alloc_regs, regno))
47dd2e78 379 {
0933f1d9 380 int last = END_REGNO (reg);
66d9a7b9 381 enum reg_class aclass, pclass;
47dd2e78 382
383 while (regno < last)
384 {
385 if (! TEST_HARD_REG_BIT (hard_regs_live, regno)
386 && ! TEST_HARD_REG_BIT (eliminable_regset, regno))
387 {
66d9a7b9 388 aclass = ira_hard_regno_allocno_class[regno];
389 pclass = ira_pressure_class_translate[aclass];
390 inc_register_pressure (pclass, 1);
7e203840 391 make_hard_regno_live (regno);
47dd2e78 392 }
393 regno++;
394 }
395 }
396}
397
044621b2 398/* Mark a pseudo, or one of its subwords, as live. REGNO is the pseudo's
399 register number; ORIG_REG is the access in the insn, which may be a
400 subreg. */
401static void
402mark_pseudo_reg_live (rtx orig_reg, unsigned regno)
403{
5a462df3 404 if (read_modify_subreg_p (orig_reg))
044621b2 405 {
406 mark_pseudo_regno_subword_live (regno,
407 subreg_lowpart_p (orig_reg) ? 0 : 1);
408 }
409 else
410 mark_pseudo_regno_live (regno);
411}
412
793e7497 413/* Mark the register referenced by use or def REF as live. */
414static void
ed6e85ae 415mark_ref_live (df_ref ref)
47dd2e78 416{
be18556f 417 rtx reg = DF_REF_REG (ref);
418 rtx orig_reg = reg;
793e7497 419
793e7497 420 if (GET_CODE (reg) == SUBREG)
421 reg = SUBREG_REG (reg);
be18556f 422
b4f5e198 423 if (REGNO (reg) >= FIRST_PSEUDO_REGISTER)
044621b2 424 mark_pseudo_reg_live (orig_reg, REGNO (reg));
b4f5e198 425 else
426 mark_hard_reg_live (reg);
47dd2e78 427}
428
b4f5e198 429/* Mark the pseudo register REGNO as dead. Update all information about
430 live ranges and register pressure. */
47dd2e78 431static void
b4f5e198 432mark_pseudo_regno_dead (int regno)
47dd2e78 433{
b4f5e198 434 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
be18556f 435 int n, i, nregs;
b4f5e198 436 enum reg_class cl;
47dd2e78 437
b4f5e198 438 if (a == NULL)
439 return;
47dd2e78 440
b4f5e198 441 /* Invalidate because it is referenced. */
442 allocno_saved_at_call[ALLOCNO_NUM (a)] = 0;
47dd2e78 443
be18556f 444 n = ALLOCNO_NUM_OBJECTS (a);
66d9a7b9 445 cl = ira_pressure_class_translate[ALLOCNO_CLASS (a)];
446 nregs = ira_reg_class_max_nregs[ALLOCNO_CLASS (a)][ALLOCNO_MODE (a)];
be18556f 447 if (n > 1)
448 {
449 /* We track every subobject separately. */
450 gcc_assert (nregs == n);
451 nregs = 1;
452 }
453 for (i = 0; i < n; i++)
454 {
455 ira_object_t obj = ALLOCNO_OBJECT (a, i);
456 if (!sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj)))
457 continue;
458
459 dec_register_pressure (cl, nregs);
460 make_object_dead (obj);
461 }
462}
463
464/* Like mark_pseudo_regno_dead, but called when we know that only part of the
465 register dies. SUBWORD indicates which; a value of 0 indicates the low part. */
466static void
467mark_pseudo_regno_subword_dead (int regno, int subword)
468{
469 ira_allocno_t a = ira_curr_regno_allocno_map[regno];
342f23d2 470 int n;
be18556f 471 enum reg_class cl;
472 ira_object_t obj;
473
474 if (a == NULL)
475 return;
476
477 /* Invalidate because it is referenced. */
478 allocno_saved_at_call[ALLOCNO_NUM (a)] = 0;
479
480 n = ALLOCNO_NUM_OBJECTS (a);
481 if (n == 1)
482 /* The allocno as a whole doesn't die in this case. */
b4f5e198 483 return;
484
66d9a7b9 485 cl = ira_pressure_class_translate[ALLOCNO_CLASS (a)];
342f23d2 486 gcc_assert
487 (n == ira_reg_class_max_nregs[ALLOCNO_CLASS (a)][ALLOCNO_MODE (a)]);
be18556f 488
489 obj = ALLOCNO_OBJECT (a, subword);
490 if (!sparseset_bit_p (objects_live, OBJECT_CONFLICT_ID (obj)))
491 return;
b4f5e198 492
be18556f 493 dec_register_pressure (cl, 1);
494 make_object_dead (obj);
b4f5e198 495}
496
7e203840 497/* Process the definition of hard register REG. This updates hard_regs_live
498 and hard reg conflict information for living allocnos. */
b4f5e198 499static void
500mark_hard_reg_dead (rtx reg)
501{
502 int regno = REGNO (reg);
503
504 if (! TEST_HARD_REG_BIT (ira_no_alloc_regs, regno))
47dd2e78 505 {
6a298741 506 int last = END_REGNO (reg);
66d9a7b9 507 enum reg_class aclass, pclass;
47dd2e78 508
509 while (regno < last)
510 {
511 if (TEST_HARD_REG_BIT (hard_regs_live, regno))
512 {
66d9a7b9 513 aclass = ira_hard_regno_allocno_class[regno];
514 pclass = ira_pressure_class_translate[aclass];
515 dec_register_pressure (pclass, 1);
b4f5e198 516 make_hard_regno_dead (regno);
47dd2e78 517 }
518 regno++;
519 }
520 }
521}
522
044621b2 523/* Mark a pseudo, or one of its subwords, as dead. REGNO is the pseudo's
524 register number; ORIG_REG is the access in the insn, which may be a
525 subreg. */
526static void
527mark_pseudo_reg_dead (rtx orig_reg, unsigned regno)
528{
5a462df3 529 if (read_modify_subreg_p (orig_reg))
044621b2 530 {
531 mark_pseudo_regno_subword_dead (regno,
532 subreg_lowpart_p (orig_reg) ? 0 : 1);
533 }
534 else
535 mark_pseudo_regno_dead (regno);
536}
537
793e7497 538/* Mark the register referenced by definition DEF as dead, if the
539 definition is a total one. */
540static void
ed6e85ae 541mark_ref_dead (df_ref def)
793e7497 542{
be18556f 543 rtx reg = DF_REF_REG (def);
544 rtx orig_reg = reg;
793e7497 545
be18556f 546 if (DF_REF_FLAGS_IS_SET (def, DF_REF_CONDITIONAL))
793e7497 547 return;
548
793e7497 549 if (GET_CODE (reg) == SUBREG)
550 reg = SUBREG_REG (reg);
be18556f 551
552 if (DF_REF_FLAGS_IS_SET (def, DF_REF_PARTIAL)
553 && (GET_CODE (orig_reg) != SUBREG
554 || REGNO (reg) < FIRST_PSEUDO_REGISTER
5a462df3 555 || !read_modify_subreg_p (orig_reg)))
be18556f 556 return;
557
b4f5e198 558 if (REGNO (reg) >= FIRST_PSEUDO_REGISTER)
044621b2 559 mark_pseudo_reg_dead (orig_reg, REGNO (reg));
b4f5e198 560 else
561 mark_hard_reg_dead (reg);
793e7497 562}
563
044621b2 564/* If REG is a pseudo or a subreg of it, and the class of its allocno
565 intersects CL, make a conflict with pseudo DREG. ORIG_DREG is the
9d75589a 566 rtx actually accessed, it may be identical to DREG or a subreg of it.
044621b2 567 Advance the current program point before making the conflict if
568 ADVANCE_P. Return TRUE if we will need to advance the current
569 program point. */
793e7497 570static bool
044621b2 571make_pseudo_conflict (rtx reg, enum reg_class cl, rtx dreg, rtx orig_dreg,
572 bool advance_p)
793e7497 573{
044621b2 574 rtx orig_reg = reg;
7173d4d0 575 ira_allocno_t a;
793e7497 576
7173d4d0 577 if (GET_CODE (reg) == SUBREG)
578 reg = SUBREG_REG (reg);
48e1416a 579
7173d4d0 580 if (! REG_P (reg) || REGNO (reg) < FIRST_PSEUDO_REGISTER)
581 return advance_p;
48e1416a 582
7173d4d0 583 a = ira_curr_regno_allocno_map[REGNO (reg)];
66d9a7b9 584 if (! reg_classes_intersect_p (cl, ALLOCNO_CLASS (a)))
7173d4d0 585 return advance_p;
793e7497 586
7173d4d0 587 if (advance_p)
588 curr_point++;
793e7497 589
044621b2 590 mark_pseudo_reg_live (orig_reg, REGNO (reg));
591 mark_pseudo_reg_live (orig_dreg, REGNO (dreg));
592 mark_pseudo_reg_dead (orig_reg, REGNO (reg));
593 mark_pseudo_reg_dead (orig_dreg, REGNO (dreg));
7173d4d0 594
595 return false;
596}
793e7497 597
7173d4d0 598/* Check and make if necessary conflicts for pseudo DREG of class
599 DEF_CL of the current insn with input operand USE of class USE_CL.
9d75589a 600 ORIG_DREG is the rtx actually accessed, it may be identical to
044621b2 601 DREG or a subreg of it. Advance the current program point before
602 making the conflict if ADVANCE_P. Return TRUE if we will need to
603 advance the current program point. */
7173d4d0 604static bool
044621b2 605check_and_make_def_use_conflict (rtx dreg, rtx orig_dreg,
606 enum reg_class def_cl, int use,
607 enum reg_class use_cl, bool advance_p)
7173d4d0 608{
609 if (! reg_classes_intersect_p (def_cl, use_cl))
610 return advance_p;
48e1416a 611
7173d4d0 612 advance_p = make_pseudo_conflict (recog_data.operand[use],
044621b2 613 use_cl, dreg, orig_dreg, advance_p);
614
7173d4d0 615 /* Reload may end up swapping commutative operands, so you
616 have to take both orderings into account. The
617 constraints for the two operands can be completely
618 different. (Indeed, if the constraints for the two
619 operands are the same for all alternatives, there's no
620 point marking them as commutative.) */
e91a9c3f 621 if (use < recog_data.n_operands - 1
7173d4d0 622 && recog_data.constraints[use][0] == '%')
623 advance_p
624 = make_pseudo_conflict (recog_data.operand[use + 1],
044621b2 625 use_cl, dreg, orig_dreg, advance_p);
7173d4d0 626 if (use >= 1
627 && recog_data.constraints[use - 1][0] == '%')
628 advance_p
629 = make_pseudo_conflict (recog_data.operand[use - 1],
044621b2 630 use_cl, dreg, orig_dreg, advance_p);
7173d4d0 631 return advance_p;
632}
633
634/* Check and make if necessary conflicts for definition DEF of class
635 DEF_CL of the current insn with input operands. Process only
eecd4b90 636 constraints of alternative ALT.
637
638 One of three things is true when this function is called:
639
640 (1) DEF is an earlyclobber for alternative ALT. Input operands then
641 conflict with DEF in ALT unless they explicitly match DEF via 0-9
642 constraints.
643
644 (2) DEF matches (via 0-9 constraints) an operand that is an
645 earlyclobber for alternative ALT. Other input operands then
646 conflict with DEF in ALT.
647
648 (3) [FOR_TIE_P] Some input operand X matches DEF for alternative ALT.
649 Input operands with a different value from X then conflict with
650 DEF in ALT.
651
652 However, there's still a judgement call to make when deciding
653 whether a conflict in ALT is important enough to be reflected
654 in the pan-alternative allocno conflict set. */
7173d4d0 655static void
eecd4b90 656check_and_make_def_conflict (int alt, int def, enum reg_class def_cl,
657 bool for_tie_p)
7173d4d0 658{
659 int use, use_match;
660 ira_allocno_t a;
661 enum reg_class use_cl, acl;
662 bool advance_p;
663 rtx dreg = recog_data.operand[def];
044621b2 664 rtx orig_dreg = dreg;
48e1416a 665
7173d4d0 666 if (def_cl == NO_REGS)
667 return;
48e1416a 668
7173d4d0 669 if (GET_CODE (dreg) == SUBREG)
670 dreg = SUBREG_REG (dreg);
48e1416a 671
7173d4d0 672 if (! REG_P (dreg) || REGNO (dreg) < FIRST_PSEUDO_REGISTER)
673 return;
48e1416a 674
7173d4d0 675 a = ira_curr_regno_allocno_map[REGNO (dreg)];
66d9a7b9 676 acl = ALLOCNO_CLASS (a);
7173d4d0 677 if (! reg_classes_intersect_p (acl, def_cl))
678 return;
48e1416a 679
7173d4d0 680 advance_p = true;
48e1416a 681
757fefec 682 int n_operands = recog_data.n_operands;
8eaaac4d 683 const operand_alternative *op_alt = &recog_op_alt[alt * n_operands];
757fefec 684 for (use = 0; use < n_operands; use++)
7173d4d0 685 {
d09294c0 686 int alt1;
687
7173d4d0 688 if (use == def || recog_data.operand_type[use] == OP_OUT)
c2b66149 689 continue;
48e1416a 690
eecd4b90 691 /* An earlyclobber on DEF doesn't apply to an input operand X if X
692 explicitly matches DEF, but it applies to other input operands
693 even if they happen to be the same value as X.
694
695 In contrast, if an input operand X is tied to a non-earlyclobber
696 DEF, there's no conflict with other input operands that have the
697 same value as X. */
698 if (op_alt[use].matches == def
699 || (for_tie_p
700 && rtx_equal_p (recog_data.operand[use],
701 recog_data.operand[op_alt[def].matched])))
702 continue;
703
757fefec 704 if (op_alt[use].anything_ok)
7173d4d0 705 use_cl = ALL_REGS;
793e7497 706 else
757fefec 707 use_cl = op_alt[use].cl;
eecd4b90 708 if (use_cl == NO_REGS)
709 continue;
710
711 /* If DEF is simply a tied operand, ignore cases in which this
712 alternative requires USE to have a likely-spilled class.
713 Adding a conflict would just constrain USE further if DEF
714 happens to be allocated first. */
715 if (for_tie_p && targetm.class_likely_spilled_p (use_cl))
716 continue;
48e1416a 717
d09294c0 718 /* If there's any alternative that allows USE to match DEF, do not
719 record a conflict. If that causes us to create an invalid
eecd4b90 720 instruction due to the earlyclobber, reload must fix it up.
721
722 Likewise, if we're treating a tied DEF like a partial earlyclobber,
723 do not record a conflict if there's another alternative in which
724 DEF is neither tied nor earlyclobber. */
d09294c0 725 for (alt1 = 0; alt1 < recog_data.n_alternatives; alt1++)
757fefec 726 {
e1a797ad 727 if (!TEST_BIT (preferred_alternatives, alt1))
b5b87913 728 continue;
8eaaac4d 729 const operand_alternative *op_alt1
730 = &recog_op_alt[alt1 * n_operands];
757fefec 731 if (op_alt1[use].matches == def
732 || (use < n_operands - 1
733 && recog_data.constraints[use][0] == '%'
734 && op_alt1[use + 1].matches == def)
735 || (use >= 1
736 && recog_data.constraints[use - 1][0] == '%'
737 && op_alt1[use - 1].matches == def))
738 break;
eecd4b90 739 if (for_tie_p
740 && !op_alt1[def].earlyclobber
741 && op_alt1[def].matched < 0
742 && alternative_class (op_alt1, def) != NO_REGS
743 && alternative_class (op_alt1, use) != NO_REGS)
744 break;
757fefec 745 }
d09294c0 746
747 if (alt1 < recog_data.n_alternatives)
748 continue;
749
044621b2 750 advance_p = check_and_make_def_use_conflict (dreg, orig_dreg, def_cl,
751 use, use_cl, advance_p);
48e1416a 752
757fefec 753 if ((use_match = op_alt[use].matches) >= 0)
7173d4d0 754 {
eecd4b90 755 gcc_checking_assert (use_match != def);
48e1416a 756
757fefec 757 if (op_alt[use_match].anything_ok)
7173d4d0 758 use_cl = ALL_REGS;
759 else
757fefec 760 use_cl = op_alt[use_match].cl;
044621b2 761 advance_p = check_and_make_def_use_conflict (dreg, orig_dreg, def_cl,
762 use, use_cl, advance_p);
7173d4d0 763 }
793e7497 764 }
7173d4d0 765}
766
767/* Make conflicts of early clobber pseudo registers of the current
768 insn with its inputs. Avoid introducing unnecessary conflicts by
769 checking classes of the constraints and pseudos because otherwise
eecd4b90 770 significant code degradation is possible for some targets.
771
772 For these purposes, tying an input to an output makes that output act
773 like an earlyclobber for inputs with a different value, since the output
774 register then has a predetermined purpose on input to the instruction. */
7173d4d0 775static void
776make_early_clobber_and_input_conflicts (void)
777{
778 int alt;
779 int def, def_match;
780 enum reg_class def_cl;
781
757fefec 782 int n_alternatives = recog_data.n_alternatives;
783 int n_operands = recog_data.n_operands;
8eaaac4d 784 const operand_alternative *op_alt = recog_op_alt;
757fefec 785 for (alt = 0; alt < n_alternatives; alt++, op_alt += n_operands)
e1a797ad 786 if (TEST_BIT (preferred_alternatives, alt))
b5b87913 787 for (def = 0; def < n_operands; def++)
788 {
eecd4b90 789 if (op_alt[def].anything_ok)
790 def_cl = ALL_REGS;
791 else
792 def_cl = op_alt[def].cl;
793 if (def_cl != NO_REGS)
b5b87913 794 {
eecd4b90 795 if (op_alt[def].earlyclobber)
796 check_and_make_def_conflict (alt, def, def_cl, false);
797 else if (op_alt[def].matched >= 0
798 && !targetm.class_likely_spilled_p (def_cl))
799 check_and_make_def_conflict (alt, def, def_cl, true);
b5b87913 800 }
eecd4b90 801
b5b87913 802 if ((def_match = op_alt[def].matches) >= 0
803 && (op_alt[def_match].earlyclobber
804 || op_alt[def].earlyclobber))
805 {
806 if (op_alt[def_match].anything_ok)
807 def_cl = ALL_REGS;
808 else
809 def_cl = op_alt[def_match].cl;
eecd4b90 810 check_and_make_def_conflict (alt, def, def_cl, false);
b5b87913 811 }
812 }
7173d4d0 813}
814
815/* Mark early clobber hard registers of the current INSN as live (if
816 LIVE_P) or dead. Return true if there are such registers. */
817static bool
56067879 818mark_hard_reg_early_clobbers (rtx_insn *insn, bool live_p)
7173d4d0 819{
be10bb5a 820 df_ref def;
7173d4d0 821 bool set_p = false;
793e7497 822
be10bb5a 823 FOR_EACH_INSN_DEF (def, insn)
824 if (DF_REF_FLAGS_IS_SET (def, DF_REF_MUST_CLOBBER))
793e7497 825 {
be10bb5a 826 rtx dreg = DF_REF_REG (def);
48e1416a 827
793e7497 828 if (GET_CODE (dreg) == SUBREG)
829 dreg = SUBREG_REG (dreg);
830 if (! REG_P (dreg) || REGNO (dreg) >= FIRST_PSEUDO_REGISTER)
831 continue;
832
833 /* Hard register clobbers are believed to be early clobber
834 because there is no way to say that non-operand hard
48e1416a 835 register clobbers are not early ones. */
793e7497 836 if (live_p)
be10bb5a 837 mark_ref_live (def);
793e7497 838 else
be10bb5a 839 mark_ref_dead (def);
793e7497 840 set_p = true;
841 }
842
843 return set_p;
844}
845
47dd2e78 846/* Checks that CONSTRAINTS permits to use only one hard register. If
847 it is so, the function returns the class of the hard register.
848 Otherwise it returns NO_REGS. */
849static enum reg_class
850single_reg_class (const char *constraints, rtx op, rtx equiv_const)
851{
d2b854bc 852 int c;
47dd2e78 853 enum reg_class cl, next_cl;
79bc09fb 854 enum constraint_num cn;
47dd2e78 855
856 cl = NO_REGS;
e1a797ad 857 alternative_mask preferred = preferred_alternatives;
d2b854bc 858 for (; (c = *constraints); constraints += CONSTRAINT_LEN (c, constraints))
859 if (c == '#')
e1a797ad 860 preferred &= ~ALTERNATIVE_BIT (0);
47dd2e78 861 else if (c == ',')
e1a797ad 862 preferred >>= 1;
863 else if (preferred & 1)
47dd2e78 864 switch (c)
865 {
69449463 866 case 'g':
867 return NO_REGS;
48e1416a 868
69449463 869 default:
c91b6d86 870 /* ??? Is this the best way to handle memory constraints? */
79bc09fb 871 cn = lookup_constraint (constraints);
872 if (insn_extra_memory_constraint (cn)
6b3b345a 873 || insn_extra_special_memory_constraint (cn)
79bc09fb 874 || insn_extra_address_constraint (cn))
c91b6d86 875 return NO_REGS;
79bc09fb 876 if (constraint_satisfied_p (op, cn)
c91b6d86 877 || (equiv_const != NULL_RTX
878 && CONSTANT_P (equiv_const)
79bc09fb 879 && constraint_satisfied_p (equiv_const, cn)))
c91b6d86 880 return NO_REGS;
69449463 881 next_cl = reg_class_for_constraint (cn);
c91b6d86 882 if (next_cl == NO_REGS)
883 break;
c259678f 884 if (cl == NO_REGS
885 ? ira_class_singleton[next_cl][GET_MODE (op)] < 0
886 : (ira_class_singleton[cl][GET_MODE (op)]
887 != ira_class_singleton[next_cl][GET_MODE (op)]))
47dd2e78 888 return NO_REGS;
889 cl = next_cl;
890 break;
48e1416a 891
47dd2e78 892 case '0': case '1': case '2': case '3': case '4':
893 case '5': case '6': case '7': case '8': case '9':
894 next_cl
895 = single_reg_class (recog_data.constraints[c - '0'],
896 recog_data.operand[c - '0'], NULL_RTX);
c259678f 897 if (cl == NO_REGS
898 ? ira_class_singleton[next_cl][GET_MODE (op)] < 0
899 : (ira_class_singleton[cl][GET_MODE (op)]
900 != ira_class_singleton[next_cl][GET_MODE (op)]))
47dd2e78 901 return NO_REGS;
902 cl = next_cl;
903 break;
47dd2e78 904 }
905 return cl;
906}
907
908/* The function checks that operand OP_NUM of the current insn can use
909 only one hard register. If it is so, the function returns the
910 class of the hard register. Otherwise it returns NO_REGS. */
911static enum reg_class
912single_reg_operand_class (int op_num)
913{
914 if (op_num < 0 || recog_data.n_alternatives == 0)
915 return NO_REGS;
916 return single_reg_class (recog_data.constraints[op_num],
917 recog_data.operand[op_num], NULL_RTX);
918}
919
a7dcf969 920/* The function sets up hard register set *SET to hard registers which
921 might be used by insn reloads because the constraints are too
922 strict. */
923void
ca3be54b 924ira_implicitly_set_insn_hard_regs (HARD_REG_SET *set,
925 alternative_mask preferred)
a7dcf969 926{
d2b854bc 927 int i, c, regno = 0;
a7dcf969 928 enum reg_class cl;
929 rtx op;
3754d046 930 machine_mode mode;
a7dcf969 931
932 CLEAR_HARD_REG_SET (*set);
933 for (i = 0; i < recog_data.n_operands; i++)
934 {
935 op = recog_data.operand[i];
936
937 if (GET_CODE (op) == SUBREG)
938 op = SUBREG_REG (op);
48e1416a 939
a7dcf969 940 if (GET_CODE (op) == SCRATCH
941 || (REG_P (op) && (regno = REGNO (op)) >= FIRST_PSEUDO_REGISTER))
942 {
943 const char *p = recog_data.constraints[i];
944
945 mode = (GET_CODE (op) == SCRATCH
946 ? GET_MODE (op) : PSEUDO_REGNO_MODE (regno));
947 cl = NO_REGS;
d2b854bc 948 for (; (c = *p); p += CONSTRAINT_LEN (c, p))
949 if (c == '#')
e1a797ad 950 preferred &= ~ALTERNATIVE_BIT (0);
a7dcf969 951 else if (c == ',')
e1a797ad 952 preferred >>= 1;
953 else if (preferred & 1)
69449463 954 {
955 cl = reg_class_for_constraint (lookup_constraint (p));
956 if (cl != NO_REGS)
957 {
958 /* There is no register pressure problem if all of the
959 regs in this class are fixed. */
960 int regno = ira_class_singleton[cl][mode];
961 if (regno >= 0)
962 add_to_hard_reg_set (set, mode, regno);
963 }
964 }
a7dcf969 965 }
966 }
967}
47dd2e78 968/* Processes input operands, if IN_P, or output operands otherwise of
969 the current insn with FREQ to find allocno which can use only one
970 hard register and makes other currently living allocnos conflicting
971 with the hard register. */
972static void
973process_single_reg_class_operands (bool in_p, int freq)
974{
744d7848 975 int i, regno;
47dd2e78 976 unsigned int px;
da7a04f1 977 enum reg_class cl;
47dd2e78 978 rtx operand;
979 ira_allocno_t operand_a, a;
980
981 for (i = 0; i < recog_data.n_operands; i++)
982 {
983 operand = recog_data.operand[i];
984 if (in_p && recog_data.operand_type[i] != OP_IN
985 && recog_data.operand_type[i] != OP_INOUT)
986 continue;
987 if (! in_p && recog_data.operand_type[i] != OP_OUT
988 && recog_data.operand_type[i] != OP_INOUT)
989 continue;
990 cl = single_reg_operand_class (i);
991 if (cl == NO_REGS)
992 continue;
993
994 operand_a = NULL;
995
996 if (GET_CODE (operand) == SUBREG)
997 operand = SUBREG_REG (operand);
48e1416a 998
47dd2e78 999 if (REG_P (operand)
1000 && (regno = REGNO (operand)) >= FIRST_PSEUDO_REGISTER)
1001 {
66d9a7b9 1002 enum reg_class aclass;
47dd2e78 1003
1004 operand_a = ira_curr_regno_allocno_map[regno];
66d9a7b9 1005 aclass = ALLOCNO_CLASS (operand_a);
c259678f 1006 if (ira_class_subset_p[cl][aclass])
47dd2e78 1007 {
744d7848 1008 /* View the desired allocation of OPERAND as:
1009
1010 (REG:YMODE YREGNO),
1011
1012 a simplification of:
1013
1014 (subreg:YMODE (reg:XMODE XREGNO) OFFSET). */
3754d046 1015 machine_mode ymode, xmode;
744d7848 1016 int xregno, yregno;
9edf7ea8 1017 poly_int64 offset;
744d7848 1018
1019 xmode = recog_data.operand_mode[i];
c259678f 1020 xregno = ira_class_singleton[cl][xmode];
1021 gcc_assert (xregno >= 0);
744d7848 1022 ymode = ALLOCNO_MODE (operand_a);
1023 offset = subreg_lowpart_offset (ymode, xmode);
1024 yregno = simplify_subreg_regno (xregno, xmode, offset, ymode);
1025 if (yregno >= 0
66d9a7b9 1026 && ira_class_hard_reg_index[aclass][yregno] >= 0)
744d7848 1027 {
1028 int cost;
1029
1030 ira_allocate_and_set_costs
1031 (&ALLOCNO_CONFLICT_HARD_REG_COSTS (operand_a),
66d9a7b9 1032 aclass, 0);
1033 ira_init_register_move_cost_if_necessary (xmode);
1034 cost = freq * (in_p
1035 ? ira_register_move_cost[xmode][aclass][cl]
1036 : ira_register_move_cost[xmode][cl][aclass]);
744d7848 1037 ALLOCNO_CONFLICT_HARD_REG_COSTS (operand_a)
66d9a7b9 1038 [ira_class_hard_reg_index[aclass][yregno]] -= cost;
744d7848 1039 }
47dd2e78 1040 }
1041 }
1042
be18556f 1043 EXECUTE_IF_SET_IN_SPARSESET (objects_live, px)
47dd2e78 1044 {
be18556f 1045 ira_object_t obj = ira_object_id_map[px];
1046 a = OBJECT_ALLOCNO (obj);
47dd2e78 1047 if (a != operand_a)
1048 {
1049 /* We could increase costs of A instead of making it
1050 conflicting with the hard register. But it works worse
1051 because it will be spilled in reload in anyway. */
247f191e 1052 OBJECT_CONFLICT_HARD_REGS (obj) |= reg_class_contents[cl];
1053 OBJECT_TOTAL_CONFLICT_HARD_REGS (obj) |= reg_class_contents[cl];
47dd2e78 1054 }
1055 }
1056 }
1057}
1058
c8010b80 1059/* Look through the CALL_INSN_FUNCTION_USAGE of a call insn INSN, and see if
1060 we find a SET rtx that we can use to deduce that a register can be cheaply
1061 caller-saved. Return such a register, or NULL_RTX if none is found. */
1062static rtx
56067879 1063find_call_crossed_cheap_reg (rtx_insn *insn)
c8010b80 1064{
1065 rtx cheap_reg = NULL_RTX;
1066 rtx exp = CALL_INSN_FUNCTION_USAGE (insn);
1067
1068 while (exp != NULL)
1069 {
1070 rtx x = XEXP (exp, 0);
1071 if (GET_CODE (x) == SET)
1072 {
1073 exp = x;
1074 break;
1075 }
1076 exp = XEXP (exp, 1);
1077 }
1078 if (exp != NULL)
1079 {
1080 basic_block bb = BLOCK_FOR_INSN (insn);
1081 rtx reg = SET_SRC (exp);
fde37bf5 1082 rtx_insn *prev = PREV_INSN (insn);
c8010b80 1083 while (prev && !(INSN_P (prev)
1084 && BLOCK_FOR_INSN (prev) != bb))
1085 {
1086 if (NONDEBUG_INSN_P (prev))
1087 {
1088 rtx set = single_set (prev);
1089
1090 if (set && rtx_equal_p (SET_DEST (set), reg))
1091 {
1092 rtx src = SET_SRC (set);
1093 if (!REG_P (src) || HARD_REGISTER_P (src)
1094 || !pseudo_regno_single_word_and_live_p (REGNO (src)))
1095 break;
1096 if (!modified_between_p (src, prev, insn))
1097 cheap_reg = src;
1098 break;
1099 }
1100 if (set && rtx_equal_p (SET_SRC (set), reg))
1101 {
1102 rtx dest = SET_DEST (set);
1103 if (!REG_P (dest) || HARD_REGISTER_P (dest)
1104 || !pseudo_regno_single_word_and_live_p (REGNO (dest)))
1105 break;
1106 if (!modified_between_p (dest, prev, insn))
1107 cheap_reg = dest;
1108 break;
1109 }
1110
79d123c1 1111 if (reg_set_p (reg, prev))
c8010b80 1112 break;
1113 }
1114 prev = PREV_INSN (prev);
1115 }
1116 }
1117 return cheap_reg;
1118}
1119
4bcfedf5 1120/* Determine whether INSN is a register to register copy of the type where
1121 we do not need to make the source and destiniation registers conflict.
1122 If this is a copy instruction, then return the source reg. Otherwise,
1123 return NULL_RTX. */
1124rtx
1125non_conflicting_reg_copy_p (rtx_insn *insn)
1126{
3a18b2f8 1127 /* Reload has issues with overlapping pseudos being assigned to the
1128 same hard register, so don't allow it. See PR87600 for details. */
1129 if (!targetm.lra_p ())
1130 return NULL_RTX;
1131
4bcfedf5 1132 rtx set = single_set (insn);
1133
1134 /* Disallow anything other than a simple register to register copy
1135 that has no side effects. */
1136 if (set == NULL_RTX
1137 || !REG_P (SET_DEST (set))
1138 || !REG_P (SET_SRC (set))
1139 || side_effects_p (set))
1140 return NULL_RTX;
1141
1142 int dst_regno = REGNO (SET_DEST (set));
1143 int src_regno = REGNO (SET_SRC (set));
1144 machine_mode mode = GET_MODE (SET_DEST (set));
1145
ce9680ea 1146 /* By definition, a register does not conflict with itself, therefore we
1147 do not have to handle it specially. Returning NULL_RTX now, helps
1148 simplify the callers of this function. */
1149 if (dst_regno == src_regno)
1150 return NULL_RTX;
1151
4bcfedf5 1152 /* Computing conflicts for register pairs is difficult to get right, so
1153 for now, disallow it. */
ce9680ea 1154 if ((HARD_REGISTER_NUM_P (dst_regno)
4bcfedf5 1155 && hard_regno_nregs (dst_regno, mode) != 1)
ce9680ea 1156 || (HARD_REGISTER_NUM_P (src_regno)
4bcfedf5 1157 && hard_regno_nregs (src_regno, mode) != 1))
1158 return NULL_RTX;
1159
1160 return SET_SRC (set);
1161}
1162
47dd2e78 1163/* Process insns of the basic block given by its LOOP_TREE_NODE to
1164 update allocno live ranges, allocno hard register conflicts,
1165 intersected calls, and register pressure info for allocnos for the
1166 basic block for and regions containing the basic block. */
1167static void
1168process_bb_node_lives (ira_loop_tree_node_t loop_tree_node)
1169{
7e03a244 1170 int i, freq;
47dd2e78 1171 unsigned int j;
1172 basic_block bb;
56067879 1173 rtx_insn *insn;
47dd2e78 1174 bitmap_iterator bi;
7e03a244 1175 bitmap reg_live_out;
47dd2e78 1176 unsigned int px;
793e7497 1177 bool set_p;
47dd2e78 1178
1179 bb = loop_tree_node->bb;
1180 if (bb != NULL)
1181 {
66d9a7b9 1182 for (i = 0; i < ira_pressure_classes_num; i++)
47dd2e78 1183 {
66d9a7b9 1184 curr_reg_pressure[ira_pressure_classes[i]] = 0;
1185 high_pressure_start_point[ira_pressure_classes[i]] = -1;
47dd2e78 1186 }
1187 curr_bb_node = loop_tree_node;
0841d295 1188 reg_live_out = df_get_live_out (bb);
be18556f 1189 sparseset_clear (objects_live);
7e03a244 1190 REG_SET_TO_HARD_REG_SET (hard_regs_live, reg_live_out);
9cfad810 1191 hard_regs_live &= ~(eliminable_regset | ira_no_alloc_regs);
47dd2e78 1192 for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1193 if (TEST_HARD_REG_BIT (hard_regs_live, i))
1194 {
66d9a7b9 1195 enum reg_class aclass, pclass, cl;
48e1416a 1196
66d9a7b9 1197 aclass = ira_allocno_class_translate[REGNO_REG_CLASS (i)];
1198 pclass = ira_pressure_class_translate[aclass];
14792f4e 1199 for (j = 0;
66d9a7b9 1200 (cl = ira_reg_class_super_classes[pclass][j])
14792f4e 1201 != LIM_REG_CLASSES;
1202 j++)
1203 {
66d9a7b9 1204 if (! ira_reg_pressure_class_p[cl])
1205 continue;
14792f4e 1206 curr_reg_pressure[cl]++;
1207 if (curr_bb_node->reg_pressure[cl] < curr_reg_pressure[cl])
1208 curr_bb_node->reg_pressure[cl] = curr_reg_pressure[cl];
1209 ira_assert (curr_reg_pressure[cl]
1072fecf 1210 <= ira_class_hard_regs_num[cl]);
14792f4e 1211 }
47dd2e78 1212 }
7e03a244 1213 EXECUTE_IF_SET_IN_BITMAP (reg_live_out, FIRST_PSEUDO_REGISTER, j, bi)
b4f5e198 1214 mark_pseudo_regno_live (j);
48e1416a 1215
7e03a244 1216 freq = REG_FREQ_FROM_BB (bb);
1217 if (freq == 0)
1218 freq = 1;
1219
df07a54c 1220 /* Invalidate all allocno_saved_at_call entries. */
1221 last_call_num++;
1222
47dd2e78 1223 /* Scan the code of this basic block, noting which allocnos and
7e03a244 1224 hard regs are born or die.
1225
1226 Note that this loop treats uninitialized values as live until
1227 the beginning of the block. For example, if an instruction
1228 uses (reg:DI foo), and only (subreg:SI (reg:DI foo) 0) is ever
1229 set, FOO will remain live until the beginning of the block.
1230 Likewise if FOO is not set at all. This is unnecessarily
1231 pessimistic, but it probably doesn't matter much in practice. */
1232 FOR_BB_INSNS_REVERSE (bb, insn)
47dd2e78 1233 {
0f0f5d1a 1234 ira_allocno_t a;
be10bb5a 1235 df_ref def, use;
e73e23ef 1236 bool call_p;
48e1416a 1237
9845d120 1238 if (!NONDEBUG_INSN_P (insn))
47dd2e78 1239 continue;
48e1416a 1240
47dd2e78 1241 if (internal_flag_ira_verbose > 2 && ira_dump_file != NULL)
1242 fprintf (ira_dump_file, " Insn %u(l%d): point = %d\n",
9f8ac546 1243 INSN_UID (insn), loop_tree_node->parent->loop_num,
47dd2e78 1244 curr_point);
1245
0f0f5d1a 1246 call_p = CALL_P (insn);
4bcfedf5 1247 ignore_reg_for_conflicts = non_conflicting_reg_copy_p (insn);
0f0f5d1a 1248
7e03a244 1249 /* Mark each defined value as live. We need to do this for
1250 unused values because they still conflict with quantities
1251 that are live at the time of the definition.
1252
1253 Ignore DF_REF_MAY_CLOBBERs on a call instruction. Such
1254 references represent the effect of the called function
1255 on a call-clobbered register. Marking the register as
1256 live would stop us from allocating it to a call-crossing
1257 allocno. */
be10bb5a 1258 FOR_EACH_INSN_DEF (def, insn)
1259 if (!call_p || !DF_REF_FLAGS_IS_SET (def, DF_REF_MAY_CLOBBER))
1260 mark_ref_live (def);
7e03a244 1261
1262 /* If INSN has multiple outputs, then any value used in one
1263 of the outputs conflicts with the other outputs. Model this
1264 by making the used value live during the output phase.
1265
1266 It is unsafe to use !single_set here since it will ignore
1267 an unused output. Just because an output is unused does
1268 not mean the compiler can assume the side effect will not
1269 occur. Consider if ALLOCNO appears in the address of an
1270 output and we reload the output. If we allocate ALLOCNO
1271 to the same hard register as an unused output we could
1272 set the hard register before the output reload insn. */
1273 if (GET_CODE (PATTERN (insn)) == PARALLEL && multiple_sets (insn))
be10bb5a 1274 FOR_EACH_INSN_USE (use, insn)
7e03a244 1275 {
1276 int i;
1277 rtx reg;
1278
be10bb5a 1279 reg = DF_REF_REG (use);
7e03a244 1280 for (i = XVECLEN (PATTERN (insn), 0) - 1; i >= 0; i--)
1281 {
1282 rtx set;
1283
1284 set = XVECEXP (PATTERN (insn), 0, i);
1285 if (GET_CODE (set) == SET
1286 && reg_overlap_mentioned_p (reg, SET_DEST (set)))
1287 {
1288 /* After the previous loop, this is a no-op if
1289 REG is contained within SET_DEST (SET). */
be10bb5a 1290 mark_ref_live (use);
7e03a244 1291 break;
1292 }
1293 }
1294 }
48e1416a 1295
f278a92e 1296 preferred_alternatives = ira_setup_alts (insn);
7e03a244 1297 process_single_reg_class_operands (false, freq);
48e1416a 1298
7e03a244 1299 if (call_p)
47dd2e78 1300 {
c8010b80 1301 /* Try to find a SET in the CALL_INSN_FUNCTION_USAGE, and from
1302 there, try to find a pseudo that is live across the call but
1303 can be cheaply reconstructed from the return value. */
1304 rtx cheap_reg = find_call_crossed_cheap_reg (insn);
1305 if (cheap_reg != NULL_RTX)
1306 add_reg_note (insn, REG_RETURNED, cheap_reg);
1307
df07a54c 1308 last_call_num++;
be18556f 1309 sparseset_clear (allocnos_processed);
7e03a244 1310 /* The current set of live allocnos are live across the call. */
be18556f 1311 EXECUTE_IF_SET_IN_SPARSESET (objects_live, i)
47dd2e78 1312 {
be18556f 1313 ira_object_t obj = ira_object_id_map[i];
0f0f5d1a 1314 a = OBJECT_ALLOCNO (obj);
be18556f 1315 int num = ALLOCNO_NUM (a);
fd954eb0 1316 function_abi callee_abi = insn_callee_abi (insn);
48e1416a 1317
d6a421d5 1318 /* Don't allocate allocnos that cross setjmps or any
1319 call, if this function receives a nonlocal
1320 goto. */
1321 if (cfun->has_nonlocal_label
839a4719 1322 || (!targetm.setjmp_preserves_nonvolatile_regs_p ()
1323 && (find_reg_note (insn, REG_SETJMP, NULL_RTX)
1324 != NULL_RTX)))
47dd2e78 1325 {
ae9587ed 1326 SET_HARD_REG_SET (OBJECT_CONFLICT_HARD_REGS (obj));
1327 SET_HARD_REG_SET (OBJECT_TOTAL_CONFLICT_HARD_REGS (obj));
47dd2e78 1328 }
cab55469 1329 if (can_throw_internal (insn))
1330 {
247f191e 1331 OBJECT_CONFLICT_HARD_REGS (obj)
fd954eb0 1332 |= callee_abi.mode_clobbers (ALLOCNO_MODE (a));
247f191e 1333 OBJECT_TOTAL_CONFLICT_HARD_REGS (obj)
fd954eb0 1334 |= callee_abi.mode_clobbers (ALLOCNO_MODE (a));
cab55469 1335 }
be18556f 1336
1337 if (sparseset_bit_p (allocnos_processed, num))
1338 continue;
1339 sparseset_set_bit (allocnos_processed, num);
1340
1341 if (allocno_saved_at_call[num] != last_call_num)
b59bd98f 1342 /* Here we are mimicking caller-save.c behavior
be18556f 1343 which does not save hard register at a call if
1344 it was saved on previous call in the same basic
1345 block and the hard register was not mentioned
1346 between the two calls. */
1347 ALLOCNO_CALL_FREQ (a) += freq;
1348 /* Mark it as saved at the next call. */
1349 allocno_saved_at_call[num] = last_call_num + 1;
1350 ALLOCNO_CALLS_CROSSED_NUM (a)++;
fd954eb0 1351 ALLOCNO_CROSSED_CALLS_ABIS (a) |= 1 << callee_abi.id ();
247f191e 1352 ALLOCNO_CROSSED_CALLS_CLOBBERED_REGS (a)
fd954eb0 1353 |= callee_abi.full_and_partial_reg_clobbers ();
c8010b80 1354 if (cheap_reg != NULL_RTX
1355 && ALLOCNO_REGNO (a) == (int) REGNO (cheap_reg))
1356 ALLOCNO_CHEAP_CALLS_CROSSED_NUM (a)++;
47dd2e78 1357 }
1358 }
48e1416a 1359
3f0ba397 1360 /* See which defined values die here. Note that we include
1361 the call insn in the lifetimes of these values, so we don't
1362 mistakenly consider, for e.g. an addressing mode with a
1363 side-effect like a post-increment fetching the address,
1364 that the use happens before the call, and the def to happen
1365 after the call: we believe both to happen before the actual
1366 call. (We don't handle return-values here.) */
1367 FOR_EACH_INSN_DEF (def, insn)
1368 if (!call_p || !DF_REF_FLAGS_IS_SET (def, DF_REF_MAY_CLOBBER))
1369 mark_ref_dead (def);
1370
7173d4d0 1371 make_early_clobber_and_input_conflicts ();
1372
7e03a244 1373 curr_point++;
0f0f5d1a 1374
7e03a244 1375 /* Mark each used value as live. */
be10bb5a 1376 FOR_EACH_INSN_USE (use, insn)
1377 mark_ref_live (use);
7e03a244 1378
7e03a244 1379 process_single_reg_class_operands (true, freq);
48e1416a 1380
7173d4d0 1381 set_p = mark_hard_reg_early_clobbers (insn, true);
1382
793e7497 1383 if (set_p)
1384 {
7173d4d0 1385 mark_hard_reg_early_clobbers (insn, false);
793e7497 1386
7173d4d0 1387 /* Mark each hard reg as live again. For example, a
793e7497 1388 hard register can be in clobber and in an insn
1389 input. */
be10bb5a 1390 FOR_EACH_INSN_USE (use, insn)
7173d4d0 1391 {
be10bb5a 1392 rtx ureg = DF_REF_REG (use);
48e1416a 1393
7173d4d0 1394 if (GET_CODE (ureg) == SUBREG)
1395 ureg = SUBREG_REG (ureg);
1396 if (! REG_P (ureg) || REGNO (ureg) >= FIRST_PSEUDO_REGISTER)
1397 continue;
48e1416a 1398
be10bb5a 1399 mark_ref_live (use);
7173d4d0 1400 }
793e7497 1401 }
47dd2e78 1402
47dd2e78 1403 curr_point++;
1404 }
4bcfedf5 1405 ignore_reg_for_conflicts = NULL_RTX;
7e03a244 1406
fee75d9b 1407 if (bb_has_eh_pred (bb))
1408 for (j = 0; ; ++j)
1409 {
1410 unsigned int regno = EH_RETURN_DATA_REGNO (j);
1411 if (regno == INVALID_REGNUM)
1412 break;
7e203840 1413 make_hard_regno_live (regno);
fee75d9b 1414 }
fee75d9b 1415
7e03a244 1416 /* Allocnos can't go in stack regs at the start of a basic block
fd954eb0 1417 that is reached by an abnormal edge. Likewise for registers
1418 that are at least partly call clobbered, because caller-save,
1419 fixup_abnormal_edges and possibly the table driven EH machinery
1420 are not quite ready to handle such allocnos live across such
1421 edges. */
fee75d9b 1422 if (bb_has_abnormal_pred (bb))
7e03a244 1423 {
1424#ifdef STACK_REGS
be18556f 1425 EXECUTE_IF_SET_IN_SPARSESET (objects_live, px)
7e03a244 1426 {
be18556f 1427 ira_allocno_t a = OBJECT_ALLOCNO (ira_object_id_map[px]);
66d9a7b9 1428
be18556f 1429 ALLOCNO_NO_STACK_REG_P (a) = true;
1430 ALLOCNO_TOTAL_NO_STACK_REG_P (a) = true;
7e03a244 1431 }
1432 for (px = FIRST_STACK_REG; px <= LAST_STACK_REG; px++)
7e203840 1433 make_hard_regno_live (px);
7e03a244 1434#endif
1435 /* No need to record conflicts for call clobbered regs if we
1436 have nonlocal labels around, as we don't ever try to
1437 allocate such regs in this case. */
a0a565a9 1438 if (!cfun->has_nonlocal_label
1439 && has_abnormal_call_or_eh_pred_edge_p (bb))
7e03a244 1440 for (px = 0; px < FIRST_PSEUDO_REGISTER; px++)
fd954eb0 1441 if (eh_edge_abi.clobbers_at_least_part_of_reg_p (px)
15d96f90 1442#ifdef REAL_PIC_OFFSET_TABLE_REGNUM
1443 /* We should create a conflict of PIC pseudo with
1444 PIC hard reg as PIC hard reg can have a wrong
1445 value after jump described by the abnormal edge.
f4d3c071 1446 In this case we cannot allocate PIC hard reg to
15d96f90 1447 PIC pseudo as PIC pseudo will also have a wrong
1448 value. This code is not critical as LRA can fix
1449 it but it is better to have the right allocation
1450 earlier. */
1451 || (px == REAL_PIC_OFFSET_TABLE_REGNUM
1452 && pic_offset_table_rtx != NULL_RTX
1453 && REGNO (pic_offset_table_rtx) >= FIRST_PSEUDO_REGISTER)
1454#endif
1455 )
7e203840 1456 make_hard_regno_live (px);
7e03a244 1457 }
1458
be18556f 1459 EXECUTE_IF_SET_IN_SPARSESET (objects_live, i)
1460 make_object_dead (ira_object_id_map[i]);
47dd2e78 1461
1462 curr_point++;
1463
1464 }
3ad55f68 1465 /* Propagate register pressure to upper loop tree nodes. */
47dd2e78 1466 if (loop_tree_node != ira_loop_tree_root)
66d9a7b9 1467 for (i = 0; i < ira_pressure_classes_num; i++)
47dd2e78 1468 {
66d9a7b9 1469 enum reg_class pclass;
47dd2e78 1470
66d9a7b9 1471 pclass = ira_pressure_classes[i];
1472 if (loop_tree_node->reg_pressure[pclass]
1473 > loop_tree_node->parent->reg_pressure[pclass])
1474 loop_tree_node->parent->reg_pressure[pclass]
1475 = loop_tree_node->reg_pressure[pclass];
47dd2e78 1476 }
1477}
1478
1479/* Create and set up IRA_START_POINT_RANGES and
1480 IRA_FINISH_POINT_RANGES. */
1481static void
1482create_start_finish_chains (void)
1483{
be18556f 1484 ira_object_t obj;
1485 ira_object_iterator oi;
fbff82f4 1486 live_range_t r;
47dd2e78 1487
1488 ira_start_point_ranges
be18556f 1489 = (live_range_t *) ira_allocate (ira_max_point * sizeof (live_range_t));
1490 memset (ira_start_point_ranges, 0, ira_max_point * sizeof (live_range_t));
47dd2e78 1491 ira_finish_point_ranges
be18556f 1492 = (live_range_t *) ira_allocate (ira_max_point * sizeof (live_range_t));
1493 memset (ira_finish_point_ranges, 0, ira_max_point * sizeof (live_range_t));
1494 FOR_EACH_OBJECT (obj, oi)
1495 for (r = OBJECT_LIVE_RANGES (obj); r != NULL; r = r->next)
1496 {
1497 r->start_next = ira_start_point_ranges[r->start];
1498 ira_start_point_ranges[r->start] = r;
1499 r->finish_next = ira_finish_point_ranges[r->finish];
47dd2e78 1500 ira_finish_point_ranges[r->finish] = r;
be18556f 1501 }
47dd2e78 1502}
1503
1504/* Rebuild IRA_START_POINT_RANGES and IRA_FINISH_POINT_RANGES after
1505 new live ranges and program points were added as a result if new
1506 insn generation. */
1507void
1508ira_rebuild_start_finish_chains (void)
1509{
1510 ira_free (ira_finish_point_ranges);
1511 ira_free (ira_start_point_ranges);
1512 create_start_finish_chains ();
1513}
1514
7f36fbdf 1515/* Compress allocno live ranges by removing program points where
1516 nothing happens. */
1517static void
1518remove_some_program_points_and_update_live_ranges (void)
1519{
1520 unsigned i;
1521 int n;
1522 int *map;
9d53e372 1523 ira_object_t obj;
1524 ira_object_iterator oi;
d068a2f3 1525 live_range_t r, prev_r, next_r;
82cc92bf 1526 sbitmap_iterator sbi;
1527 bool born_p, dead_p, prev_born_p, prev_dead_p;
1528
3c6549f8 1529 auto_sbitmap born (ira_max_point);
1530 auto_sbitmap dead (ira_max_point);
53c5d9d4 1531 bitmap_clear (born);
1532 bitmap_clear (dead);
9d53e372 1533 FOR_EACH_OBJECT (obj, oi)
1534 for (r = OBJECT_LIVE_RANGES (obj); r != NULL; r = r->next)
1535 {
1536 ira_assert (r->start <= r->finish);
08b7917c 1537 bitmap_set_bit (born, r->start);
1538 bitmap_set_bit (dead, r->finish);
9d53e372 1539 }
1540
3c6549f8 1541 auto_sbitmap born_or_dead (ira_max_point);
53c5d9d4 1542 bitmap_ior (born_or_dead, born, dead);
7f36fbdf 1543 map = (int *) ira_allocate (sizeof (int) * ira_max_point);
82cc92bf 1544 n = -1;
1545 prev_born_p = prev_dead_p = false;
0d211963 1546 EXECUTE_IF_SET_IN_BITMAP (born_or_dead, 0, i, sbi)
7f36fbdf 1547 {
08b7917c 1548 born_p = bitmap_bit_p (born, i);
1549 dead_p = bitmap_bit_p (dead, i);
82cc92bf 1550 if ((prev_born_p && ! prev_dead_p && born_p && ! dead_p)
1551 || (prev_dead_p && ! prev_born_p && dead_p && ! born_p))
1552 map[i] = n;
1553 else
1554 map[i] = ++n;
1555 prev_born_p = born_p;
1556 prev_dead_p = dead_p;
7f36fbdf 1557 }
3c6549f8 1558
82cc92bf 1559 n++;
7f36fbdf 1560 if (internal_flag_ira_verbose > 1 && ira_dump_file != NULL)
1561 fprintf (ira_dump_file, "Compressing live ranges: from %d to %d - %d%%\n",
1562 ira_max_point, n, 100 * n / ira_max_point);
1563 ira_max_point = n;
9d53e372 1564
1565 FOR_EACH_OBJECT (obj, oi)
d068a2f3 1566 for (r = OBJECT_LIVE_RANGES (obj), prev_r = NULL; r != NULL; r = next_r)
9d53e372 1567 {
d068a2f3 1568 next_r = r->next;
9d53e372 1569 r->start = map[r->start];
1570 r->finish = map[r->finish];
d068a2f3 1571 if (prev_r == NULL || prev_r->start > r->finish + 1)
1572 {
1573 prev_r = r;
1574 continue;
1575 }
1576 prev_r->start = r->start;
1577 prev_r->next = next_r;
1578 ira_finish_live_range (r);
9d53e372 1579 }
be18556f 1580
7f36fbdf 1581 ira_free (map);
1582}
1583
47dd2e78 1584/* Print live ranges R to file F. */
1585void
fbff82f4 1586ira_print_live_range_list (FILE *f, live_range_t r)
47dd2e78 1587{
1588 for (; r != NULL; r = r->next)
1589 fprintf (f, " [%d..%d]", r->start, r->finish);
1590 fprintf (f, "\n");
1591}
1592
c7d89805 1593DEBUG_FUNCTION void
1594debug (live_range &ref)
1595{
1596 ira_print_live_range_list (stderr, &ref);
1597}
1598
1599DEBUG_FUNCTION void
1600debug (live_range *ptr)
1601{
1602 if (ptr)
1603 debug (*ptr);
1604 else
1605 fprintf (stderr, "<nil>\n");
1606}
1607
47dd2e78 1608/* Print live ranges R to stderr. */
1609void
fbff82f4 1610ira_debug_live_range_list (live_range_t r)
47dd2e78 1611{
1612 ira_print_live_range_list (stderr, r);
1613}
1614
be18556f 1615/* Print live ranges of object OBJ to file F. */
1616static void
1617print_object_live_ranges (FILE *f, ira_object_t obj)
1618{
1619 ira_print_live_range_list (f, OBJECT_LIVE_RANGES (obj));
1620}
1621
47dd2e78 1622/* Print live ranges of allocno A to file F. */
1623static void
1624print_allocno_live_ranges (FILE *f, ira_allocno_t a)
1625{
be18556f 1626 int n = ALLOCNO_NUM_OBJECTS (a);
1627 int i;
66d9a7b9 1628
be18556f 1629 for (i = 0; i < n; i++)
1630 {
1631 fprintf (f, " a%d(r%d", ALLOCNO_NUM (a), ALLOCNO_REGNO (a));
1632 if (n > 1)
1633 fprintf (f, " [%d]", i);
1634 fprintf (f, "):");
1635 print_object_live_ranges (f, ALLOCNO_OBJECT (a, i));
1636 }
47dd2e78 1637}
1638
1639/* Print live ranges of allocno A to stderr. */
1640void
1641ira_debug_allocno_live_ranges (ira_allocno_t a)
1642{
1643 print_allocno_live_ranges (stderr, a);
1644}
1645
1646/* Print live ranges of all allocnos to file F. */
1647static void
1648print_live_ranges (FILE *f)
1649{
1650 ira_allocno_t a;
1651 ira_allocno_iterator ai;
1652
1653 FOR_EACH_ALLOCNO (a, ai)
1654 print_allocno_live_ranges (f, a);
1655}
1656
1657/* Print live ranges of all allocnos to stderr. */
1658void
1659ira_debug_live_ranges (void)
1660{
1661 print_live_ranges (stderr);
1662}
1663
1664/* The main entry function creates live ranges, set up
be18556f 1665 CONFLICT_HARD_REGS and TOTAL_CONFLICT_HARD_REGS for objects, and
47dd2e78 1666 calculate register pressure info. */
1667void
1668ira_create_allocno_live_ranges (void)
1669{
be18556f 1670 objects_live = sparseset_alloc (ira_objects_num);
1671 allocnos_processed = sparseset_alloc (ira_allocnos_num);
47dd2e78 1672 curr_point = 0;
df07a54c 1673 last_call_num = 0;
1674 allocno_saved_at_call
1675 = (int *) ira_allocate (ira_allocnos_num * sizeof (int));
1676 memset (allocno_saved_at_call, 0, ira_allocnos_num * sizeof (int));
47dd2e78 1677 ira_traverse_loop_tree (true, ira_loop_tree_root, NULL,
1678 process_bb_node_lives);
1679 ira_max_point = curr_point;
1680 create_start_finish_chains ();
1681 if (internal_flag_ira_verbose > 2 && ira_dump_file != NULL)
1682 print_live_ranges (ira_dump_file);
1683 /* Clean up. */
df07a54c 1684 ira_free (allocno_saved_at_call);
be18556f 1685 sparseset_free (objects_live);
1686 sparseset_free (allocnos_processed);
47dd2e78 1687}
1688
7f36fbdf 1689/* Compress allocno live ranges. */
1690void
1691ira_compress_allocno_live_ranges (void)
1692{
1693 remove_some_program_points_and_update_live_ranges ();
1694 ira_rebuild_start_finish_chains ();
1695 if (internal_flag_ira_verbose > 2 && ira_dump_file != NULL)
1696 {
1697 fprintf (ira_dump_file, "Ranges after the compression:\n");
1698 print_live_ranges (ira_dump_file);
1699 }
1700}
1701
47dd2e78 1702/* Free arrays IRA_START_POINT_RANGES and IRA_FINISH_POINT_RANGES. */
1703void
1704ira_finish_allocno_live_ranges (void)
1705{
1706 ira_free (ira_finish_point_ranges);
1707 ira_free (ira_start_point_ranges);
1708}