annotate gcc/lra-lives.c @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
children 1830386684a0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 /* Build live ranges for pseudos.
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
2 Copyright (C) 2010-2018 Free Software Foundation, Inc.
111
kono
parents:
diff changeset
3 Contributed by Vladimir Makarov <vmakarov@redhat.com>.
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 This file is part of GCC.
kono
parents:
diff changeset
6
kono
parents:
diff changeset
7 GCC is free software; you can redistribute it and/or modify it under
kono
parents:
diff changeset
8 the terms of the GNU General Public License as published by the Free
kono
parents:
diff changeset
9 Software Foundation; either version 3, or (at your option) any later
kono
parents:
diff changeset
10 version.
kono
parents:
diff changeset
11
kono
parents:
diff changeset
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
kono
parents:
diff changeset
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
kono
parents:
diff changeset
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
kono
parents:
diff changeset
15 for more details.
kono
parents:
diff changeset
16
kono
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
kono
parents:
diff changeset
18 along with GCC; see the file COPYING3. If not see
kono
parents:
diff changeset
19 <http://www.gnu.org/licenses/>. */
kono
parents:
diff changeset
20
kono
parents:
diff changeset
21
kono
parents:
diff changeset
22 /* This file contains code to build pseudo live-ranges (analogous
kono
parents:
diff changeset
23 structures used in IRA, so read comments about the live-ranges
kono
parents:
diff changeset
24 there) and other info necessary for other passes to assign
kono
parents:
diff changeset
25 hard-registers to pseudos, coalesce the spilled pseudos, and assign
kono
parents:
diff changeset
26 stack memory slots to spilled pseudos. */
kono
parents:
diff changeset
27
kono
parents:
diff changeset
28 #include "config.h"
kono
parents:
diff changeset
29 #include "system.h"
kono
parents:
diff changeset
30 #include "coretypes.h"
kono
parents:
diff changeset
31 #include "backend.h"
kono
parents:
diff changeset
32 #include "rtl.h"
kono
parents:
diff changeset
33 #include "tree.h"
kono
parents:
diff changeset
34 #include "predict.h"
kono
parents:
diff changeset
35 #include "df.h"
kono
parents:
diff changeset
36 #include "memmodel.h"
kono
parents:
diff changeset
37 #include "tm_p.h"
kono
parents:
diff changeset
38 #include "insn-config.h"
kono
parents:
diff changeset
39 #include "regs.h"
kono
parents:
diff changeset
40 #include "ira.h"
kono
parents:
diff changeset
41 #include "recog.h"
kono
parents:
diff changeset
42 #include "cfganal.h"
kono
parents:
diff changeset
43 #include "sparseset.h"
kono
parents:
diff changeset
44 #include "lra-int.h"
kono
parents:
diff changeset
45 #include "target.h"
kono
parents:
diff changeset
46
kono
parents:
diff changeset
47 /* Program points are enumerated by numbers from range
kono
parents:
diff changeset
48 0..LRA_LIVE_MAX_POINT-1. There are approximately two times more
kono
parents:
diff changeset
49 program points than insns. Program points are places in the
kono
parents:
diff changeset
50 program where liveness info can be changed. In most general case
kono
parents:
diff changeset
51 (there are more complicated cases too) some program points
kono
parents:
diff changeset
52 correspond to places where input operand dies and other ones
kono
parents:
diff changeset
53 correspond to places where output operands are born. */
kono
parents:
diff changeset
54 int lra_live_max_point;
kono
parents:
diff changeset
55
kono
parents:
diff changeset
56 /* Accumulated execution frequency of all references for each hard
kono
parents:
diff changeset
57 register. */
kono
parents:
diff changeset
58 int lra_hard_reg_usage[FIRST_PSEUDO_REGISTER];
kono
parents:
diff changeset
59
kono
parents:
diff changeset
60 /* A global flag whose true value says to build live ranges for all
kono
parents:
diff changeset
61 pseudos, otherwise the live ranges only for pseudos got memory is
kono
parents:
diff changeset
62 build. True value means also building copies and setting up hard
kono
parents:
diff changeset
63 register preferences. The complete info is necessary only for the
kono
parents:
diff changeset
64 assignment pass. The complete info is not needed for the
kono
parents:
diff changeset
65 coalescing and spill passes. */
kono
parents:
diff changeset
66 static bool complete_info_p;
kono
parents:
diff changeset
67
kono
parents:
diff changeset
68 /* Pseudos live at current point in the RTL scan. */
kono
parents:
diff changeset
69 static sparseset pseudos_live;
kono
parents:
diff changeset
70
kono
parents:
diff changeset
71 /* Pseudos probably living through calls and setjumps. As setjump is
kono
parents:
diff changeset
72 a call too, if a bit in PSEUDOS_LIVE_THROUGH_SETJUMPS is set up
kono
parents:
diff changeset
73 then the corresponding bit in PSEUDOS_LIVE_THROUGH_CALLS is set up
kono
parents:
diff changeset
74 too. These data are necessary for cases when only one subreg of a
kono
parents:
diff changeset
75 multi-reg pseudo is set up after a call. So we decide it is
kono
parents:
diff changeset
76 probably live when traversing bb backward. We are sure about
kono
parents:
diff changeset
77 living when we see its usage or definition of the pseudo. */
kono
parents:
diff changeset
78 static sparseset pseudos_live_through_calls;
kono
parents:
diff changeset
79 static sparseset pseudos_live_through_setjumps;
kono
parents:
diff changeset
80
kono
parents:
diff changeset
81 /* Set of hard regs (except eliminable ones) currently live. */
kono
parents:
diff changeset
82 static HARD_REG_SET hard_regs_live;
kono
parents:
diff changeset
83
kono
parents:
diff changeset
84 /* Set of pseudos and hard registers start living/dying in the current
kono
parents:
diff changeset
85 insn. These sets are used to update REG_DEAD and REG_UNUSED notes
kono
parents:
diff changeset
86 in the insn. */
kono
parents:
diff changeset
87 static sparseset start_living, start_dying;
kono
parents:
diff changeset
88
kono
parents:
diff changeset
89 /* Set of pseudos and hard regs dead and unused in the current
kono
parents:
diff changeset
90 insn. */
kono
parents:
diff changeset
91 static sparseset unused_set, dead_set;
kono
parents:
diff changeset
92
kono
parents:
diff changeset
93 /* Bitmap used for holding intermediate bitmap operation results. */
kono
parents:
diff changeset
94 static bitmap_head temp_bitmap;
kono
parents:
diff changeset
95
kono
parents:
diff changeset
96 /* Pool for pseudo live ranges. */
kono
parents:
diff changeset
97 static object_allocator<lra_live_range> lra_live_range_pool ("live ranges");
kono
parents:
diff changeset
98
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
99 /* If non-NULL, the source operand of a register to register copy for which
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
100 we should not add a conflict with the copy's destination operand. */
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
101 static rtx ignore_reg_for_conflicts;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
102
111
kono
parents:
diff changeset
103 /* Free live range list LR. */
kono
parents:
diff changeset
104 static void
kono
parents:
diff changeset
105 free_live_range_list (lra_live_range_t lr)
kono
parents:
diff changeset
106 {
kono
parents:
diff changeset
107 lra_live_range_t next;
kono
parents:
diff changeset
108
kono
parents:
diff changeset
109 while (lr != NULL)
kono
parents:
diff changeset
110 {
kono
parents:
diff changeset
111 next = lr->next;
kono
parents:
diff changeset
112 lra_live_range_pool.remove (lr);
kono
parents:
diff changeset
113 lr = next;
kono
parents:
diff changeset
114 }
kono
parents:
diff changeset
115 }
kono
parents:
diff changeset
116
kono
parents:
diff changeset
117 /* Create and return pseudo live range with given attributes. */
kono
parents:
diff changeset
118 static lra_live_range_t
kono
parents:
diff changeset
119 create_live_range (int regno, int start, int finish, lra_live_range_t next)
kono
parents:
diff changeset
120 {
kono
parents:
diff changeset
121 lra_live_range_t p = lra_live_range_pool.allocate ();
kono
parents:
diff changeset
122 p->regno = regno;
kono
parents:
diff changeset
123 p->start = start;
kono
parents:
diff changeset
124 p->finish = finish;
kono
parents:
diff changeset
125 p->next = next;
kono
parents:
diff changeset
126 return p;
kono
parents:
diff changeset
127 }
kono
parents:
diff changeset
128
kono
parents:
diff changeset
129 /* Copy live range R and return the result. */
kono
parents:
diff changeset
130 static lra_live_range_t
kono
parents:
diff changeset
131 copy_live_range (lra_live_range_t r)
kono
parents:
diff changeset
132 {
kono
parents:
diff changeset
133 return new (lra_live_range_pool) lra_live_range (*r);
kono
parents:
diff changeset
134 }
kono
parents:
diff changeset
135
kono
parents:
diff changeset
136 /* Copy live range list given by its head R and return the result. */
kono
parents:
diff changeset
137 lra_live_range_t
kono
parents:
diff changeset
138 lra_copy_live_range_list (lra_live_range_t r)
kono
parents:
diff changeset
139 {
kono
parents:
diff changeset
140 lra_live_range_t p, first, *chain;
kono
parents:
diff changeset
141
kono
parents:
diff changeset
142 first = NULL;
kono
parents:
diff changeset
143 for (chain = &first; r != NULL; r = r->next)
kono
parents:
diff changeset
144 {
kono
parents:
diff changeset
145 p = copy_live_range (r);
kono
parents:
diff changeset
146 *chain = p;
kono
parents:
diff changeset
147 chain = &p->next;
kono
parents:
diff changeset
148 }
kono
parents:
diff changeset
149 return first;
kono
parents:
diff changeset
150 }
kono
parents:
diff changeset
151
kono
parents:
diff changeset
152 /* Merge *non-intersected* ranges R1 and R2 and returns the result.
kono
parents:
diff changeset
153 The function maintains the order of ranges and tries to minimize
kono
parents:
diff changeset
154 size of the result range list. Ranges R1 and R2 may not be used
kono
parents:
diff changeset
155 after the call. */
kono
parents:
diff changeset
156 lra_live_range_t
kono
parents:
diff changeset
157 lra_merge_live_ranges (lra_live_range_t r1, lra_live_range_t r2)
kono
parents:
diff changeset
158 {
kono
parents:
diff changeset
159 lra_live_range_t first, last;
kono
parents:
diff changeset
160
kono
parents:
diff changeset
161 if (r1 == NULL)
kono
parents:
diff changeset
162 return r2;
kono
parents:
diff changeset
163 if (r2 == NULL)
kono
parents:
diff changeset
164 return r1;
kono
parents:
diff changeset
165 for (first = last = NULL; r1 != NULL && r2 != NULL;)
kono
parents:
diff changeset
166 {
kono
parents:
diff changeset
167 if (r1->start < r2->start)
kono
parents:
diff changeset
168 std::swap (r1, r2);
kono
parents:
diff changeset
169
kono
parents:
diff changeset
170 if (r1->start == r2->finish + 1)
kono
parents:
diff changeset
171 {
kono
parents:
diff changeset
172 /* Joint ranges: merge r1 and r2 into r1. */
kono
parents:
diff changeset
173 r1->start = r2->start;
kono
parents:
diff changeset
174 lra_live_range_t temp = r2;
kono
parents:
diff changeset
175 r2 = r2->next;
kono
parents:
diff changeset
176 lra_live_range_pool.remove (temp);
kono
parents:
diff changeset
177 }
kono
parents:
diff changeset
178 else
kono
parents:
diff changeset
179 {
kono
parents:
diff changeset
180 gcc_assert (r2->finish + 1 < r1->start);
kono
parents:
diff changeset
181 /* Add r1 to the result. */
kono
parents:
diff changeset
182 if (first == NULL)
kono
parents:
diff changeset
183 first = last = r1;
kono
parents:
diff changeset
184 else
kono
parents:
diff changeset
185 {
kono
parents:
diff changeset
186 last->next = r1;
kono
parents:
diff changeset
187 last = r1;
kono
parents:
diff changeset
188 }
kono
parents:
diff changeset
189 r1 = r1->next;
kono
parents:
diff changeset
190 }
kono
parents:
diff changeset
191 }
kono
parents:
diff changeset
192 if (r1 != NULL)
kono
parents:
diff changeset
193 {
kono
parents:
diff changeset
194 if (first == NULL)
kono
parents:
diff changeset
195 first = r1;
kono
parents:
diff changeset
196 else
kono
parents:
diff changeset
197 last->next = r1;
kono
parents:
diff changeset
198 }
kono
parents:
diff changeset
199 else
kono
parents:
diff changeset
200 {
kono
parents:
diff changeset
201 lra_assert (r2 != NULL);
kono
parents:
diff changeset
202 if (first == NULL)
kono
parents:
diff changeset
203 first = r2;
kono
parents:
diff changeset
204 else
kono
parents:
diff changeset
205 last->next = r2;
kono
parents:
diff changeset
206 }
kono
parents:
diff changeset
207 return first;
kono
parents:
diff changeset
208 }
kono
parents:
diff changeset
209
kono
parents:
diff changeset
210 /* Return TRUE if live ranges R1 and R2 intersect. */
kono
parents:
diff changeset
211 bool
kono
parents:
diff changeset
212 lra_intersected_live_ranges_p (lra_live_range_t r1, lra_live_range_t r2)
kono
parents:
diff changeset
213 {
kono
parents:
diff changeset
214 /* Remember the live ranges are always kept ordered. */
kono
parents:
diff changeset
215 while (r1 != NULL && r2 != NULL)
kono
parents:
diff changeset
216 {
kono
parents:
diff changeset
217 if (r1->start > r2->finish)
kono
parents:
diff changeset
218 r1 = r1->next;
kono
parents:
diff changeset
219 else if (r2->start > r1->finish)
kono
parents:
diff changeset
220 r2 = r2->next;
kono
parents:
diff changeset
221 else
kono
parents:
diff changeset
222 return true;
kono
parents:
diff changeset
223 }
kono
parents:
diff changeset
224 return false;
kono
parents:
diff changeset
225 }
kono
parents:
diff changeset
226
kono
parents:
diff changeset
227 /* The corresponding bitmaps of BB currently being processed. */
kono
parents:
diff changeset
228 static bitmap bb_killed_pseudos, bb_gen_pseudos;
kono
parents:
diff changeset
229
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
230 /* Record hard register REGNO as now being live. It updates
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
231 living hard regs and START_LIVING. */
111
kono
parents:
diff changeset
232 static void
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
233 make_hard_regno_live (int regno)
111
kono
parents:
diff changeset
234 {
kono
parents:
diff changeset
235 lra_assert (regno < FIRST_PSEUDO_REGISTER);
kono
parents:
diff changeset
236 if (TEST_HARD_REG_BIT (hard_regs_live, regno))
kono
parents:
diff changeset
237 return;
kono
parents:
diff changeset
238 SET_HARD_REG_BIT (hard_regs_live, regno);
kono
parents:
diff changeset
239 sparseset_set_bit (start_living, regno);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
240 if (fixed_regs[regno] || TEST_HARD_REG_BIT (hard_regs_spilled_into, regno))
111
kono
parents:
diff changeset
241 bitmap_set_bit (bb_gen_pseudos, regno);
kono
parents:
diff changeset
242 }
kono
parents:
diff changeset
243
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
244 /* Process the definition of hard register REGNO. This updates
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
245 hard_regs_live, START_DYING and conflict hard regs for living
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
246 pseudos. */
111
kono
parents:
diff changeset
247 static void
kono
parents:
diff changeset
248 make_hard_regno_dead (int regno)
kono
parents:
diff changeset
249 {
kono
parents:
diff changeset
250 lra_assert (regno < FIRST_PSEUDO_REGISTER);
kono
parents:
diff changeset
251 if (! TEST_HARD_REG_BIT (hard_regs_live, regno))
kono
parents:
diff changeset
252 return;
kono
parents:
diff changeset
253 sparseset_set_bit (start_dying, regno);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
254 unsigned int i;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
255 EXECUTE_IF_SET_IN_SPARSESET (pseudos_live, i)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
256 {
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
257 if (ignore_reg_for_conflicts != NULL_RTX
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
258 && REGNO (ignore_reg_for_conflicts) == i)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
259 continue;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
260 SET_HARD_REG_BIT (lra_reg_info[i].conflict_hard_regs, regno);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
261 }
111
kono
parents:
diff changeset
262 CLEAR_HARD_REG_BIT (hard_regs_live, regno);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
263 if (fixed_regs[regno] || TEST_HARD_REG_BIT (hard_regs_spilled_into, regno))
111
kono
parents:
diff changeset
264 {
kono
parents:
diff changeset
265 bitmap_clear_bit (bb_gen_pseudos, regno);
kono
parents:
diff changeset
266 bitmap_set_bit (bb_killed_pseudos, regno);
kono
parents:
diff changeset
267 }
kono
parents:
diff changeset
268 }
kono
parents:
diff changeset
269
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
270 /* Mark pseudo REGNO as living at program point POINT, update START_LIVING
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
271 and start a new live range for the pseudo corresponding to REGNO if it
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
272 is necessary. */
111
kono
parents:
diff changeset
273 static void
kono
parents:
diff changeset
274 mark_pseudo_live (int regno, int point)
kono
parents:
diff changeset
275 {
kono
parents:
diff changeset
276 lra_live_range_t p;
kono
parents:
diff changeset
277
kono
parents:
diff changeset
278 lra_assert (regno >= FIRST_PSEUDO_REGISTER);
kono
parents:
diff changeset
279 lra_assert (! sparseset_bit_p (pseudos_live, regno));
kono
parents:
diff changeset
280 sparseset_set_bit (pseudos_live, regno);
kono
parents:
diff changeset
281
kono
parents:
diff changeset
282 if ((complete_info_p || lra_get_regno_hard_regno (regno) < 0)
kono
parents:
diff changeset
283 && ((p = lra_reg_info[regno].live_ranges) == NULL
kono
parents:
diff changeset
284 || (p->finish != point && p->finish + 1 != point)))
kono
parents:
diff changeset
285 lra_reg_info[regno].live_ranges
kono
parents:
diff changeset
286 = create_live_range (regno, point, -1, p);
kono
parents:
diff changeset
287 sparseset_set_bit (start_living, regno);
kono
parents:
diff changeset
288 }
kono
parents:
diff changeset
289
kono
parents:
diff changeset
290 /* Mark pseudo REGNO as not living at program point POINT and update
kono
parents:
diff changeset
291 START_DYING.
kono
parents:
diff changeset
292 This finishes the current live range for the pseudo corresponding
kono
parents:
diff changeset
293 to REGNO. */
kono
parents:
diff changeset
294 static void
kono
parents:
diff changeset
295 mark_pseudo_dead (int regno, int point)
kono
parents:
diff changeset
296 {
kono
parents:
diff changeset
297 lra_live_range_t p;
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
298 int ignore_regno = -1;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
299 int end_regno = -1;
111
kono
parents:
diff changeset
300
kono
parents:
diff changeset
301 lra_assert (regno >= FIRST_PSEUDO_REGISTER);
kono
parents:
diff changeset
302 lra_assert (sparseset_bit_p (pseudos_live, regno));
kono
parents:
diff changeset
303 sparseset_clear_bit (pseudos_live, regno);
kono
parents:
diff changeset
304 sparseset_set_bit (start_dying, regno);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
305
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
306 /* Check whether any part of IGNORE_REG_FOR_CONFLICTS already conflicts
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
307 with REGNO. */
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
308 if (ignore_reg_for_conflicts != NULL_RTX
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
309 && REGNO (ignore_reg_for_conflicts) < FIRST_PSEUDO_REGISTER)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
310 {
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
311 end_regno = END_REGNO (ignore_reg_for_conflicts);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
312 int src_regno = ignore_regno = REGNO (ignore_reg_for_conflicts);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
313
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
314 while (src_regno < end_regno)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
315 {
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
316 if (TEST_HARD_REG_BIT (lra_reg_info[regno].conflict_hard_regs,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
317 src_regno))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
318 {
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
319 ignore_regno = end_regno = -1;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
320 break;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
321 }
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
322 src_regno++;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
323 }
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
324 }
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
325
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
326 IOR_HARD_REG_SET (lra_reg_info[regno].conflict_hard_regs, hard_regs_live);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
327
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
328 /* If IGNORE_REG_FOR_CONFLICTS did not already conflict with REGNO, make
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
329 sure it still doesn't. */
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
330 for (; ignore_regno < end_regno; ignore_regno++)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
331 CLEAR_HARD_REG_BIT (lra_reg_info[regno].conflict_hard_regs, ignore_regno);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
332
111
kono
parents:
diff changeset
333 if (complete_info_p || lra_get_regno_hard_regno (regno) < 0)
kono
parents:
diff changeset
334 {
kono
parents:
diff changeset
335 p = lra_reg_info[regno].live_ranges;
kono
parents:
diff changeset
336 lra_assert (p != NULL);
kono
parents:
diff changeset
337 p->finish = point;
kono
parents:
diff changeset
338 }
kono
parents:
diff changeset
339 }
kono
parents:
diff changeset
340
kono
parents:
diff changeset
341 /* Mark register REGNO (pseudo or hard register) in MODE as live at
kono
parents:
diff changeset
342 program point POINT. Update BB_GEN_PSEUDOS.
kono
parents:
diff changeset
343 Return TRUE if the liveness tracking sets were modified, or FALSE
kono
parents:
diff changeset
344 if nothing changed. */
kono
parents:
diff changeset
345 static bool
kono
parents:
diff changeset
346 mark_regno_live (int regno, machine_mode mode, int point)
kono
parents:
diff changeset
347 {
kono
parents:
diff changeset
348 int last;
kono
parents:
diff changeset
349 bool changed = false;
kono
parents:
diff changeset
350
kono
parents:
diff changeset
351 if (regno < FIRST_PSEUDO_REGISTER)
kono
parents:
diff changeset
352 {
kono
parents:
diff changeset
353 for (last = end_hard_regno (mode, regno); regno < last; regno++)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
354 make_hard_regno_live (regno);
111
kono
parents:
diff changeset
355 }
kono
parents:
diff changeset
356 else
kono
parents:
diff changeset
357 {
kono
parents:
diff changeset
358 if (! sparseset_bit_p (pseudos_live, regno))
kono
parents:
diff changeset
359 {
kono
parents:
diff changeset
360 mark_pseudo_live (regno, point);
kono
parents:
diff changeset
361 changed = true;
kono
parents:
diff changeset
362 }
kono
parents:
diff changeset
363 bitmap_set_bit (bb_gen_pseudos, regno);
kono
parents:
diff changeset
364 }
kono
parents:
diff changeset
365 return changed;
kono
parents:
diff changeset
366 }
kono
parents:
diff changeset
367
kono
parents:
diff changeset
368
kono
parents:
diff changeset
369 /* Mark register REGNO in MODE as dead at program point POINT. Update
kono
parents:
diff changeset
370 BB_GEN_PSEUDOS and BB_KILLED_PSEUDOS. Return TRUE if the liveness
kono
parents:
diff changeset
371 tracking sets were modified, or FALSE if nothing changed. */
kono
parents:
diff changeset
372 static bool
kono
parents:
diff changeset
373 mark_regno_dead (int regno, machine_mode mode, int point)
kono
parents:
diff changeset
374 {
kono
parents:
diff changeset
375 int last;
kono
parents:
diff changeset
376 bool changed = false;
kono
parents:
diff changeset
377
kono
parents:
diff changeset
378 if (regno < FIRST_PSEUDO_REGISTER)
kono
parents:
diff changeset
379 {
kono
parents:
diff changeset
380 for (last = end_hard_regno (mode, regno); regno < last; regno++)
kono
parents:
diff changeset
381 make_hard_regno_dead (regno);
kono
parents:
diff changeset
382 }
kono
parents:
diff changeset
383 else
kono
parents:
diff changeset
384 {
kono
parents:
diff changeset
385 if (sparseset_bit_p (pseudos_live, regno))
kono
parents:
diff changeset
386 {
kono
parents:
diff changeset
387 mark_pseudo_dead (regno, point);
kono
parents:
diff changeset
388 changed = true;
kono
parents:
diff changeset
389 }
kono
parents:
diff changeset
390 bitmap_clear_bit (bb_gen_pseudos, regno);
kono
parents:
diff changeset
391 bitmap_set_bit (bb_killed_pseudos, regno);
kono
parents:
diff changeset
392 }
kono
parents:
diff changeset
393 return changed;
kono
parents:
diff changeset
394 }
kono
parents:
diff changeset
395
kono
parents:
diff changeset
396
kono
parents:
diff changeset
397
kono
parents:
diff changeset
398 /* This page contains code for making global live analysis of pseudos.
kono
parents:
diff changeset
399 The code works only when pseudo live info is changed on a BB
kono
parents:
diff changeset
400 border. That might be a consequence of some global transformations
kono
parents:
diff changeset
401 in LRA, e.g. PIC pseudo reuse or rematerialization. */
kono
parents:
diff changeset
402
kono
parents:
diff changeset
403 /* Structure describing local BB data used for pseudo
kono
parents:
diff changeset
404 live-analysis. */
kono
parents:
diff changeset
405 struct bb_data_pseudos
kono
parents:
diff changeset
406 {
kono
parents:
diff changeset
407 /* Basic block about which the below data are. */
kono
parents:
diff changeset
408 basic_block bb;
kono
parents:
diff changeset
409 bitmap_head killed_pseudos; /* pseudos killed in the BB. */
kono
parents:
diff changeset
410 bitmap_head gen_pseudos; /* pseudos generated in the BB. */
kono
parents:
diff changeset
411 };
kono
parents:
diff changeset
412
kono
parents:
diff changeset
413 /* Array for all BB data. Indexed by the corresponding BB index. */
kono
parents:
diff changeset
414 typedef struct bb_data_pseudos *bb_data_t;
kono
parents:
diff changeset
415
kono
parents:
diff changeset
416 /* All basic block data are referred through the following array. */
kono
parents:
diff changeset
417 static bb_data_t bb_data;
kono
parents:
diff changeset
418
kono
parents:
diff changeset
419 /* Two small functions for access to the bb data. */
kono
parents:
diff changeset
420 static inline bb_data_t
kono
parents:
diff changeset
421 get_bb_data (basic_block bb)
kono
parents:
diff changeset
422 {
kono
parents:
diff changeset
423 return &bb_data[(bb)->index];
kono
parents:
diff changeset
424 }
kono
parents:
diff changeset
425
kono
parents:
diff changeset
426 static inline bb_data_t
kono
parents:
diff changeset
427 get_bb_data_by_index (int index)
kono
parents:
diff changeset
428 {
kono
parents:
diff changeset
429 return &bb_data[index];
kono
parents:
diff changeset
430 }
kono
parents:
diff changeset
431
kono
parents:
diff changeset
432 /* Bitmap with all hard regs. */
kono
parents:
diff changeset
433 static bitmap_head all_hard_regs_bitmap;
kono
parents:
diff changeset
434
kono
parents:
diff changeset
435 /* The transfer function used by the DF equation solver to propagate
kono
parents:
diff changeset
436 live info through block with BB_INDEX according to the following
kono
parents:
diff changeset
437 equation:
kono
parents:
diff changeset
438
kono
parents:
diff changeset
439 bb.livein = (bb.liveout - bb.kill) OR bb.gen
kono
parents:
diff changeset
440 */
kono
parents:
diff changeset
441 static bool
kono
parents:
diff changeset
442 live_trans_fun (int bb_index)
kono
parents:
diff changeset
443 {
kono
parents:
diff changeset
444 basic_block bb = get_bb_data_by_index (bb_index)->bb;
kono
parents:
diff changeset
445 bitmap bb_liveout = df_get_live_out (bb);
kono
parents:
diff changeset
446 bitmap bb_livein = df_get_live_in (bb);
kono
parents:
diff changeset
447 bb_data_t bb_info = get_bb_data (bb);
kono
parents:
diff changeset
448
kono
parents:
diff changeset
449 bitmap_and_compl (&temp_bitmap, bb_liveout, &all_hard_regs_bitmap);
kono
parents:
diff changeset
450 return bitmap_ior_and_compl (bb_livein, &bb_info->gen_pseudos,
kono
parents:
diff changeset
451 &temp_bitmap, &bb_info->killed_pseudos);
kono
parents:
diff changeset
452 }
kono
parents:
diff changeset
453
kono
parents:
diff changeset
454 /* The confluence function used by the DF equation solver to set up
kono
parents:
diff changeset
455 live info for a block BB without predecessor. */
kono
parents:
diff changeset
456 static void
kono
parents:
diff changeset
457 live_con_fun_0 (basic_block bb)
kono
parents:
diff changeset
458 {
kono
parents:
diff changeset
459 bitmap_and_into (df_get_live_out (bb), &all_hard_regs_bitmap);
kono
parents:
diff changeset
460 }
kono
parents:
diff changeset
461
kono
parents:
diff changeset
462 /* The confluence function used by the DF equation solver to propagate
kono
parents:
diff changeset
463 live info from successor to predecessor on edge E according to the
kono
parents:
diff changeset
464 following equation:
kono
parents:
diff changeset
465
kono
parents:
diff changeset
466 bb.liveout = 0 for entry block | OR (livein of successors)
kono
parents:
diff changeset
467 */
kono
parents:
diff changeset
468 static bool
kono
parents:
diff changeset
469 live_con_fun_n (edge e)
kono
parents:
diff changeset
470 {
kono
parents:
diff changeset
471 basic_block bb = e->src;
kono
parents:
diff changeset
472 basic_block dest = e->dest;
kono
parents:
diff changeset
473 bitmap bb_liveout = df_get_live_out (bb);
kono
parents:
diff changeset
474 bitmap dest_livein = df_get_live_in (dest);
kono
parents:
diff changeset
475
kono
parents:
diff changeset
476 return bitmap_ior_and_compl_into (bb_liveout,
kono
parents:
diff changeset
477 dest_livein, &all_hard_regs_bitmap);
kono
parents:
diff changeset
478 }
kono
parents:
diff changeset
479
kono
parents:
diff changeset
480 /* Indexes of all function blocks. */
kono
parents:
diff changeset
481 static bitmap_head all_blocks;
kono
parents:
diff changeset
482
kono
parents:
diff changeset
483 /* Allocate and initialize data needed for global pseudo live
kono
parents:
diff changeset
484 analysis. */
kono
parents:
diff changeset
485 static void
kono
parents:
diff changeset
486 initiate_live_solver (void)
kono
parents:
diff changeset
487 {
kono
parents:
diff changeset
488 bitmap_initialize (&all_hard_regs_bitmap, &reg_obstack);
kono
parents:
diff changeset
489 bitmap_set_range (&all_hard_regs_bitmap, 0, FIRST_PSEUDO_REGISTER);
kono
parents:
diff changeset
490 bb_data = XNEWVEC (struct bb_data_pseudos, last_basic_block_for_fn (cfun));
kono
parents:
diff changeset
491 bitmap_initialize (&all_blocks, &reg_obstack);
kono
parents:
diff changeset
492
kono
parents:
diff changeset
493 basic_block bb;
kono
parents:
diff changeset
494 FOR_ALL_BB_FN (bb, cfun)
kono
parents:
diff changeset
495 {
kono
parents:
diff changeset
496 bb_data_t bb_info = get_bb_data (bb);
kono
parents:
diff changeset
497 bb_info->bb = bb;
kono
parents:
diff changeset
498 bitmap_initialize (&bb_info->killed_pseudos, &reg_obstack);
kono
parents:
diff changeset
499 bitmap_initialize (&bb_info->gen_pseudos, &reg_obstack);
kono
parents:
diff changeset
500 bitmap_set_bit (&all_blocks, bb->index);
kono
parents:
diff changeset
501 }
kono
parents:
diff changeset
502 }
kono
parents:
diff changeset
503
kono
parents:
diff changeset
504 /* Free all data needed for global pseudo live analysis. */
kono
parents:
diff changeset
505 static void
kono
parents:
diff changeset
506 finish_live_solver (void)
kono
parents:
diff changeset
507 {
kono
parents:
diff changeset
508 basic_block bb;
kono
parents:
diff changeset
509
kono
parents:
diff changeset
510 bitmap_clear (&all_blocks);
kono
parents:
diff changeset
511 FOR_ALL_BB_FN (bb, cfun)
kono
parents:
diff changeset
512 {
kono
parents:
diff changeset
513 bb_data_t bb_info = get_bb_data (bb);
kono
parents:
diff changeset
514 bitmap_clear (&bb_info->killed_pseudos);
kono
parents:
diff changeset
515 bitmap_clear (&bb_info->gen_pseudos);
kono
parents:
diff changeset
516 }
kono
parents:
diff changeset
517 free (bb_data);
kono
parents:
diff changeset
518 bitmap_clear (&all_hard_regs_bitmap);
kono
parents:
diff changeset
519 }
kono
parents:
diff changeset
520
kono
parents:
diff changeset
521
kono
parents:
diff changeset
522
kono
parents:
diff changeset
523 /* Insn currently scanned. */
kono
parents:
diff changeset
524 static rtx_insn *curr_insn;
kono
parents:
diff changeset
525 /* The insn data. */
kono
parents:
diff changeset
526 static lra_insn_recog_data_t curr_id;
kono
parents:
diff changeset
527 /* The insn static data. */
kono
parents:
diff changeset
528 static struct lra_static_insn_data *curr_static_id;
kono
parents:
diff changeset
529
kono
parents:
diff changeset
530 /* Vec containing execution frequencies of program points. */
kono
parents:
diff changeset
531 static vec<int> point_freq_vec;
kono
parents:
diff changeset
532
kono
parents:
diff changeset
533 /* The start of the above vector elements. */
kono
parents:
diff changeset
534 int *lra_point_freq;
kono
parents:
diff changeset
535
kono
parents:
diff changeset
536 /* Increment the current program point POINT to the next point which has
kono
parents:
diff changeset
537 execution frequency FREQ. */
kono
parents:
diff changeset
538 static void
kono
parents:
diff changeset
539 next_program_point (int &point, int freq)
kono
parents:
diff changeset
540 {
kono
parents:
diff changeset
541 point_freq_vec.safe_push (freq);
kono
parents:
diff changeset
542 lra_point_freq = point_freq_vec.address ();
kono
parents:
diff changeset
543 point++;
kono
parents:
diff changeset
544 }
kono
parents:
diff changeset
545
kono
parents:
diff changeset
546 /* Update the preference of HARD_REGNO for pseudo REGNO by PROFIT. */
kono
parents:
diff changeset
547 void
kono
parents:
diff changeset
548 lra_setup_reload_pseudo_preferenced_hard_reg (int regno,
kono
parents:
diff changeset
549 int hard_regno, int profit)
kono
parents:
diff changeset
550 {
kono
parents:
diff changeset
551 lra_assert (regno >= lra_constraint_new_regno_start);
kono
parents:
diff changeset
552 if (lra_reg_info[regno].preferred_hard_regno1 == hard_regno)
kono
parents:
diff changeset
553 lra_reg_info[regno].preferred_hard_regno_profit1 += profit;
kono
parents:
diff changeset
554 else if (lra_reg_info[regno].preferred_hard_regno2 == hard_regno)
kono
parents:
diff changeset
555 lra_reg_info[regno].preferred_hard_regno_profit2 += profit;
kono
parents:
diff changeset
556 else if (lra_reg_info[regno].preferred_hard_regno1 < 0)
kono
parents:
diff changeset
557 {
kono
parents:
diff changeset
558 lra_reg_info[regno].preferred_hard_regno1 = hard_regno;
kono
parents:
diff changeset
559 lra_reg_info[regno].preferred_hard_regno_profit1 = profit;
kono
parents:
diff changeset
560 }
kono
parents:
diff changeset
561 else if (lra_reg_info[regno].preferred_hard_regno2 < 0
kono
parents:
diff changeset
562 || profit > lra_reg_info[regno].preferred_hard_regno_profit2)
kono
parents:
diff changeset
563 {
kono
parents:
diff changeset
564 lra_reg_info[regno].preferred_hard_regno2 = hard_regno;
kono
parents:
diff changeset
565 lra_reg_info[regno].preferred_hard_regno_profit2 = profit;
kono
parents:
diff changeset
566 }
kono
parents:
diff changeset
567 else
kono
parents:
diff changeset
568 return;
kono
parents:
diff changeset
569 /* Keep the 1st hard regno as more profitable. */
kono
parents:
diff changeset
570 if (lra_reg_info[regno].preferred_hard_regno1 >= 0
kono
parents:
diff changeset
571 && lra_reg_info[regno].preferred_hard_regno2 >= 0
kono
parents:
diff changeset
572 && (lra_reg_info[regno].preferred_hard_regno_profit2
kono
parents:
diff changeset
573 > lra_reg_info[regno].preferred_hard_regno_profit1))
kono
parents:
diff changeset
574 {
kono
parents:
diff changeset
575 std::swap (lra_reg_info[regno].preferred_hard_regno1,
kono
parents:
diff changeset
576 lra_reg_info[regno].preferred_hard_regno2);
kono
parents:
diff changeset
577 std::swap (lra_reg_info[regno].preferred_hard_regno_profit1,
kono
parents:
diff changeset
578 lra_reg_info[regno].preferred_hard_regno_profit2);
kono
parents:
diff changeset
579 }
kono
parents:
diff changeset
580 if (lra_dump_file != NULL)
kono
parents:
diff changeset
581 {
kono
parents:
diff changeset
582 if ((hard_regno = lra_reg_info[regno].preferred_hard_regno1) >= 0)
kono
parents:
diff changeset
583 fprintf (lra_dump_file,
kono
parents:
diff changeset
584 " Hard reg %d is preferable by r%d with profit %d\n",
kono
parents:
diff changeset
585 hard_regno, regno,
kono
parents:
diff changeset
586 lra_reg_info[regno].preferred_hard_regno_profit1);
kono
parents:
diff changeset
587 if ((hard_regno = lra_reg_info[regno].preferred_hard_regno2) >= 0)
kono
parents:
diff changeset
588 fprintf (lra_dump_file,
kono
parents:
diff changeset
589 " Hard reg %d is preferable by r%d with profit %d\n",
kono
parents:
diff changeset
590 hard_regno, regno,
kono
parents:
diff changeset
591 lra_reg_info[regno].preferred_hard_regno_profit2);
kono
parents:
diff changeset
592 }
kono
parents:
diff changeset
593 }
kono
parents:
diff changeset
594
kono
parents:
diff changeset
595 /* Check that REGNO living through calls and setjumps, set up conflict
kono
parents:
diff changeset
596 regs using LAST_CALL_USED_REG_SET, and clear corresponding bits in
kono
parents:
diff changeset
597 PSEUDOS_LIVE_THROUGH_CALLS and PSEUDOS_LIVE_THROUGH_SETJUMPS. */
kono
parents:
diff changeset
598 static inline void
kono
parents:
diff changeset
599 check_pseudos_live_through_calls (int regno,
kono
parents:
diff changeset
600 HARD_REG_SET last_call_used_reg_set)
kono
parents:
diff changeset
601 {
kono
parents:
diff changeset
602 int hr;
kono
parents:
diff changeset
603
kono
parents:
diff changeset
604 if (! sparseset_bit_p (pseudos_live_through_calls, regno))
kono
parents:
diff changeset
605 return;
kono
parents:
diff changeset
606 sparseset_clear_bit (pseudos_live_through_calls, regno);
kono
parents:
diff changeset
607 IOR_HARD_REG_SET (lra_reg_info[regno].conflict_hard_regs,
kono
parents:
diff changeset
608 last_call_used_reg_set);
kono
parents:
diff changeset
609
kono
parents:
diff changeset
610 for (hr = 0; hr < FIRST_PSEUDO_REGISTER; hr++)
kono
parents:
diff changeset
611 if (targetm.hard_regno_call_part_clobbered (hr,
kono
parents:
diff changeset
612 PSEUDO_REGNO_MODE (regno)))
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
613 add_to_hard_reg_set (&lra_reg_info[regno].conflict_hard_regs,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
614 PSEUDO_REGNO_MODE (regno), hr);
111
kono
parents:
diff changeset
615 lra_reg_info[regno].call_p = true;
kono
parents:
diff changeset
616 if (! sparseset_bit_p (pseudos_live_through_setjumps, regno))
kono
parents:
diff changeset
617 return;
kono
parents:
diff changeset
618 sparseset_clear_bit (pseudos_live_through_setjumps, regno);
kono
parents:
diff changeset
619 /* Don't allocate pseudos that cross setjmps or any call, if this
kono
parents:
diff changeset
620 function receives a nonlocal goto. */
kono
parents:
diff changeset
621 SET_HARD_REG_SET (lra_reg_info[regno].conflict_hard_regs);
kono
parents:
diff changeset
622 }
kono
parents:
diff changeset
623
kono
parents:
diff changeset
624 /* Return true if insn REG is an early clobber operand in alternative
kono
parents:
diff changeset
625 NALT. Negative NALT means that we don't know the current insn
kono
parents:
diff changeset
626 alternative. So assume the worst. */
kono
parents:
diff changeset
627 static inline bool
kono
parents:
diff changeset
628 reg_early_clobber_p (const struct lra_insn_reg *reg, int n_alt)
kono
parents:
diff changeset
629 {
kono
parents:
diff changeset
630 return (reg->early_clobber
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
631 && (n_alt == LRA_UNKNOWN_ALT
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
632 || (n_alt != LRA_NON_CLOBBERED_ALT
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
633 && TEST_BIT (reg->early_clobber_alts, n_alt))));
111
kono
parents:
diff changeset
634 }
kono
parents:
diff changeset
635
kono
parents:
diff changeset
636 /* Process insns of the basic block BB to update pseudo live ranges,
kono
parents:
diff changeset
637 pseudo hard register conflicts, and insn notes. We do it on
kono
parents:
diff changeset
638 backward scan of BB insns. CURR_POINT is the program point where
kono
parents:
diff changeset
639 BB ends. The function updates this counter and returns in
kono
parents:
diff changeset
640 CURR_POINT the program point where BB starts. The function also
kono
parents:
diff changeset
641 does local live info updates and can delete the dead insns if
kono
parents:
diff changeset
642 DEAD_INSN_P. It returns true if pseudo live info was
kono
parents:
diff changeset
643 changed at the BB start. */
kono
parents:
diff changeset
644 static bool
kono
parents:
diff changeset
645 process_bb_lives (basic_block bb, int &curr_point, bool dead_insn_p)
kono
parents:
diff changeset
646 {
kono
parents:
diff changeset
647 int i, regno, freq;
kono
parents:
diff changeset
648 unsigned int j;
kono
parents:
diff changeset
649 bitmap_iterator bi;
kono
parents:
diff changeset
650 bitmap reg_live_out;
kono
parents:
diff changeset
651 unsigned int px;
kono
parents:
diff changeset
652 rtx_insn *next;
kono
parents:
diff changeset
653 rtx link, *link_loc;
kono
parents:
diff changeset
654 bool need_curr_point_incr;
kono
parents:
diff changeset
655 HARD_REG_SET last_call_used_reg_set;
kono
parents:
diff changeset
656
kono
parents:
diff changeset
657 reg_live_out = df_get_live_out (bb);
kono
parents:
diff changeset
658 sparseset_clear (pseudos_live);
kono
parents:
diff changeset
659 sparseset_clear (pseudos_live_through_calls);
kono
parents:
diff changeset
660 sparseset_clear (pseudos_live_through_setjumps);
kono
parents:
diff changeset
661 CLEAR_HARD_REG_SET (last_call_used_reg_set);
kono
parents:
diff changeset
662 REG_SET_TO_HARD_REG_SET (hard_regs_live, reg_live_out);
kono
parents:
diff changeset
663 AND_COMPL_HARD_REG_SET (hard_regs_live, eliminable_regset);
kono
parents:
diff changeset
664 EXECUTE_IF_SET_IN_BITMAP (reg_live_out, FIRST_PSEUDO_REGISTER, j, bi)
kono
parents:
diff changeset
665 mark_pseudo_live (j, curr_point);
kono
parents:
diff changeset
666
kono
parents:
diff changeset
667 bb_gen_pseudos = &get_bb_data (bb)->gen_pseudos;
kono
parents:
diff changeset
668 bb_killed_pseudos = &get_bb_data (bb)->killed_pseudos;
kono
parents:
diff changeset
669 bitmap_clear (bb_gen_pseudos);
kono
parents:
diff changeset
670 bitmap_clear (bb_killed_pseudos);
kono
parents:
diff changeset
671 freq = REG_FREQ_FROM_BB (bb);
kono
parents:
diff changeset
672
kono
parents:
diff changeset
673 if (lra_dump_file != NULL)
kono
parents:
diff changeset
674 fprintf (lra_dump_file, " BB %d\n", bb->index);
kono
parents:
diff changeset
675
kono
parents:
diff changeset
676 /* Scan the code of this basic block, noting which pseudos and hard
kono
parents:
diff changeset
677 regs are born or die.
kono
parents:
diff changeset
678
kono
parents:
diff changeset
679 Note that this loop treats uninitialized values as live until the
kono
parents:
diff changeset
680 beginning of the block. For example, if an instruction uses
kono
parents:
diff changeset
681 (reg:DI foo), and only (subreg:SI (reg:DI foo) 0) is ever set,
kono
parents:
diff changeset
682 FOO will remain live until the beginning of the block. Likewise
kono
parents:
diff changeset
683 if FOO is not set at all. This is unnecessarily pessimistic, but
kono
parents:
diff changeset
684 it probably doesn't matter much in practice. */
kono
parents:
diff changeset
685 FOR_BB_INSNS_REVERSE_SAFE (bb, curr_insn, next)
kono
parents:
diff changeset
686 {
kono
parents:
diff changeset
687 bool call_p;
kono
parents:
diff changeset
688 int n_alt, dst_regno, src_regno;
kono
parents:
diff changeset
689 rtx set;
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
690 struct lra_insn_reg *reg, *hr;
111
kono
parents:
diff changeset
691
kono
parents:
diff changeset
692 if (!NONDEBUG_INSN_P (curr_insn))
kono
parents:
diff changeset
693 continue;
kono
parents:
diff changeset
694
kono
parents:
diff changeset
695 curr_id = lra_get_insn_recog_data (curr_insn);
kono
parents:
diff changeset
696 curr_static_id = curr_id->insn_static_data;
kono
parents:
diff changeset
697 n_alt = curr_id->used_insn_alternative;
kono
parents:
diff changeset
698 if (lra_dump_file != NULL)
kono
parents:
diff changeset
699 fprintf (lra_dump_file, " Insn %u: point = %d, n_alt = %d\n",
kono
parents:
diff changeset
700 INSN_UID (curr_insn), curr_point, n_alt);
kono
parents:
diff changeset
701
kono
parents:
diff changeset
702 set = single_set (curr_insn);
kono
parents:
diff changeset
703
kono
parents:
diff changeset
704 if (dead_insn_p && set != NULL_RTX
kono
parents:
diff changeset
705 && REG_P (SET_DEST (set)) && REGNO (SET_DEST (set)) >= FIRST_PSEUDO_REGISTER
kono
parents:
diff changeset
706 && find_reg_note (curr_insn, REG_EH_REGION, NULL_RTX) == NULL_RTX
kono
parents:
diff changeset
707 && ! may_trap_p (PATTERN (curr_insn))
kono
parents:
diff changeset
708 /* Don't do premature remove of pic offset pseudo as we can
kono
parents:
diff changeset
709 start to use it after some reload generation. */
kono
parents:
diff changeset
710 && (pic_offset_table_rtx == NULL_RTX
kono
parents:
diff changeset
711 || pic_offset_table_rtx != SET_DEST (set)))
kono
parents:
diff changeset
712 {
kono
parents:
diff changeset
713 bool remove_p = true;
kono
parents:
diff changeset
714
kono
parents:
diff changeset
715 for (reg = curr_id->regs; reg != NULL; reg = reg->next)
kono
parents:
diff changeset
716 if (reg->type != OP_IN && sparseset_bit_p (pseudos_live, reg->regno))
kono
parents:
diff changeset
717 {
kono
parents:
diff changeset
718 remove_p = false;
kono
parents:
diff changeset
719 break;
kono
parents:
diff changeset
720 }
kono
parents:
diff changeset
721 for (reg = curr_static_id->hard_regs; reg != NULL; reg = reg->next)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
722 if (reg->type != OP_IN && !reg->clobber_high)
111
kono
parents:
diff changeset
723 {
kono
parents:
diff changeset
724 remove_p = false;
kono
parents:
diff changeset
725 break;
kono
parents:
diff changeset
726 }
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
727
111
kono
parents:
diff changeset
728 if (remove_p && ! volatile_refs_p (PATTERN (curr_insn)))
kono
parents:
diff changeset
729 {
kono
parents:
diff changeset
730 dst_regno = REGNO (SET_DEST (set));
kono
parents:
diff changeset
731 if (lra_dump_file != NULL)
kono
parents:
diff changeset
732 fprintf (lra_dump_file, " Deleting dead insn %u\n",
kono
parents:
diff changeset
733 INSN_UID (curr_insn));
kono
parents:
diff changeset
734 lra_set_insn_deleted (curr_insn);
kono
parents:
diff changeset
735 if (lra_reg_info[dst_regno].nrefs == 0)
kono
parents:
diff changeset
736 {
kono
parents:
diff changeset
737 /* There might be some debug insns with the pseudo. */
kono
parents:
diff changeset
738 unsigned int uid;
kono
parents:
diff changeset
739 rtx_insn *insn;
kono
parents:
diff changeset
740
kono
parents:
diff changeset
741 bitmap_copy (&temp_bitmap, &lra_reg_info[dst_regno].insn_bitmap);
kono
parents:
diff changeset
742 EXECUTE_IF_SET_IN_BITMAP (&temp_bitmap, 0, uid, bi)
kono
parents:
diff changeset
743 {
kono
parents:
diff changeset
744 insn = lra_insn_recog_data[uid]->insn;
kono
parents:
diff changeset
745 lra_substitute_pseudo_within_insn (insn, dst_regno,
kono
parents:
diff changeset
746 SET_SRC (set), true);
kono
parents:
diff changeset
747 lra_update_insn_regno_info (insn);
kono
parents:
diff changeset
748 }
kono
parents:
diff changeset
749 }
kono
parents:
diff changeset
750 continue;
kono
parents:
diff changeset
751 }
kono
parents:
diff changeset
752 }
kono
parents:
diff changeset
753
kono
parents:
diff changeset
754 /* Update max ref width and hard reg usage. */
kono
parents:
diff changeset
755 for (reg = curr_id->regs; reg != NULL; reg = reg->next)
kono
parents:
diff changeset
756 {
kono
parents:
diff changeset
757 int i, regno = reg->regno;
kono
parents:
diff changeset
758
kono
parents:
diff changeset
759 if (partial_subreg_p (lra_reg_info[regno].biggest_mode,
kono
parents:
diff changeset
760 reg->biggest_mode))
kono
parents:
diff changeset
761 lra_reg_info[regno].biggest_mode = reg->biggest_mode;
kono
parents:
diff changeset
762 if (regno < FIRST_PSEUDO_REGISTER)
kono
parents:
diff changeset
763 {
kono
parents:
diff changeset
764 lra_hard_reg_usage[regno] += freq;
kono
parents:
diff changeset
765 /* A hard register explicitly can be used in small mode,
kono
parents:
diff changeset
766 but implicitly it can be used in natural mode as a
kono
parents:
diff changeset
767 part of multi-register group. Process this case
kono
parents:
diff changeset
768 here. */
kono
parents:
diff changeset
769 for (i = 1; i < hard_regno_nregs (regno, reg->biggest_mode); i++)
kono
parents:
diff changeset
770 if (partial_subreg_p (lra_reg_info[regno + i].biggest_mode,
kono
parents:
diff changeset
771 GET_MODE (regno_reg_rtx[regno + i])))
kono
parents:
diff changeset
772 lra_reg_info[regno + i].biggest_mode
kono
parents:
diff changeset
773 = GET_MODE (regno_reg_rtx[regno + i]);
kono
parents:
diff changeset
774 }
kono
parents:
diff changeset
775 }
kono
parents:
diff changeset
776
kono
parents:
diff changeset
777 call_p = CALL_P (curr_insn);
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
778 ignore_reg_for_conflicts = non_conflicting_reg_copy_p (curr_insn);
111
kono
parents:
diff changeset
779 src_regno = (set != NULL_RTX && REG_P (SET_SRC (set))
kono
parents:
diff changeset
780 ? REGNO (SET_SRC (set)) : -1);
kono
parents:
diff changeset
781 dst_regno = (set != NULL_RTX && REG_P (SET_DEST (set))
kono
parents:
diff changeset
782 ? REGNO (SET_DEST (set)) : -1);
kono
parents:
diff changeset
783 if (complete_info_p
kono
parents:
diff changeset
784 && src_regno >= 0 && dst_regno >= 0
kono
parents:
diff changeset
785 /* Check that source regno does not conflict with
kono
parents:
diff changeset
786 destination regno to exclude most impossible
kono
parents:
diff changeset
787 preferences. */
kono
parents:
diff changeset
788 && (((src_regno >= FIRST_PSEUDO_REGISTER
kono
parents:
diff changeset
789 && (! sparseset_bit_p (pseudos_live, src_regno)
kono
parents:
diff changeset
790 || (dst_regno >= FIRST_PSEUDO_REGISTER
kono
parents:
diff changeset
791 && lra_reg_val_equal_p (src_regno,
kono
parents:
diff changeset
792 lra_reg_info[dst_regno].val,
kono
parents:
diff changeset
793 lra_reg_info[dst_regno].offset))))
kono
parents:
diff changeset
794 || (src_regno < FIRST_PSEUDO_REGISTER
kono
parents:
diff changeset
795 && ! TEST_HARD_REG_BIT (hard_regs_live, src_regno)))
kono
parents:
diff changeset
796 /* It might be 'inheritance pseudo <- reload pseudo'. */
kono
parents:
diff changeset
797 || (src_regno >= lra_constraint_new_regno_start
kono
parents:
diff changeset
798 && dst_regno >= lra_constraint_new_regno_start
kono
parents:
diff changeset
799 /* Remember to skip special cases where src/dest regnos are
kono
parents:
diff changeset
800 the same, e.g. insn SET pattern has matching constraints
kono
parents:
diff changeset
801 like =r,0. */
kono
parents:
diff changeset
802 && src_regno != dst_regno)))
kono
parents:
diff changeset
803 {
kono
parents:
diff changeset
804 int hard_regno = -1, regno = -1;
kono
parents:
diff changeset
805
kono
parents:
diff changeset
806 if (dst_regno >= lra_constraint_new_regno_start
kono
parents:
diff changeset
807 && src_regno >= lra_constraint_new_regno_start)
kono
parents:
diff changeset
808 {
kono
parents:
diff changeset
809 /* It might be still an original (non-reload) insn with
kono
parents:
diff changeset
810 one unused output and a constraint requiring to use
kono
parents:
diff changeset
811 the same reg for input/output operands. In this case
kono
parents:
diff changeset
812 dst_regno and src_regno have the same value, we don't
kono
parents:
diff changeset
813 need a misleading copy for this case. */
kono
parents:
diff changeset
814 if (dst_regno != src_regno)
kono
parents:
diff changeset
815 lra_create_copy (dst_regno, src_regno, freq);
kono
parents:
diff changeset
816 }
kono
parents:
diff changeset
817 else if (dst_regno >= lra_constraint_new_regno_start)
kono
parents:
diff changeset
818 {
kono
parents:
diff changeset
819 if ((hard_regno = src_regno) >= FIRST_PSEUDO_REGISTER)
kono
parents:
diff changeset
820 hard_regno = reg_renumber[src_regno];
kono
parents:
diff changeset
821 regno = dst_regno;
kono
parents:
diff changeset
822 }
kono
parents:
diff changeset
823 else if (src_regno >= lra_constraint_new_regno_start)
kono
parents:
diff changeset
824 {
kono
parents:
diff changeset
825 if ((hard_regno = dst_regno) >= FIRST_PSEUDO_REGISTER)
kono
parents:
diff changeset
826 hard_regno = reg_renumber[dst_regno];
kono
parents:
diff changeset
827 regno = src_regno;
kono
parents:
diff changeset
828 }
kono
parents:
diff changeset
829 if (regno >= 0 && hard_regno >= 0)
kono
parents:
diff changeset
830 lra_setup_reload_pseudo_preferenced_hard_reg
kono
parents:
diff changeset
831 (regno, hard_regno, freq);
kono
parents:
diff changeset
832 }
kono
parents:
diff changeset
833
kono
parents:
diff changeset
834 sparseset_clear (start_living);
kono
parents:
diff changeset
835
kono
parents:
diff changeset
836 /* Try to avoid unnecessary program point increments, this saves
kono
parents:
diff changeset
837 a lot of time in remove_some_program_points_and_update_live_ranges.
kono
parents:
diff changeset
838 We only need an increment if something becomes live or dies at this
kono
parents:
diff changeset
839 program point. */
kono
parents:
diff changeset
840 need_curr_point_incr = false;
kono
parents:
diff changeset
841
kono
parents:
diff changeset
842 /* Mark each defined value as live. We need to do this for
kono
parents:
diff changeset
843 unused values because they still conflict with quantities
kono
parents:
diff changeset
844 that are live at the time of the definition. */
kono
parents:
diff changeset
845 for (reg = curr_id->regs; reg != NULL; reg = reg->next)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
846 {
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
847 if (reg->type != OP_IN)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
848 {
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
849 need_curr_point_incr
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
850 |= mark_regno_live (reg->regno, reg->biggest_mode,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
851 curr_point);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
852 check_pseudos_live_through_calls (reg->regno,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
853 last_call_used_reg_set);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
854 }
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
855
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
856 if (reg->regno >= FIRST_PSEUDO_REGISTER)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
857 for (hr = curr_static_id->hard_regs; hr != NULL; hr = hr->next)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
858 if (hr->clobber_high
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
859 && maybe_gt (GET_MODE_SIZE (PSEUDO_REGNO_MODE (reg->regno)),
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
860 GET_MODE_SIZE (hr->biggest_mode)))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
861 SET_HARD_REG_BIT (lra_reg_info[reg->regno].conflict_hard_regs,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
862 hr->regno);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
863 }
111
kono
parents:
diff changeset
864
kono
parents:
diff changeset
865 for (reg = curr_static_id->hard_regs; reg != NULL; reg = reg->next)
kono
parents:
diff changeset
866 if (reg->type != OP_IN)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
867 make_hard_regno_live (reg->regno);
111
kono
parents:
diff changeset
868
kono
parents:
diff changeset
869 if (curr_id->arg_hard_regs != NULL)
kono
parents:
diff changeset
870 for (i = 0; (regno = curr_id->arg_hard_regs[i]) >= 0; i++)
kono
parents:
diff changeset
871 if (regno >= FIRST_PSEUDO_REGISTER)
kono
parents:
diff changeset
872 /* It is a clobber. */
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
873 make_hard_regno_live (regno - FIRST_PSEUDO_REGISTER);
111
kono
parents:
diff changeset
874
kono
parents:
diff changeset
875 sparseset_copy (unused_set, start_living);
kono
parents:
diff changeset
876
kono
parents:
diff changeset
877 sparseset_clear (start_dying);
kono
parents:
diff changeset
878
kono
parents:
diff changeset
879 /* See which defined values die here. */
kono
parents:
diff changeset
880 for (reg = curr_id->regs; reg != NULL; reg = reg->next)
kono
parents:
diff changeset
881 if (reg->type == OP_OUT
kono
parents:
diff changeset
882 && ! reg_early_clobber_p (reg, n_alt) && ! reg->subreg_p)
kono
parents:
diff changeset
883 need_curr_point_incr
kono
parents:
diff changeset
884 |= mark_regno_dead (reg->regno, reg->biggest_mode,
kono
parents:
diff changeset
885 curr_point);
kono
parents:
diff changeset
886
kono
parents:
diff changeset
887 for (reg = curr_static_id->hard_regs; reg != NULL; reg = reg->next)
kono
parents:
diff changeset
888 if (reg->type == OP_OUT
kono
parents:
diff changeset
889 && ! reg_early_clobber_p (reg, n_alt) && ! reg->subreg_p)
kono
parents:
diff changeset
890 make_hard_regno_dead (reg->regno);
kono
parents:
diff changeset
891
kono
parents:
diff changeset
892 if (curr_id->arg_hard_regs != NULL)
kono
parents:
diff changeset
893 for (i = 0; (regno = curr_id->arg_hard_regs[i]) >= 0; i++)
kono
parents:
diff changeset
894 if (regno >= FIRST_PSEUDO_REGISTER)
kono
parents:
diff changeset
895 /* It is a clobber. */
kono
parents:
diff changeset
896 make_hard_regno_dead (regno - FIRST_PSEUDO_REGISTER);
kono
parents:
diff changeset
897
kono
parents:
diff changeset
898 if (call_p)
kono
parents:
diff changeset
899 {
kono
parents:
diff changeset
900 if (! flag_ipa_ra)
kono
parents:
diff changeset
901 COPY_HARD_REG_SET(last_call_used_reg_set, call_used_reg_set);
kono
parents:
diff changeset
902 else
kono
parents:
diff changeset
903 {
kono
parents:
diff changeset
904 HARD_REG_SET this_call_used_reg_set;
kono
parents:
diff changeset
905 get_call_reg_set_usage (curr_insn, &this_call_used_reg_set,
kono
parents:
diff changeset
906 call_used_reg_set);
kono
parents:
diff changeset
907
kono
parents:
diff changeset
908 bool flush = (! hard_reg_set_empty_p (last_call_used_reg_set)
kono
parents:
diff changeset
909 && ! hard_reg_set_equal_p (last_call_used_reg_set,
kono
parents:
diff changeset
910 this_call_used_reg_set));
kono
parents:
diff changeset
911
kono
parents:
diff changeset
912 EXECUTE_IF_SET_IN_SPARSESET (pseudos_live, j)
kono
parents:
diff changeset
913 {
kono
parents:
diff changeset
914 IOR_HARD_REG_SET (lra_reg_info[j].actual_call_used_reg_set,
kono
parents:
diff changeset
915 this_call_used_reg_set);
kono
parents:
diff changeset
916 if (flush)
kono
parents:
diff changeset
917 check_pseudos_live_through_calls
kono
parents:
diff changeset
918 (j, last_call_used_reg_set);
kono
parents:
diff changeset
919 }
kono
parents:
diff changeset
920 COPY_HARD_REG_SET(last_call_used_reg_set, this_call_used_reg_set);
kono
parents:
diff changeset
921 }
kono
parents:
diff changeset
922
kono
parents:
diff changeset
923 sparseset_ior (pseudos_live_through_calls,
kono
parents:
diff changeset
924 pseudos_live_through_calls, pseudos_live);
kono
parents:
diff changeset
925 if (cfun->has_nonlocal_label
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
926 || (!targetm.setjmp_preserves_nonvolatile_regs_p ()
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
927 && (find_reg_note (curr_insn, REG_SETJMP, NULL_RTX)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
928 != NULL_RTX)))
111
kono
parents:
diff changeset
929 sparseset_ior (pseudos_live_through_setjumps,
kono
parents:
diff changeset
930 pseudos_live_through_setjumps, pseudos_live);
kono
parents:
diff changeset
931 }
kono
parents:
diff changeset
932
kono
parents:
diff changeset
933 /* Increment the current program point if we must. */
kono
parents:
diff changeset
934 if (need_curr_point_incr)
kono
parents:
diff changeset
935 next_program_point (curr_point, freq);
kono
parents:
diff changeset
936
kono
parents:
diff changeset
937 sparseset_clear (start_living);
kono
parents:
diff changeset
938
kono
parents:
diff changeset
939 need_curr_point_incr = false;
kono
parents:
diff changeset
940
kono
parents:
diff changeset
941 /* Mark each used value as live. */
kono
parents:
diff changeset
942 for (reg = curr_id->regs; reg != NULL; reg = reg->next)
kono
parents:
diff changeset
943 if (reg->type == OP_IN)
kono
parents:
diff changeset
944 {
kono
parents:
diff changeset
945 need_curr_point_incr
kono
parents:
diff changeset
946 |= mark_regno_live (reg->regno, reg->biggest_mode,
kono
parents:
diff changeset
947 curr_point);
kono
parents:
diff changeset
948 check_pseudos_live_through_calls (reg->regno,
kono
parents:
diff changeset
949 last_call_used_reg_set);
kono
parents:
diff changeset
950 }
kono
parents:
diff changeset
951
kono
parents:
diff changeset
952 for (reg = curr_static_id->hard_regs; reg != NULL; reg = reg->next)
kono
parents:
diff changeset
953 if (reg->type == OP_IN)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
954 make_hard_regno_live (reg->regno);
111
kono
parents:
diff changeset
955
kono
parents:
diff changeset
956 if (curr_id->arg_hard_regs != NULL)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
957 /* Make argument hard registers live. */
111
kono
parents:
diff changeset
958 for (i = 0; (regno = curr_id->arg_hard_regs[i]) >= 0; i++)
kono
parents:
diff changeset
959 if (regno < FIRST_PSEUDO_REGISTER)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
960 make_hard_regno_live (regno);
111
kono
parents:
diff changeset
961
kono
parents:
diff changeset
962 sparseset_and_compl (dead_set, start_living, start_dying);
kono
parents:
diff changeset
963
kono
parents:
diff changeset
964 /* Mark early clobber outputs dead. */
kono
parents:
diff changeset
965 for (reg = curr_id->regs; reg != NULL; reg = reg->next)
kono
parents:
diff changeset
966 if (reg->type == OP_OUT
kono
parents:
diff changeset
967 && reg_early_clobber_p (reg, n_alt) && ! reg->subreg_p)
kono
parents:
diff changeset
968 need_curr_point_incr
kono
parents:
diff changeset
969 |= mark_regno_dead (reg->regno, reg->biggest_mode,
kono
parents:
diff changeset
970 curr_point);
kono
parents:
diff changeset
971
kono
parents:
diff changeset
972 for (reg = curr_static_id->hard_regs; reg != NULL; reg = reg->next)
kono
parents:
diff changeset
973 if (reg->type == OP_OUT
kono
parents:
diff changeset
974 && reg_early_clobber_p (reg, n_alt) && ! reg->subreg_p)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
975 {
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
976 struct lra_insn_reg *reg2;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
977
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
978 /* We can have early clobbered non-operand hard reg and
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
979 the same hard reg as an insn input. Don't make hard
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
980 reg dead before the insns. */
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
981 for (reg2 = curr_id->regs; reg2 != NULL; reg2 = reg2->next)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
982 if (reg2->type != OP_OUT && reg2->regno == reg->regno)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
983 break;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
984 if (reg2 == NULL)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
985 make_hard_regno_dead (reg->regno);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
986 }
111
kono
parents:
diff changeset
987
kono
parents:
diff changeset
988 if (need_curr_point_incr)
kono
parents:
diff changeset
989 next_program_point (curr_point, freq);
kono
parents:
diff changeset
990
kono
parents:
diff changeset
991 /* Update notes. */
kono
parents:
diff changeset
992 for (link_loc = &REG_NOTES (curr_insn); (link = *link_loc) != NULL_RTX;)
kono
parents:
diff changeset
993 {
kono
parents:
diff changeset
994 if (REG_NOTE_KIND (link) != REG_DEAD
kono
parents:
diff changeset
995 && REG_NOTE_KIND (link) != REG_UNUSED)
kono
parents:
diff changeset
996 ;
kono
parents:
diff changeset
997 else if (REG_P (XEXP (link, 0)))
kono
parents:
diff changeset
998 {
kono
parents:
diff changeset
999 regno = REGNO (XEXP (link, 0));
kono
parents:
diff changeset
1000 if ((REG_NOTE_KIND (link) == REG_DEAD
kono
parents:
diff changeset
1001 && ! sparseset_bit_p (dead_set, regno))
kono
parents:
diff changeset
1002 || (REG_NOTE_KIND (link) == REG_UNUSED
kono
parents:
diff changeset
1003 && ! sparseset_bit_p (unused_set, regno)))
kono
parents:
diff changeset
1004 {
kono
parents:
diff changeset
1005 *link_loc = XEXP (link, 1);
kono
parents:
diff changeset
1006 continue;
kono
parents:
diff changeset
1007 }
kono
parents:
diff changeset
1008 if (REG_NOTE_KIND (link) == REG_DEAD)
kono
parents:
diff changeset
1009 sparseset_clear_bit (dead_set, regno);
kono
parents:
diff changeset
1010 else if (REG_NOTE_KIND (link) == REG_UNUSED)
kono
parents:
diff changeset
1011 sparseset_clear_bit (unused_set, regno);
kono
parents:
diff changeset
1012 }
kono
parents:
diff changeset
1013 link_loc = &XEXP (link, 1);
kono
parents:
diff changeset
1014 }
kono
parents:
diff changeset
1015 EXECUTE_IF_SET_IN_SPARSESET (dead_set, j)
kono
parents:
diff changeset
1016 add_reg_note (curr_insn, REG_DEAD, regno_reg_rtx[j]);
kono
parents:
diff changeset
1017 EXECUTE_IF_SET_IN_SPARSESET (unused_set, j)
kono
parents:
diff changeset
1018 add_reg_note (curr_insn, REG_UNUSED, regno_reg_rtx[j]);
kono
parents:
diff changeset
1019 }
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1020 ignore_reg_for_conflicts = NULL_RTX;
111
kono
parents:
diff changeset
1021
kono
parents:
diff changeset
1022 if (bb_has_eh_pred (bb))
kono
parents:
diff changeset
1023 for (j = 0; ; ++j)
kono
parents:
diff changeset
1024 {
kono
parents:
diff changeset
1025 unsigned int regno = EH_RETURN_DATA_REGNO (j);
kono
parents:
diff changeset
1026
kono
parents:
diff changeset
1027 if (regno == INVALID_REGNUM)
kono
parents:
diff changeset
1028 break;
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1029 make_hard_regno_live (regno);
111
kono
parents:
diff changeset
1030 }
kono
parents:
diff changeset
1031
kono
parents:
diff changeset
1032 /* Pseudos can't go in stack regs at the start of a basic block that
kono
parents:
diff changeset
1033 is reached by an abnormal edge. Likewise for call clobbered regs,
kono
parents:
diff changeset
1034 because caller-save, fixup_abnormal_edges and possibly the table
kono
parents:
diff changeset
1035 driven EH machinery are not quite ready to handle such pseudos
kono
parents:
diff changeset
1036 live across such edges. */
kono
parents:
diff changeset
1037 if (bb_has_abnormal_pred (bb))
kono
parents:
diff changeset
1038 {
kono
parents:
diff changeset
1039 #ifdef STACK_REGS
kono
parents:
diff changeset
1040 EXECUTE_IF_SET_IN_SPARSESET (pseudos_live, px)
kono
parents:
diff changeset
1041 lra_reg_info[px].no_stack_p = true;
kono
parents:
diff changeset
1042 for (px = FIRST_STACK_REG; px <= LAST_STACK_REG; px++)
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1043 make_hard_regno_live (px);
111
kono
parents:
diff changeset
1044 #endif
kono
parents:
diff changeset
1045 /* No need to record conflicts for call clobbered regs if we
kono
parents:
diff changeset
1046 have nonlocal labels around, as we don't ever try to
kono
parents:
diff changeset
1047 allocate such regs in this case. */
kono
parents:
diff changeset
1048 if (!cfun->has_nonlocal_label
kono
parents:
diff changeset
1049 && has_abnormal_call_or_eh_pred_edge_p (bb))
kono
parents:
diff changeset
1050 for (px = 0; px < FIRST_PSEUDO_REGISTER; px++)
kono
parents:
diff changeset
1051 if (call_used_regs[px]
kono
parents:
diff changeset
1052 #ifdef REAL_PIC_OFFSET_TABLE_REGNUM
kono
parents:
diff changeset
1053 /* We should create a conflict of PIC pseudo with PIC
kono
parents:
diff changeset
1054 hard reg as PIC hard reg can have a wrong value after
kono
parents:
diff changeset
1055 jump described by the abnormal edge. In this case we
kono
parents:
diff changeset
1056 can not allocate PIC hard reg to PIC pseudo as PIC
kono
parents:
diff changeset
1057 pseudo will also have a wrong value. */
kono
parents:
diff changeset
1058 || (px == REAL_PIC_OFFSET_TABLE_REGNUM
kono
parents:
diff changeset
1059 && pic_offset_table_rtx != NULL_RTX
kono
parents:
diff changeset
1060 && REGNO (pic_offset_table_rtx) >= FIRST_PSEUDO_REGISTER)
kono
parents:
diff changeset
1061 #endif
kono
parents:
diff changeset
1062 )
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1063 make_hard_regno_live (px);
111
kono
parents:
diff changeset
1064 }
kono
parents:
diff changeset
1065
kono
parents:
diff changeset
1066 bool live_change_p = false;
kono
parents:
diff changeset
1067 /* Check if bb border live info was changed. */
kono
parents:
diff changeset
1068 unsigned int live_pseudos_num = 0;
kono
parents:
diff changeset
1069 EXECUTE_IF_SET_IN_BITMAP (df_get_live_in (bb),
kono
parents:
diff changeset
1070 FIRST_PSEUDO_REGISTER, j, bi)
kono
parents:
diff changeset
1071 {
kono
parents:
diff changeset
1072 live_pseudos_num++;
kono
parents:
diff changeset
1073 if (! sparseset_bit_p (pseudos_live, j))
kono
parents:
diff changeset
1074 {
kono
parents:
diff changeset
1075 live_change_p = true;
kono
parents:
diff changeset
1076 if (lra_dump_file != NULL)
kono
parents:
diff changeset
1077 fprintf (lra_dump_file,
kono
parents:
diff changeset
1078 " r%d is removed as live at bb%d start\n", j, bb->index);
kono
parents:
diff changeset
1079 break;
kono
parents:
diff changeset
1080 }
kono
parents:
diff changeset
1081 }
kono
parents:
diff changeset
1082 if (! live_change_p
kono
parents:
diff changeset
1083 && sparseset_cardinality (pseudos_live) != live_pseudos_num)
kono
parents:
diff changeset
1084 {
kono
parents:
diff changeset
1085 live_change_p = true;
kono
parents:
diff changeset
1086 if (lra_dump_file != NULL)
kono
parents:
diff changeset
1087 EXECUTE_IF_SET_IN_SPARSESET (pseudos_live, j)
kono
parents:
diff changeset
1088 if (! bitmap_bit_p (df_get_live_in (bb), j))
kono
parents:
diff changeset
1089 fprintf (lra_dump_file,
kono
parents:
diff changeset
1090 " r%d is added to live at bb%d start\n", j, bb->index);
kono
parents:
diff changeset
1091 }
kono
parents:
diff changeset
1092 /* See if we'll need an increment at the end of this basic block.
kono
parents:
diff changeset
1093 An increment is needed if the PSEUDOS_LIVE set is not empty,
kono
parents:
diff changeset
1094 to make sure the finish points are set up correctly. */
kono
parents:
diff changeset
1095 need_curr_point_incr = (sparseset_cardinality (pseudos_live) > 0);
kono
parents:
diff changeset
1096
kono
parents:
diff changeset
1097 EXECUTE_IF_SET_IN_SPARSESET (pseudos_live, i)
kono
parents:
diff changeset
1098 mark_pseudo_dead (i, curr_point);
kono
parents:
diff changeset
1099
kono
parents:
diff changeset
1100 EXECUTE_IF_SET_IN_BITMAP (df_get_live_in (bb), FIRST_PSEUDO_REGISTER, j, bi)
kono
parents:
diff changeset
1101 {
kono
parents:
diff changeset
1102 if (sparseset_cardinality (pseudos_live_through_calls) == 0)
kono
parents:
diff changeset
1103 break;
kono
parents:
diff changeset
1104 if (sparseset_bit_p (pseudos_live_through_calls, j))
kono
parents:
diff changeset
1105 check_pseudos_live_through_calls (j, last_call_used_reg_set);
kono
parents:
diff changeset
1106 }
kono
parents:
diff changeset
1107
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1108 for (i = 0; i < FIRST_PSEUDO_REGISTER; ++i)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1109 {
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1110 if (!TEST_HARD_REG_BIT (hard_regs_live, i))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1111 continue;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1112
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1113 if (!TEST_HARD_REG_BIT (hard_regs_spilled_into, i))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1114 continue;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1115
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1116 if (bitmap_bit_p (df_get_live_in (bb), i))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1117 continue;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1118
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1119 live_change_p = true;
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1120 if (lra_dump_file)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1121 fprintf (lra_dump_file,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1122 " hard reg r%d is added to live at bb%d start\n", i,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1123 bb->index);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1124 bitmap_set_bit (df_get_live_in (bb), i);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1125 }
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1126
111
kono
parents:
diff changeset
1127 if (need_curr_point_incr)
kono
parents:
diff changeset
1128 next_program_point (curr_point, freq);
kono
parents:
diff changeset
1129
kono
parents:
diff changeset
1130 return live_change_p;
kono
parents:
diff changeset
1131 }
kono
parents:
diff changeset
1132
kono
parents:
diff changeset
1133 /* Compress pseudo live ranges by removing program points where
kono
parents:
diff changeset
1134 nothing happens. Complexity of many algorithms in LRA is linear
kono
parents:
diff changeset
1135 function of program points number. To speed up the code we try to
kono
parents:
diff changeset
1136 minimize the number of the program points here. */
kono
parents:
diff changeset
1137 static void
kono
parents:
diff changeset
1138 remove_some_program_points_and_update_live_ranges (void)
kono
parents:
diff changeset
1139 {
kono
parents:
diff changeset
1140 unsigned i;
kono
parents:
diff changeset
1141 int n, max_regno;
kono
parents:
diff changeset
1142 int *map;
kono
parents:
diff changeset
1143 lra_live_range_t r, prev_r, next_r;
kono
parents:
diff changeset
1144 sbitmap_iterator sbi;
kono
parents:
diff changeset
1145 bool born_p, dead_p, prev_born_p, prev_dead_p;
kono
parents:
diff changeset
1146
kono
parents:
diff changeset
1147 auto_sbitmap born (lra_live_max_point);
kono
parents:
diff changeset
1148 auto_sbitmap dead (lra_live_max_point);
kono
parents:
diff changeset
1149 bitmap_clear (born);
kono
parents:
diff changeset
1150 bitmap_clear (dead);
kono
parents:
diff changeset
1151 max_regno = max_reg_num ();
kono
parents:
diff changeset
1152 for (i = FIRST_PSEUDO_REGISTER; i < (unsigned) max_regno; i++)
kono
parents:
diff changeset
1153 {
kono
parents:
diff changeset
1154 for (r = lra_reg_info[i].live_ranges; r != NULL; r = r->next)
kono
parents:
diff changeset
1155 {
kono
parents:
diff changeset
1156 lra_assert (r->start <= r->finish);
kono
parents:
diff changeset
1157 bitmap_set_bit (born, r->start);
kono
parents:
diff changeset
1158 bitmap_set_bit (dead, r->finish);
kono
parents:
diff changeset
1159 }
kono
parents:
diff changeset
1160 }
kono
parents:
diff changeset
1161 auto_sbitmap born_or_dead (lra_live_max_point);
kono
parents:
diff changeset
1162 bitmap_ior (born_or_dead, born, dead);
kono
parents:
diff changeset
1163 map = XCNEWVEC (int, lra_live_max_point);
kono
parents:
diff changeset
1164 n = -1;
kono
parents:
diff changeset
1165 prev_born_p = prev_dead_p = false;
kono
parents:
diff changeset
1166 EXECUTE_IF_SET_IN_BITMAP (born_or_dead, 0, i, sbi)
kono
parents:
diff changeset
1167 {
kono
parents:
diff changeset
1168 born_p = bitmap_bit_p (born, i);
kono
parents:
diff changeset
1169 dead_p = bitmap_bit_p (dead, i);
kono
parents:
diff changeset
1170 if ((prev_born_p && ! prev_dead_p && born_p && ! dead_p)
kono
parents:
diff changeset
1171 || (prev_dead_p && ! prev_born_p && dead_p && ! born_p))
kono
parents:
diff changeset
1172 {
kono
parents:
diff changeset
1173 map[i] = n;
kono
parents:
diff changeset
1174 lra_point_freq[n] = MAX (lra_point_freq[n], lra_point_freq[i]);
kono
parents:
diff changeset
1175 }
kono
parents:
diff changeset
1176 else
kono
parents:
diff changeset
1177 {
kono
parents:
diff changeset
1178 map[i] = ++n;
kono
parents:
diff changeset
1179 lra_point_freq[n] = lra_point_freq[i];
kono
parents:
diff changeset
1180 }
kono
parents:
diff changeset
1181 prev_born_p = born_p;
kono
parents:
diff changeset
1182 prev_dead_p = dead_p;
kono
parents:
diff changeset
1183 }
kono
parents:
diff changeset
1184 n++;
kono
parents:
diff changeset
1185 if (lra_dump_file != NULL)
kono
parents:
diff changeset
1186 fprintf (lra_dump_file, "Compressing live ranges: from %d to %d - %d%%\n",
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1187 lra_live_max_point, n,
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1188 lra_live_max_point ? 100 * n / lra_live_max_point : 100);
111
kono
parents:
diff changeset
1189 if (n < lra_live_max_point)
kono
parents:
diff changeset
1190 {
kono
parents:
diff changeset
1191 lra_live_max_point = n;
kono
parents:
diff changeset
1192 for (i = FIRST_PSEUDO_REGISTER; i < (unsigned) max_regno; i++)
kono
parents:
diff changeset
1193 {
kono
parents:
diff changeset
1194 for (prev_r = NULL, r = lra_reg_info[i].live_ranges;
kono
parents:
diff changeset
1195 r != NULL;
kono
parents:
diff changeset
1196 r = next_r)
kono
parents:
diff changeset
1197 {
kono
parents:
diff changeset
1198 next_r = r->next;
kono
parents:
diff changeset
1199 r->start = map[r->start];
kono
parents:
diff changeset
1200 r->finish = map[r->finish];
kono
parents:
diff changeset
1201 if (prev_r == NULL || prev_r->start > r->finish + 1)
kono
parents:
diff changeset
1202 {
kono
parents:
diff changeset
1203 prev_r = r;
kono
parents:
diff changeset
1204 continue;
kono
parents:
diff changeset
1205 }
kono
parents:
diff changeset
1206 prev_r->start = r->start;
kono
parents:
diff changeset
1207 prev_r->next = next_r;
kono
parents:
diff changeset
1208 lra_live_range_pool.remove (r);
kono
parents:
diff changeset
1209 }
kono
parents:
diff changeset
1210 }
kono
parents:
diff changeset
1211 }
kono
parents:
diff changeset
1212 free (map);
kono
parents:
diff changeset
1213 }
kono
parents:
diff changeset
1214
kono
parents:
diff changeset
1215 /* Print live ranges R to file F. */
kono
parents:
diff changeset
1216 void
kono
parents:
diff changeset
1217 lra_print_live_range_list (FILE *f, lra_live_range_t r)
kono
parents:
diff changeset
1218 {
kono
parents:
diff changeset
1219 for (; r != NULL; r = r->next)
kono
parents:
diff changeset
1220 fprintf (f, " [%d..%d]", r->start, r->finish);
kono
parents:
diff changeset
1221 fprintf (f, "\n");
kono
parents:
diff changeset
1222 }
kono
parents:
diff changeset
1223
kono
parents:
diff changeset
1224 DEBUG_FUNCTION void
kono
parents:
diff changeset
1225 debug (lra_live_range &ref)
kono
parents:
diff changeset
1226 {
kono
parents:
diff changeset
1227 lra_print_live_range_list (stderr, &ref);
kono
parents:
diff changeset
1228 }
kono
parents:
diff changeset
1229
kono
parents:
diff changeset
1230 DEBUG_FUNCTION void
kono
parents:
diff changeset
1231 debug (lra_live_range *ptr)
kono
parents:
diff changeset
1232 {
kono
parents:
diff changeset
1233 if (ptr)
kono
parents:
diff changeset
1234 debug (*ptr);
kono
parents:
diff changeset
1235 else
kono
parents:
diff changeset
1236 fprintf (stderr, "<nil>\n");
kono
parents:
diff changeset
1237 }
kono
parents:
diff changeset
1238
kono
parents:
diff changeset
1239 /* Print live ranges R to stderr. */
kono
parents:
diff changeset
1240 void
kono
parents:
diff changeset
1241 lra_debug_live_range_list (lra_live_range_t r)
kono
parents:
diff changeset
1242 {
kono
parents:
diff changeset
1243 lra_print_live_range_list (stderr, r);
kono
parents:
diff changeset
1244 }
kono
parents:
diff changeset
1245
kono
parents:
diff changeset
1246 /* Print live ranges of pseudo REGNO to file F. */
kono
parents:
diff changeset
1247 static void
kono
parents:
diff changeset
1248 print_pseudo_live_ranges (FILE *f, int regno)
kono
parents:
diff changeset
1249 {
kono
parents:
diff changeset
1250 if (lra_reg_info[regno].live_ranges == NULL)
kono
parents:
diff changeset
1251 return;
kono
parents:
diff changeset
1252 fprintf (f, " r%d:", regno);
kono
parents:
diff changeset
1253 lra_print_live_range_list (f, lra_reg_info[regno].live_ranges);
kono
parents:
diff changeset
1254 }
kono
parents:
diff changeset
1255
kono
parents:
diff changeset
1256 /* Print live ranges of pseudo REGNO to stderr. */
kono
parents:
diff changeset
1257 void
kono
parents:
diff changeset
1258 lra_debug_pseudo_live_ranges (int regno)
kono
parents:
diff changeset
1259 {
kono
parents:
diff changeset
1260 print_pseudo_live_ranges (stderr, regno);
kono
parents:
diff changeset
1261 }
kono
parents:
diff changeset
1262
kono
parents:
diff changeset
1263 /* Print live ranges of all pseudos to file F. */
kono
parents:
diff changeset
1264 static void
kono
parents:
diff changeset
1265 print_live_ranges (FILE *f)
kono
parents:
diff changeset
1266 {
kono
parents:
diff changeset
1267 int i, max_regno;
kono
parents:
diff changeset
1268
kono
parents:
diff changeset
1269 max_regno = max_reg_num ();
kono
parents:
diff changeset
1270 for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
kono
parents:
diff changeset
1271 print_pseudo_live_ranges (f, i);
kono
parents:
diff changeset
1272 }
kono
parents:
diff changeset
1273
kono
parents:
diff changeset
1274 /* Print live ranges of all pseudos to stderr. */
kono
parents:
diff changeset
1275 void
kono
parents:
diff changeset
1276 lra_debug_live_ranges (void)
kono
parents:
diff changeset
1277 {
kono
parents:
diff changeset
1278 print_live_ranges (stderr);
kono
parents:
diff changeset
1279 }
kono
parents:
diff changeset
1280
kono
parents:
diff changeset
1281 /* Compress pseudo live ranges. */
kono
parents:
diff changeset
1282 static void
kono
parents:
diff changeset
1283 compress_live_ranges (void)
kono
parents:
diff changeset
1284 {
kono
parents:
diff changeset
1285 remove_some_program_points_and_update_live_ranges ();
kono
parents:
diff changeset
1286 if (lra_dump_file != NULL)
kono
parents:
diff changeset
1287 {
kono
parents:
diff changeset
1288 fprintf (lra_dump_file, "Ranges after the compression:\n");
kono
parents:
diff changeset
1289 print_live_ranges (lra_dump_file);
kono
parents:
diff changeset
1290 }
kono
parents:
diff changeset
1291 }
kono
parents:
diff changeset
1292
kono
parents:
diff changeset
1293
kono
parents:
diff changeset
1294
kono
parents:
diff changeset
1295 /* The number of the current live range pass. */
kono
parents:
diff changeset
1296 int lra_live_range_iter;
kono
parents:
diff changeset
1297
kono
parents:
diff changeset
1298 /* The function creates live ranges only for memory pseudos (or for
kono
parents:
diff changeset
1299 all ones if ALL_P), set up CONFLICT_HARD_REGS for the pseudos. It
kono
parents:
diff changeset
1300 also does dead insn elimination if DEAD_INSN_P and global live
kono
parents:
diff changeset
1301 analysis only for pseudos and only if the pseudo live info was
kono
parents:
diff changeset
1302 changed on a BB border. Return TRUE if the live info was
kono
parents:
diff changeset
1303 changed. */
kono
parents:
diff changeset
1304 static bool
kono
parents:
diff changeset
1305 lra_create_live_ranges_1 (bool all_p, bool dead_insn_p)
kono
parents:
diff changeset
1306 {
kono
parents:
diff changeset
1307 basic_block bb;
kono
parents:
diff changeset
1308 int i, hard_regno, max_regno = max_reg_num ();
kono
parents:
diff changeset
1309 int curr_point;
kono
parents:
diff changeset
1310 bool bb_live_change_p, have_referenced_pseudos = false;
kono
parents:
diff changeset
1311
kono
parents:
diff changeset
1312 timevar_push (TV_LRA_CREATE_LIVE_RANGES);
kono
parents:
diff changeset
1313
kono
parents:
diff changeset
1314 complete_info_p = all_p;
kono
parents:
diff changeset
1315 if (lra_dump_file != NULL)
kono
parents:
diff changeset
1316 fprintf (lra_dump_file,
kono
parents:
diff changeset
1317 "\n********** Pseudo live ranges #%d: **********\n\n",
kono
parents:
diff changeset
1318 ++lra_live_range_iter);
kono
parents:
diff changeset
1319 memset (lra_hard_reg_usage, 0, sizeof (lra_hard_reg_usage));
kono
parents:
diff changeset
1320 for (i = 0; i < max_regno; i++)
kono
parents:
diff changeset
1321 {
kono
parents:
diff changeset
1322 lra_reg_info[i].live_ranges = NULL;
kono
parents:
diff changeset
1323 CLEAR_HARD_REG_SET (lra_reg_info[i].conflict_hard_regs);
kono
parents:
diff changeset
1324 lra_reg_info[i].preferred_hard_regno1 = -1;
kono
parents:
diff changeset
1325 lra_reg_info[i].preferred_hard_regno2 = -1;
kono
parents:
diff changeset
1326 lra_reg_info[i].preferred_hard_regno_profit1 = 0;
kono
parents:
diff changeset
1327 lra_reg_info[i].preferred_hard_regno_profit2 = 0;
kono
parents:
diff changeset
1328 #ifdef STACK_REGS
kono
parents:
diff changeset
1329 lra_reg_info[i].no_stack_p = false;
kono
parents:
diff changeset
1330 #endif
kono
parents:
diff changeset
1331 /* The biggest mode is already set but its value might be to
kono
parents:
diff changeset
1332 conservative because of recent transformation. Here in this
kono
parents:
diff changeset
1333 file we recalculate it again as it costs practically
kono
parents:
diff changeset
1334 nothing. */
kono
parents:
diff changeset
1335 if (i >= FIRST_PSEUDO_REGISTER && regno_reg_rtx[i] != NULL_RTX)
kono
parents:
diff changeset
1336 lra_reg_info[i].biggest_mode = GET_MODE (regno_reg_rtx[i]);
kono
parents:
diff changeset
1337 else
kono
parents:
diff changeset
1338 lra_reg_info[i].biggest_mode = VOIDmode;
kono
parents:
diff changeset
1339 lra_reg_info[i].call_p = false;
kono
parents:
diff changeset
1340 if (i >= FIRST_PSEUDO_REGISTER
kono
parents:
diff changeset
1341 && lra_reg_info[i].nrefs != 0)
kono
parents:
diff changeset
1342 {
kono
parents:
diff changeset
1343 if ((hard_regno = reg_renumber[i]) >= 0)
kono
parents:
diff changeset
1344 lra_hard_reg_usage[hard_regno] += lra_reg_info[i].freq;
kono
parents:
diff changeset
1345 have_referenced_pseudos = true;
kono
parents:
diff changeset
1346 }
kono
parents:
diff changeset
1347 }
kono
parents:
diff changeset
1348 lra_free_copies ();
kono
parents:
diff changeset
1349
kono
parents:
diff changeset
1350 /* Under some circumstances, we can have functions without pseudo
kono
parents:
diff changeset
1351 registers. For such functions, lra_live_max_point will be 0,
kono
parents:
diff changeset
1352 see e.g. PR55604, and there's nothing more to do for us here. */
kono
parents:
diff changeset
1353 if (! have_referenced_pseudos)
kono
parents:
diff changeset
1354 {
kono
parents:
diff changeset
1355 timevar_pop (TV_LRA_CREATE_LIVE_RANGES);
kono
parents:
diff changeset
1356 return false;
kono
parents:
diff changeset
1357 }
kono
parents:
diff changeset
1358
kono
parents:
diff changeset
1359 pseudos_live = sparseset_alloc (max_regno);
kono
parents:
diff changeset
1360 pseudos_live_through_calls = sparseset_alloc (max_regno);
kono
parents:
diff changeset
1361 pseudos_live_through_setjumps = sparseset_alloc (max_regno);
kono
parents:
diff changeset
1362 start_living = sparseset_alloc (max_regno);
kono
parents:
diff changeset
1363 start_dying = sparseset_alloc (max_regno);
kono
parents:
diff changeset
1364 dead_set = sparseset_alloc (max_regno);
kono
parents:
diff changeset
1365 unused_set = sparseset_alloc (max_regno);
kono
parents:
diff changeset
1366 curr_point = 0;
kono
parents:
diff changeset
1367 unsigned new_length = get_max_uid () * 2;
kono
parents:
diff changeset
1368 point_freq_vec.truncate (0);
kono
parents:
diff changeset
1369 point_freq_vec.reserve_exact (new_length);
kono
parents:
diff changeset
1370 lra_point_freq = point_freq_vec.address ();
kono
parents:
diff changeset
1371 auto_vec<int, 20> post_order_rev_cfg;
kono
parents:
diff changeset
1372 inverted_post_order_compute (&post_order_rev_cfg);
kono
parents:
diff changeset
1373 lra_assert (post_order_rev_cfg.length () == (unsigned) n_basic_blocks_for_fn (cfun));
kono
parents:
diff changeset
1374 bb_live_change_p = false;
kono
parents:
diff changeset
1375 for (i = post_order_rev_cfg.length () - 1; i >= 0; --i)
kono
parents:
diff changeset
1376 {
kono
parents:
diff changeset
1377 bb = BASIC_BLOCK_FOR_FN (cfun, post_order_rev_cfg[i]);
kono
parents:
diff changeset
1378 if (bb == EXIT_BLOCK_PTR_FOR_FN (cfun) || bb
kono
parents:
diff changeset
1379 == ENTRY_BLOCK_PTR_FOR_FN (cfun))
kono
parents:
diff changeset
1380 continue;
kono
parents:
diff changeset
1381 if (process_bb_lives (bb, curr_point, dead_insn_p))
kono
parents:
diff changeset
1382 bb_live_change_p = true;
kono
parents:
diff changeset
1383 }
kono
parents:
diff changeset
1384 if (bb_live_change_p)
kono
parents:
diff changeset
1385 {
kono
parents:
diff changeset
1386 /* We need to clear pseudo live info as some pseudos can
kono
parents:
diff changeset
1387 disappear, e.g. pseudos with used equivalences. */
kono
parents:
diff changeset
1388 FOR_EACH_BB_FN (bb, cfun)
kono
parents:
diff changeset
1389 {
kono
parents:
diff changeset
1390 bitmap_clear_range (df_get_live_in (bb), FIRST_PSEUDO_REGISTER,
kono
parents:
diff changeset
1391 max_regno - FIRST_PSEUDO_REGISTER);
kono
parents:
diff changeset
1392 bitmap_clear_range (df_get_live_out (bb), FIRST_PSEUDO_REGISTER,
kono
parents:
diff changeset
1393 max_regno - FIRST_PSEUDO_REGISTER);
kono
parents:
diff changeset
1394 }
kono
parents:
diff changeset
1395 /* As we did not change CFG since LRA start we can use
kono
parents:
diff changeset
1396 DF-infrastructure solver to solve live data flow problem. */
131
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1397 for (int i = 0; i < FIRST_PSEUDO_REGISTER; ++i)
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1398 {
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1399 if (TEST_HARD_REG_BIT (hard_regs_spilled_into, i))
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1400 bitmap_clear_bit (&all_hard_regs_bitmap, i);
84e7813d76e9 gcc-8.2
mir3636
parents: 111
diff changeset
1401 }
111
kono
parents:
diff changeset
1402 df_simple_dataflow
kono
parents:
diff changeset
1403 (DF_BACKWARD, NULL, live_con_fun_0, live_con_fun_n,
kono
parents:
diff changeset
1404 live_trans_fun, &all_blocks,
kono
parents:
diff changeset
1405 df_get_postorder (DF_BACKWARD), df_get_n_blocks (DF_BACKWARD));
kono
parents:
diff changeset
1406 if (lra_dump_file != NULL)
kono
parents:
diff changeset
1407 {
kono
parents:
diff changeset
1408 fprintf (lra_dump_file,
kono
parents:
diff changeset
1409 "Global pseudo live data have been updated:\n");
kono
parents:
diff changeset
1410 basic_block bb;
kono
parents:
diff changeset
1411 FOR_EACH_BB_FN (bb, cfun)
kono
parents:
diff changeset
1412 {
kono
parents:
diff changeset
1413 bb_data_t bb_info = get_bb_data (bb);
kono
parents:
diff changeset
1414 bitmap bb_livein = df_get_live_in (bb);
kono
parents:
diff changeset
1415 bitmap bb_liveout = df_get_live_out (bb);
kono
parents:
diff changeset
1416
kono
parents:
diff changeset
1417 fprintf (lra_dump_file, "\nBB %d:\n", bb->index);
kono
parents:
diff changeset
1418 lra_dump_bitmap_with_title (" gen:",
kono
parents:
diff changeset
1419 &bb_info->gen_pseudos, bb->index);
kono
parents:
diff changeset
1420 lra_dump_bitmap_with_title (" killed:",
kono
parents:
diff changeset
1421 &bb_info->killed_pseudos, bb->index);
kono
parents:
diff changeset
1422 lra_dump_bitmap_with_title (" livein:", bb_livein, bb->index);
kono
parents:
diff changeset
1423 lra_dump_bitmap_with_title (" liveout:", bb_liveout, bb->index);
kono
parents:
diff changeset
1424 }
kono
parents:
diff changeset
1425 }
kono
parents:
diff changeset
1426 }
kono
parents:
diff changeset
1427 lra_live_max_point = curr_point;
kono
parents:
diff changeset
1428 if (lra_dump_file != NULL)
kono
parents:
diff changeset
1429 print_live_ranges (lra_dump_file);
kono
parents:
diff changeset
1430 /* Clean up. */
kono
parents:
diff changeset
1431 sparseset_free (unused_set);
kono
parents:
diff changeset
1432 sparseset_free (dead_set);
kono
parents:
diff changeset
1433 sparseset_free (start_dying);
kono
parents:
diff changeset
1434 sparseset_free (start_living);
kono
parents:
diff changeset
1435 sparseset_free (pseudos_live_through_calls);
kono
parents:
diff changeset
1436 sparseset_free (pseudos_live_through_setjumps);
kono
parents:
diff changeset
1437 sparseset_free (pseudos_live);
kono
parents:
diff changeset
1438 compress_live_ranges ();
kono
parents:
diff changeset
1439 timevar_pop (TV_LRA_CREATE_LIVE_RANGES);
kono
parents:
diff changeset
1440 return bb_live_change_p;
kono
parents:
diff changeset
1441 }
kono
parents:
diff changeset
1442
kono
parents:
diff changeset
1443 /* The main entry function creates live-ranges and other live info
kono
parents:
diff changeset
1444 necessary for the assignment sub-pass. It uses
kono
parents:
diff changeset
1445 lra_creates_live_ranges_1 -- so read comments for the
kono
parents:
diff changeset
1446 function. */
kono
parents:
diff changeset
1447 void
kono
parents:
diff changeset
1448 lra_create_live_ranges (bool all_p, bool dead_insn_p)
kono
parents:
diff changeset
1449 {
kono
parents:
diff changeset
1450 if (! lra_create_live_ranges_1 (all_p, dead_insn_p))
kono
parents:
diff changeset
1451 return;
kono
parents:
diff changeset
1452 if (lra_dump_file != NULL)
kono
parents:
diff changeset
1453 fprintf (lra_dump_file, "Live info was changed -- recalculate it\n");
kono
parents:
diff changeset
1454 /* Live info was changed on a bb border. It means that some info,
kono
parents:
diff changeset
1455 e.g. about conflict regs, calls crossed, and live ranges may be
kono
parents:
diff changeset
1456 wrong. We need this info for allocation. So recalculate it
kono
parents:
diff changeset
1457 again but without removing dead insns which can change live info
kono
parents:
diff changeset
1458 again. Repetitive live range calculations are expensive therefore
kono
parents:
diff changeset
1459 we stop here as we already have correct info although some
kono
parents:
diff changeset
1460 improvement in rare cases could be possible on this sub-pass if
kono
parents:
diff changeset
1461 we do dead insn elimination again (still the improvement may
kono
parents:
diff changeset
1462 happen later). */
kono
parents:
diff changeset
1463 lra_clear_live_ranges ();
kono
parents:
diff changeset
1464 bool res = lra_create_live_ranges_1 (all_p, false);
kono
parents:
diff changeset
1465 lra_assert (! res);
kono
parents:
diff changeset
1466 }
kono
parents:
diff changeset
1467
kono
parents:
diff changeset
1468 /* Finish all live ranges. */
kono
parents:
diff changeset
1469 void
kono
parents:
diff changeset
1470 lra_clear_live_ranges (void)
kono
parents:
diff changeset
1471 {
kono
parents:
diff changeset
1472 int i;
kono
parents:
diff changeset
1473
kono
parents:
diff changeset
1474 for (i = 0; i < max_reg_num (); i++)
kono
parents:
diff changeset
1475 free_live_range_list (lra_reg_info[i].live_ranges);
kono
parents:
diff changeset
1476 point_freq_vec.release ();
kono
parents:
diff changeset
1477 }
kono
parents:
diff changeset
1478
kono
parents:
diff changeset
1479 /* Initialize live ranges data once per function. */
kono
parents:
diff changeset
1480 void
kono
parents:
diff changeset
1481 lra_live_ranges_init (void)
kono
parents:
diff changeset
1482 {
kono
parents:
diff changeset
1483 bitmap_initialize (&temp_bitmap, &reg_obstack);
kono
parents:
diff changeset
1484 initiate_live_solver ();
kono
parents:
diff changeset
1485 }
kono
parents:
diff changeset
1486
kono
parents:
diff changeset
1487 /* Finish live ranges data once per function. */
kono
parents:
diff changeset
1488 void
kono
parents:
diff changeset
1489 lra_live_ranges_finish (void)
kono
parents:
diff changeset
1490 {
kono
parents:
diff changeset
1491 finish_live_solver ();
kono
parents:
diff changeset
1492 bitmap_clear (&temp_bitmap);
kono
parents:
diff changeset
1493 lra_live_range_pool.release ();
kono
parents:
diff changeset
1494 }