Branch data Line data Source code
1 : : /* Register renaming for the GNU compiler.
2 : : Copyright (C) 2000-2025 Free Software Foundation, Inc.
3 : :
4 : : This file is part of GCC.
5 : :
6 : : GCC is free software; you can redistribute it and/or modify it
7 : : under the terms of the GNU General Public License as published by
8 : : the Free Software Foundation; either version 3, or (at your option)
9 : : any later version.
10 : :
11 : : GCC is distributed in the hope that it will be useful, but WITHOUT
12 : : ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 : : or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
14 : : License for more details.
15 : :
16 : : You should have received a copy of the GNU General Public License
17 : : along with GCC; see the file COPYING3. If not see
18 : : <http://www.gnu.org/licenses/>. */
19 : :
20 : : #include "config.h"
21 : : #include "system.h"
22 : : #include "coretypes.h"
23 : : #include "backend.h"
24 : : #include "target.h"
25 : : #include "rtl.h"
26 : : #include "df.h"
27 : : #include "memmodel.h"
28 : : #include "tm_p.h"
29 : : #include "insn-config.h"
30 : : #include "regs.h"
31 : : #include "emit-rtl.h"
32 : : #include "recog.h"
33 : : #include "addresses.h"
34 : : #include "cfganal.h"
35 : : #include "tree-pass.h"
36 : : #include "function-abi.h"
37 : : #include "regrename.h"
38 : :
39 : : /* This file implements the RTL register renaming pass of the compiler. It is
40 : : a semi-local pass whose goal is to maximize the usage of the register file
41 : : of the processor by substituting registers for others in the solution given
42 : : by the register allocator. The algorithm is as follows:
43 : :
44 : : 1. Local def/use chains are built: within each basic block, chains are
45 : : opened and closed; if a chain isn't closed at the end of the block,
46 : : it is dropped. We pre-open chains if we have already examined a
47 : : predecessor block and found chains live at the end which match
48 : : live registers at the start of the new block.
49 : :
50 : : 2. We try to combine the local chains across basic block boundaries by
51 : : comparing chains that were open at the start or end of a block to
52 : : those in successor/predecessor blocks.
53 : :
54 : : 3. For each chain, the set of possible renaming registers is computed.
55 : : This takes into account the renaming of previously processed chains.
56 : : Optionally, a preferred class is computed for the renaming register.
57 : :
58 : : 4. The best renaming register is computed for the chain in the above set,
59 : : using a round-robin allocation. If a preferred class exists, then the
60 : : round-robin allocation is done within the class first, if possible.
61 : : The round-robin allocation of renaming registers itself is global.
62 : :
63 : : 5. If a renaming register has been found, it is substituted in the chain.
64 : :
65 : : Targets can parameterize the pass by specifying a preferred class for the
66 : : renaming register for a given (super)class of registers to be renamed.
67 : :
68 : : DEBUG_INSNs are treated specially, in particular registers occurring inside
69 : : them are treated as requiring ALL_REGS as a class. */
70 : :
71 : : #if HOST_BITS_PER_WIDE_INT <= MAX_RECOG_OPERANDS
72 : : #error "Use a different bitmap implementation for untracked_operands."
73 : : #endif
74 : :
75 : : enum scan_actions
76 : : {
77 : : terminate_write,
78 : : terminate_dead,
79 : : mark_all_read,
80 : : mark_read,
81 : : mark_write,
82 : : /* mark_access is for marking the destination regs in
83 : : REG_FRAME_RELATED_EXPR notes (as if they were read) so that the
84 : : note is updated properly. */
85 : : mark_access
86 : : };
87 : :
88 : : static const char * const scan_actions_name[] =
89 : : {
90 : : "terminate_write",
91 : : "terminate_dead",
92 : : "mark_all_read",
93 : : "mark_read",
94 : : "mark_write",
95 : : "mark_access"
96 : : };
97 : :
98 : : /* TICK and THIS_TICK are used to record the last time we saw each
99 : : register. */
100 : : static int tick[FIRST_PSEUDO_REGISTER];
101 : : static int this_tick = 0;
102 : :
103 : : static struct obstack rename_obstack;
104 : :
105 : : /* If nonnull, the code calling into the register renamer requested
106 : : information about insn operands, and we store it here. */
107 : : vec<insn_rr_info> insn_rr;
108 : :
109 : : static void scan_rtx (rtx_insn *, rtx *, enum reg_class, enum scan_actions,
110 : : enum op_type);
111 : : static bool build_def_use (basic_block);
112 : :
113 : : /* The id to be given to the next opened chain. */
114 : : static unsigned current_id;
115 : :
116 : : /* A mapping of unique id numbers to chains. */
117 : : static vec<du_head_p> id_to_chain;
118 : :
119 : : /* List of currently open chains. */
120 : : static class du_head *open_chains;
121 : :
122 : : /* Bitmap of open chains. The bits set always match the list found in
123 : : open_chains. */
124 : : static bitmap_head open_chains_set;
125 : :
126 : : /* Record the registers being tracked in open_chains. */
127 : : static HARD_REG_SET live_in_chains;
128 : :
129 : : /* Record the registers that are live but not tracked. The intersection
130 : : between this and live_in_chains is empty. */
131 : : static HARD_REG_SET live_hard_regs;
132 : :
133 : : /* Set while scanning RTL if INSN_RR is nonnull, i.e. if the current analysis
134 : : is for a caller that requires operand data. Used in
135 : : record_operand_use. */
136 : : static operand_rr_info *cur_operand;
137 : :
138 : : /* Set while scanning RTL if a register dies. Used to tie chains. */
139 : : static class du_head *terminated_this_insn;
140 : :
141 : : /* Return the chain corresponding to id number ID. Take into account that
142 : : chains may have been merged. */
143 : : du_head_p
144 : 99226396 : regrename_chain_from_id (unsigned int id)
145 : : {
146 : 99226396 : du_head_p first_chain = id_to_chain[id];
147 : 99226396 : du_head_p chain = first_chain;
148 : 157329961 : while (chain->id != id)
149 : : {
150 : 58103565 : id = chain->id;
151 : 58103565 : chain = id_to_chain[id];
152 : : }
153 : 99226396 : first_chain->id = id;
154 : 99226396 : return chain;
155 : : }
156 : :
157 : : /* Dump all def/use chains, starting at id FROM. */
158 : :
159 : : static void
160 : 100 : dump_def_use_chain (int from)
161 : : {
162 : 100 : du_head_p head;
163 : 100 : int i;
164 : 964 : FOR_EACH_VEC_ELT_FROM (id_to_chain, i, head, from)
165 : : {
166 : 864 : struct du_chain *this_du = head->first;
167 : :
168 : 864 : fprintf (dump_file, "Register %s (%d):",
169 : 864 : reg_names[head->regno], head->nregs);
170 : 2590 : while (this_du)
171 : : {
172 : 862 : fprintf (dump_file, " %d [%s]", INSN_UID (this_du->insn),
173 : 862 : reg_class_names[this_du->cl]);
174 : 862 : this_du = this_du->next_use;
175 : : }
176 : 864 : fprintf (dump_file, "\n");
177 : 864 : head = head->next_chain;
178 : : }
179 : 100 : }
180 : :
181 : : static void
182 : 22102 : free_chain_data (void)
183 : : {
184 : 22102 : int i;
185 : 22102 : du_head_p ptr;
186 : 4530051 : for (i = 0; id_to_chain.iterate (i, &ptr); i++)
187 : 4507949 : bitmap_clear (&ptr->conflicts);
188 : :
189 : 22102 : id_to_chain.release ();
190 : 22102 : }
191 : :
192 : : /* Walk all chains starting with CHAINS and record that they conflict with
193 : : another chain whose id is ID. */
194 : :
195 : : static void
196 : 4507949 : mark_conflict (class du_head *chains, unsigned id)
197 : : {
198 : 27807302 : while (chains)
199 : : {
200 : 23299353 : bitmap_set_bit (&chains->conflicts, id);
201 : 23299353 : chains = chains->next_chain;
202 : : }
203 : 0 : }
204 : :
205 : : /* Examine cur_operand, and if it is nonnull, record information about the
206 : : use THIS_DU which is part of the chain HEAD. */
207 : :
208 : : static void
209 : 5101236 : record_operand_use (class du_head *head, struct du_chain *this_du)
210 : : {
211 : 5101236 : if (cur_operand == NULL || cur_operand->failed)
212 : : return;
213 : 0 : if (head->cannot_rename)
214 : : {
215 : 0 : cur_operand->failed = true;
216 : 0 : return;
217 : : }
218 : 0 : gcc_assert (cur_operand->n_chains < MAX_REGS_PER_ADDRESS);
219 : 0 : cur_operand->heads[cur_operand->n_chains] = head;
220 : 0 : cur_operand->chains[cur_operand->n_chains++] = this_du;
221 : : }
222 : :
223 : : /* Create a new chain for THIS_NREGS registers starting at THIS_REGNO,
224 : : and record its occurrence in *LOC, which is being written to in INSN.
225 : : This access requires a register of class CL. */
226 : :
227 : : static du_head_p
228 : 4507949 : create_new_chain (unsigned this_regno, unsigned this_nregs, rtx *loc,
229 : : rtx_insn *insn, enum reg_class cl)
230 : : {
231 : 4507949 : class du_head *head = XOBNEW (&rename_obstack, class du_head);
232 : 4507949 : struct du_chain *this_du;
233 : 4507949 : int nregs;
234 : :
235 : 4507949 : memset ((void *)head, 0, sizeof *head);
236 : 4507949 : head->next_chain = open_chains;
237 : 4507949 : head->regno = this_regno;
238 : 4507949 : head->nregs = this_nregs;
239 : :
240 : 4507949 : id_to_chain.safe_push (head);
241 : 4507949 : head->id = current_id++;
242 : :
243 : 4507949 : bitmap_initialize (&head->conflicts, &bitmap_default_obstack);
244 : 4507949 : bitmap_copy (&head->conflicts, &open_chains_set);
245 : 4507949 : mark_conflict (open_chains, head->id);
246 : :
247 : : /* Since we're tracking this as a chain now, remove it from the
248 : : list of conflicting live hard registers and track it in
249 : : live_in_chains instead. */
250 : 4507949 : nregs = head->nregs;
251 : 9017540 : while (nregs-- > 0)
252 : : {
253 : 4509591 : SET_HARD_REG_BIT (live_in_chains, head->regno + nregs);
254 : 4509591 : CLEAR_HARD_REG_BIT (live_hard_regs, head->regno + nregs);
255 : : }
256 : :
257 : 4507949 : head->hard_conflicts = live_hard_regs;
258 : 4507949 : bitmap_set_bit (&open_chains_set, head->id);
259 : :
260 : 4507949 : open_chains = head;
261 : :
262 : 4507949 : if (dump_file)
263 : : {
264 : 864 : fprintf (dump_file, "Creating chain %s (%d)",
265 : 864 : reg_names[head->regno], head->id);
266 : 864 : if (insn != NULL_RTX)
267 : 136 : fprintf (dump_file, " at insn %d", INSN_UID (insn));
268 : 864 : fprintf (dump_file, "\n");
269 : : }
270 : :
271 : 4507949 : if (insn == NULL_RTX)
272 : : {
273 : 3088195 : head->first = head->last = NULL;
274 : 3088195 : return head;
275 : : }
276 : :
277 : 1419754 : this_du = XOBNEW (&rename_obstack, struct du_chain);
278 : 1419754 : head->first = head->last = this_du;
279 : :
280 : 1419754 : this_du->next_use = 0;
281 : 1419754 : this_du->loc = loc;
282 : 1419754 : this_du->insn = insn;
283 : 1419754 : this_du->cl = cl;
284 : 1419754 : record_operand_use (head, this_du);
285 : 1419754 : return head;
286 : : }
287 : :
288 : : /* For a def-use chain HEAD, find which registers overlap its lifetime and
289 : : set the corresponding bits in *PSET. */
290 : :
291 : : static void
292 : 967234 : merge_overlapping_regs (HARD_REG_SET *pset, class du_head *head)
293 : : {
294 : 967234 : bitmap_iterator bi;
295 : 967234 : unsigned i;
296 : 967234 : *pset |= head->hard_conflicts;
297 : 44505368 : EXECUTE_IF_SET_IN_BITMAP (&head->conflicts, 0, i, bi)
298 : : {
299 : 43538134 : du_head_p other = regrename_chain_from_id (i);
300 : 43538134 : unsigned j = other->nregs;
301 : 43538134 : gcc_assert (other != head);
302 : 87089645 : while (j-- > 0)
303 : 43551511 : SET_HARD_REG_BIT (*pset, other->regno + j);
304 : : }
305 : 967234 : }
306 : :
307 : : /* Return true if (reg:MODE REGNO) would be clobbered by a call covered
308 : : by THIS_HEAD. */
309 : :
310 : : static bool
311 : 20559095 : call_clobbered_in_chain_p (du_head *this_head, machine_mode mode,
312 : : unsigned int regno)
313 : : {
314 : 20559095 : return call_clobbered_in_region_p (this_head->call_abis,
315 : 0 : this_head->call_clobber_mask,
316 : 0 : mode, regno);
317 : : }
318 : :
319 : : /* Check if NEW_REG can be the candidate register to rename for
320 : : REG in THIS_HEAD chain. THIS_UNAVAILABLE is a set of unavailable hard
321 : : registers. */
322 : :
323 : : static bool
324 : 87315632 : check_new_reg_p (int reg ATTRIBUTE_UNUSED, int new_reg,
325 : : class du_head *this_head, HARD_REG_SET this_unavailable)
326 : : {
327 : 87315632 : int nregs = 1;
328 : 87315632 : int i;
329 : 87315632 : struct du_chain *tmp;
330 : :
331 : : /* See whether new_reg accepts all modes that occur in
332 : : definition and uses and record the number of regs it would take. */
333 : 312602368 : for (tmp = this_head->first; tmp; tmp = tmp->next_use)
334 : : {
335 : 268064001 : int n;
336 : : /* Completely ignore DEBUG_INSNs, otherwise we can get
337 : : -fcompare-debug failures. */
338 : 268064001 : if (DEBUG_INSN_P (tmp->insn))
339 : 4247407 : continue;
340 : :
341 : 263816594 : if (!targetm.hard_regno_mode_ok (new_reg, GET_MODE (*tmp->loc)))
342 : : return false;
343 : 221039329 : n = hard_regno_nregs (new_reg, GET_MODE (*tmp->loc));
344 : 221039329 : if (n > nregs)
345 : 225286736 : nregs = n;
346 : : }
347 : :
348 : 50139426 : for (i = nregs - 1; i >= 0; --i)
349 : 44544228 : if (TEST_HARD_REG_BIT (this_unavailable, new_reg + i)
350 : 17031953 : || fixed_regs[new_reg + i]
351 : 6400508 : || global_regs[new_reg + i]
352 : : /* Can't use regs which aren't saved by the prologue. */
353 : 6400508 : || (! df_regs_ever_live_p (new_reg + i)
354 : 1255016 : && ! crtl->abi->clobbers_full_reg_p (new_reg + i))
355 : : #ifdef LEAF_REGISTERS
356 : : /* We can't use a non-leaf register if we're in a
357 : : leaf function. */
358 : : || (crtl->is_leaf
359 : : && !LEAF_REGISTERS[new_reg + i])
360 : : #endif
361 : 50340651 : || ! HARD_REGNO_RENAME_OK (reg + i, new_reg + i))
362 : 38943169 : return false;
363 : :
364 : : /* See whether it accepts all modes that occur in
365 : : definition and uses. */
366 : 26295715 : for (tmp = this_head->first; tmp; tmp = tmp->next_use)
367 : : {
368 : 20700517 : if (DEBUG_INSN_P (tmp->insn))
369 : 141422 : continue;
370 : :
371 : 20559095 : if (call_clobbered_in_chain_p (this_head, GET_MODE (*tmp->loc), new_reg))
372 : : return false;
373 : : }
374 : :
375 : : return true;
376 : : }
377 : :
378 : : /* For the chain THIS_HEAD, compute and return the best register to
379 : : rename to. SUPER_CLASS is the superunion of register classes in
380 : : the chain. UNAVAILABLE is a set of registers that cannot be used.
381 : : OLD_REG is the register currently used for the chain. BEST_RENAME
382 : : controls whether the register chosen must be better than the
383 : : current one or just respect the given constraint. */
384 : :
385 : : int
386 : 967234 : find_rename_reg (du_head_p this_head, enum reg_class super_class,
387 : : HARD_REG_SET *unavailable, int old_reg, bool best_rename)
388 : : {
389 : 967234 : bool has_preferred_class;
390 : 967234 : enum reg_class preferred_class;
391 : 967234 : int pass;
392 : 967234 : int best_new_reg = old_reg;
393 : :
394 : : /* Mark registers that overlap this chain's lifetime as unavailable. */
395 : 967234 : merge_overlapping_regs (unavailable, this_head);
396 : :
397 : : /* Compute preferred rename class of super union of all the classes
398 : : in the chain. */
399 : 967234 : preferred_class
400 : 967234 : = (enum reg_class) targetm.preferred_rename_class (super_class);
401 : :
402 : : /* Pick and check the register from the tied chain iff the tied chain
403 : : is not renamed. */
404 : 60884 : if (this_head->tied_chain && !this_head->tied_chain->renamed
405 : 1017462 : && check_new_reg_p (old_reg, this_head->tied_chain->regno,
406 : : this_head, *unavailable))
407 : 12586 : return this_head->tied_chain->regno;
408 : :
409 : : /* If the first non-debug insn is a noop move, then do not rename in this
410 : : chain as doing so would inhibit removal of the noop move. */
411 : 954671 : for (struct du_chain *tmp = this_head->first; tmp; tmp = tmp->next_use)
412 : 954671 : if (DEBUG_INSN_P (tmp->insn))
413 : 23 : continue;
414 : 954648 : else if (noop_move_p (tmp->insn))
415 : : return best_new_reg;
416 : : else
417 : : break;
418 : :
419 : : /* If PREFERRED_CLASS is not NO_REGS, we iterate in the first pass
420 : : over registers that belong to PREFERRED_CLASS and try to find the
421 : : best register within the class. If that failed, we iterate in
422 : : the second pass over registers that don't belong to the class.
423 : : If PREFERRED_CLASS is NO_REGS, we iterate over all registers in
424 : : ascending order without any preference. */
425 : 948537 : has_preferred_class = (preferred_class != NO_REGS);
426 : 2845611 : for (pass = (has_preferred_class ? 0 : 1); pass < 2; pass++)
427 : : {
428 : : int new_reg;
429 : 88213941 : for (new_reg = 0; new_reg < FIRST_PSEUDO_REGISTER; new_reg++)
430 : : {
431 : 87265404 : if (has_preferred_class
432 : 87265404 : && (pass == 0)
433 : 0 : != TEST_HARD_REG_BIT (reg_class_contents[preferred_class],
434 : : new_reg))
435 : 0 : continue;
436 : :
437 : 87265404 : if (!check_new_reg_p (old_reg, new_reg, this_head, *unavailable))
438 : 81682792 : continue;
439 : :
440 : 5582612 : if (!best_rename)
441 : : return new_reg;
442 : :
443 : : /* In the first pass, we force the renaming of registers that
444 : : don't belong to PREFERRED_CLASS to registers that do, even
445 : : though the latters were used not very long ago. */
446 : 5582612 : if ((pass == 0
447 : 0 : && !TEST_HARD_REG_BIT (reg_class_contents[preferred_class],
448 : : best_new_reg))
449 : 5582612 : || tick[best_new_reg] > tick[new_reg])
450 : : best_new_reg = new_reg;
451 : : }
452 : 948537 : if (pass == 0 && best_new_reg != old_reg)
453 : : break;
454 : : }
455 : : return best_new_reg;
456 : : }
457 : :
458 : : /* Iterate over elements in the chain HEAD in order to:
459 : : 1. Count number of uses, storing it in *PN_USES.
460 : : 2. Narrow the set of registers we can use for renaming, adding
461 : : unavailable registers to *PUNAVAILABLE, which must be
462 : : initialized by the caller.
463 : : 3. Compute the superunion of register classes in this chain
464 : : and return it. */
465 : : reg_class
466 : 4084758 : regrename_find_superclass (du_head_p head, int *pn_uses,
467 : : HARD_REG_SET *punavailable)
468 : : {
469 : 4084758 : int n_uses = 0;
470 : 4084758 : reg_class super_class = NO_REGS;
471 : 8615068 : for (du_chain *tmp = head->first; tmp; tmp = tmp->next_use)
472 : : {
473 : 4530310 : if (DEBUG_INSN_P (tmp->insn))
474 : 73835 : continue;
475 : 4456475 : n_uses++;
476 : 4456475 : *punavailable |= ~reg_class_contents[tmp->cl];
477 : 4456475 : super_class
478 : 4456475 : = reg_class_superunion[(int) super_class][(int) tmp->cl];
479 : : }
480 : 4084758 : *pn_uses = n_uses;
481 : 4084758 : return super_class;
482 : : }
483 : :
484 : : /* Perform register renaming on the current function. */
485 : : static void
486 : 22102 : rename_chains (void)
487 : : {
488 : 22102 : HARD_REG_SET unavailable;
489 : 22102 : du_head_p this_head;
490 : 22102 : int i;
491 : :
492 : 22102 : memset (tick, 0, sizeof tick);
493 : :
494 : 22102 : CLEAR_HARD_REG_SET (unavailable);
495 : : /* Don't clobber traceback for noreturn functions. */
496 : 22102 : if (frame_pointer_needed)
497 : : {
498 : 789 : add_to_hard_reg_set (&unavailable, Pmode, FRAME_POINTER_REGNUM);
499 : 748 : if (!HARD_FRAME_POINTER_IS_FRAME_POINTER)
500 : 748 : add_to_hard_reg_set (&unavailable, Pmode, HARD_FRAME_POINTER_REGNUM);
501 : : }
502 : :
503 : 4530051 : FOR_EACH_VEC_ELT (id_to_chain, i, this_head)
504 : : {
505 : 4507949 : int best_new_reg;
506 : 4507949 : int n_uses;
507 : 4507949 : HARD_REG_SET this_unavailable;
508 : 4507949 : int reg = this_head->regno;
509 : :
510 : 4507949 : if (this_head->cannot_rename)
511 : 3998274 : continue;
512 : :
513 : 4162136 : if (fixed_regs[reg] || global_regs[reg]
514 : 4160937 : || (!HARD_FRAME_POINTER_IS_FRAME_POINTER && frame_pointer_needed
515 : 900743 : && reg == HARD_FRAME_POINTER_REGNUM)
516 : : || (HARD_FRAME_POINTER_IS_FRAME_POINTER && frame_pointer_needed
517 : : && reg == FRAME_POINTER_REGNUM))
518 : 77378 : continue;
519 : :
520 : 4084758 : this_unavailable = unavailable;
521 : :
522 : 4084758 : reg_class super_class = regrename_find_superclass (this_head, &n_uses,
523 : : &this_unavailable);
524 : 4084758 : if (n_uses < 2)
525 : 3117524 : continue;
526 : :
527 : 967234 : best_new_reg = find_rename_reg (this_head, super_class,
528 : : &this_unavailable, reg, true);
529 : :
530 : 967234 : if (dump_file)
531 : : {
532 : 110 : fprintf (dump_file, "Register %s in insn %d",
533 : 110 : reg_names[reg], INSN_UID (this_head->first->insn));
534 : 110 : if (this_head->call_abis)
535 : 4 : fprintf (dump_file, " crosses a call");
536 : : }
537 : :
538 : 967234 : if (best_new_reg == reg)
539 : : {
540 : 457559 : tick[reg] = ++this_tick;
541 : 457559 : if (dump_file)
542 : 50 : fprintf (dump_file, "; no available better choice\n");
543 : 457559 : continue;
544 : : }
545 : :
546 : 509675 : if (regrename_do_replace (this_head, best_new_reg))
547 : : {
548 : 509589 : if (dump_file)
549 : 60 : fprintf (dump_file, ", renamed as %s\n", reg_names[best_new_reg]);
550 : 509589 : tick[best_new_reg] = ++this_tick;
551 : 509589 : df_set_regs_ever_live (best_new_reg, true);
552 : : }
553 : : else
554 : : {
555 : 86 : if (dump_file)
556 : 0 : fprintf (dump_file, ", renaming as %s failed\n",
557 : : reg_names[best_new_reg]);
558 : 86 : tick[reg] = ++this_tick;
559 : : }
560 : : }
561 : 22102 : }
562 : :
563 : : /* A structure to record information for each hard register at the start of
564 : : a basic block. */
565 : : struct incoming_reg_info {
566 : : /* Holds the number of registers used in the chain that gave us information
567 : : about this register. Zero means no information known yet, while a
568 : : negative value is used for something that is part of, but not the first
569 : : register in a multi-register value. */
570 : : int nregs;
571 : : /* Set to true if we have accesses that conflict in the number of registers
572 : : used. */
573 : : bool unusable;
574 : : };
575 : :
576 : : /* A structure recording information about each basic block. It is saved
577 : : and restored around basic block boundaries.
578 : : A pointer to such a structure is stored in each basic block's aux field
579 : : during regrename_analyze, except for blocks we know can't be optimized
580 : : (such as entry and exit blocks). */
581 : : class bb_rename_info
582 : : {
583 : : public:
584 : : /* The basic block corresponding to this structure. */
585 : : basic_block bb;
586 : : /* Copies of the global information. */
587 : : bitmap_head open_chains_set;
588 : : bitmap_head incoming_open_chains_set;
589 : : struct incoming_reg_info incoming[FIRST_PSEUDO_REGISTER];
590 : : };
591 : :
592 : : /* Initialize a rename_info structure P for basic block BB, which starts a new
593 : : scan. */
594 : : static void
595 : 561660 : init_rename_info (class bb_rename_info *p, basic_block bb)
596 : : {
597 : 561660 : int i;
598 : 561660 : df_ref def;
599 : 561660 : HARD_REG_SET start_chains_set;
600 : :
601 : 561660 : p->bb = bb;
602 : 561660 : bitmap_initialize (&p->open_chains_set, &bitmap_default_obstack);
603 : 561660 : bitmap_initialize (&p->incoming_open_chains_set, &bitmap_default_obstack);
604 : :
605 : 561660 : open_chains = NULL;
606 : 561660 : bitmap_clear (&open_chains_set);
607 : :
608 : 2246640 : CLEAR_HARD_REG_SET (live_in_chains);
609 : 561660 : REG_SET_TO_HARD_REG_SET (live_hard_regs, df_get_live_in (bb));
610 : 1123726 : FOR_EACH_ARTIFICIAL_DEF (def, bb->index)
611 : 406 : if (DF_REF_FLAGS (def) & DF_REF_AT_TOP)
612 : 406 : SET_HARD_REG_BIT (live_hard_regs, DF_REF_REGNO (def));
613 : :
614 : : /* Open chains based on information from (at least one) predecessor
615 : : block. This gives us a chance later on to combine chains across
616 : : basic block boundaries. Inconsistencies (in access sizes) will
617 : : be caught normally and dealt with conservatively by disabling the
618 : : chain for renaming, and there is no risk of losing optimization
619 : : opportunities by opening chains either: if we did not open the
620 : : chains, we'd have to track the live register as a hard reg, and
621 : : we'd be unable to rename it in any case. */
622 : 52234380 : CLEAR_HARD_REG_SET (start_chains_set);
623 : 52234380 : for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
624 : : {
625 : 51672720 : struct incoming_reg_info *iri = p->incoming + i;
626 : 3525607 : if (iri->nregs > 0 && !iri->unusable
627 : 58723934 : && range_in_hard_reg_set_p (live_hard_regs, i, iri->nregs))
628 : : {
629 : 3088186 : SET_HARD_REG_BIT (start_chains_set, i);
630 : 3088186 : remove_range_from_hard_reg_set (&live_hard_regs, i, iri->nregs);
631 : : }
632 : : }
633 : 52234380 : for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
634 : : {
635 : 51672720 : struct incoming_reg_info *iri = p->incoming + i;
636 : 51672720 : if (TEST_HARD_REG_BIT (start_chains_set, i))
637 : : {
638 : 3088186 : du_head_p chain;
639 : 3088186 : if (dump_file)
640 : 728 : fprintf (dump_file, "opening incoming chain\n");
641 : 3088186 : chain = create_new_chain (i, iri->nregs, NULL, NULL, NO_REGS);
642 : 3088186 : bitmap_set_bit (&p->incoming_open_chains_set, chain->id);
643 : : }
644 : : }
645 : 561660 : }
646 : :
647 : : /* Record in RI that the block corresponding to it has an incoming
648 : : live value, described by CHAIN. */
649 : : static void
650 : 5373300 : set_incoming_from_chain (class bb_rename_info *ri, du_head_p chain)
651 : : {
652 : 5373300 : int i;
653 : 5373300 : int incoming_nregs = ri->incoming[chain->regno].nregs;
654 : 5373300 : int nregs;
655 : :
656 : : /* If we've recorded the same information before, everything is fine. */
657 : 5373300 : if (incoming_nregs == chain->nregs)
658 : : {
659 : 1845764 : if (dump_file)
660 : 358 : fprintf (dump_file, "reg %d/%d already recorded\n",
661 : : chain->regno, chain->nregs);
662 : 1845764 : return;
663 : : }
664 : :
665 : : /* If we have no information for any of the involved registers, update
666 : : the incoming array. */
667 : : nregs = chain->nregs;
668 : 7055072 : while (nregs-- > 0)
669 : 3527536 : if (ri->incoming[chain->regno + nregs].nregs != 0
670 : 3527536 : || ri->incoming[chain->regno + nregs].unusable)
671 : : break;
672 : 3527536 : if (nregs < 0)
673 : : {
674 : 3527536 : nregs = chain->nregs;
675 : 3527536 : ri->incoming[chain->regno].nregs = nregs;
676 : 3527536 : while (nregs-- > 1)
677 : 0 : ri->incoming[chain->regno + nregs].nregs = -nregs;
678 : 3527536 : if (dump_file)
679 : 840 : fprintf (dump_file, "recorded reg %d/%d\n",
680 : : chain->regno, chain->nregs);
681 : 3527536 : return;
682 : : }
683 : :
684 : : /* There must be some kind of conflict. Prevent both the old and
685 : : new ranges from being used. */
686 : 0 : if (incoming_nregs < 0)
687 : 0 : ri->incoming[chain->regno + incoming_nregs].unusable = true;
688 : 0 : for (i = 0; i < chain->nregs; i++)
689 : 0 : ri->incoming[chain->regno + i].unusable = true;
690 : : }
691 : :
692 : : /* Merge the two chains C1 and C2 so that all conflict information is
693 : : recorded and C1, and the id of C2 is changed to that of C1. */
694 : : static void
695 : 4464498 : merge_chains (du_head_p c1, du_head_p c2)
696 : : {
697 : 4464498 : if (c1 == c2)
698 : : return;
699 : :
700 : 3213826 : if (c2->first != NULL)
701 : : {
702 : 976270 : if (c1->first == NULL)
703 : 45651 : c1->first = c2->first;
704 : : else
705 : 930619 : c1->last->next_use = c2->first;
706 : 976270 : c1->last = c2->last;
707 : : }
708 : :
709 : 3213826 : c2->first = c2->last = NULL;
710 : 3213826 : c2->id = c1->id;
711 : :
712 : 3213826 : c1->hard_conflicts |= c2->hard_conflicts;
713 : 3213826 : bitmap_ior_into (&c1->conflicts, &c2->conflicts);
714 : :
715 : 3213826 : c1->call_clobber_mask |= c2->call_clobber_mask;
716 : 3213826 : c1->call_abis |= c2->call_abis;
717 : 3213826 : c1->cannot_rename |= c2->cannot_rename;
718 : : }
719 : :
720 : : /* Analyze the current function and build chains for renaming.
721 : : If INCLUDE_ALL_BLOCKS_P is set to true, process all blocks,
722 : : ignoring BB_DISABLE_SCHEDULE. The default value is true. */
723 : :
724 : : void
725 : 22102 : regrename_analyze (bitmap bb_mask, bool include_all_block_p)
726 : : {
727 : 22102 : class bb_rename_info *rename_info;
728 : 22102 : int i;
729 : 22102 : basic_block bb;
730 : 22102 : int n_bbs;
731 : 22102 : int *inverse_postorder;
732 : :
733 : 22102 : inverse_postorder = XNEWVEC (int, last_basic_block_for_fn (cfun));
734 : 22102 : n_bbs = pre_and_rev_post_order_compute (NULL, inverse_postorder, false);
735 : :
736 : : /* Gather some information about the blocks in this function. */
737 : 22102 : rename_info = XCNEWVEC (class bb_rename_info, n_basic_blocks_for_fn (cfun));
738 : 22102 : i = 0;
739 : 583762 : FOR_EACH_BB_FN (bb, cfun)
740 : : {
741 : 561660 : class bb_rename_info *ri = rename_info + i;
742 : 561660 : ri->bb = bb;
743 : 561660 : if (bb_mask != NULL && !bitmap_bit_p (bb_mask, bb->index))
744 : 0 : bb->aux = NULL;
745 : : else
746 : 561660 : bb->aux = ri;
747 : 561660 : i++;
748 : : }
749 : :
750 : 22102 : current_id = 0;
751 : 22102 : id_to_chain.create (0);
752 : 22102 : bitmap_initialize (&open_chains_set, &bitmap_default_obstack);
753 : :
754 : : /* The order in which we visit blocks ensures that whenever
755 : : possible, we only process a block after at least one of its
756 : : predecessors, which provides a "seeding" effect to make the logic
757 : : in set_incoming_from_chain and init_rename_info useful. */
758 : :
759 : 583762 : for (i = 0; i < n_bbs; i++)
760 : : {
761 : 561660 : basic_block bb1 = BASIC_BLOCK_FOR_FN (cfun, inverse_postorder[i]);
762 : 561660 : class bb_rename_info *this_info;
763 : 561660 : bool success;
764 : 561660 : edge e;
765 : 561660 : edge_iterator ei;
766 : 561660 : int old_length = id_to_chain.length ();
767 : :
768 : 561660 : this_info = (class bb_rename_info *) bb1->aux;
769 : 561660 : if (this_info == NULL)
770 : 0 : continue;
771 : :
772 : 561660 : if (dump_file)
773 : 100 : fprintf (dump_file, "\nprocessing block %d:\n", bb1->index);
774 : :
775 : 561660 : if (!include_all_block_p && (bb1->flags & BB_DISABLE_SCHEDULE) != 0)
776 : : {
777 : 0 : if (dump_file)
778 : 0 : fprintf (dump_file, "avoid disrupting the sms schedule of bb %d\n",
779 : : bb1->index);
780 : 0 : continue;
781 : : }
782 : :
783 : 561660 : init_rename_info (this_info, bb1);
784 : :
785 : 561660 : success = build_def_use (bb1);
786 : 561660 : if (!success)
787 : : {
788 : 0 : if (dump_file)
789 : 0 : fprintf (dump_file, "failed\n");
790 : 0 : bb1->aux = NULL;
791 : 0 : id_to_chain.truncate (old_length);
792 : 0 : current_id = old_length;
793 : 0 : bitmap_clear (&this_info->incoming_open_chains_set);
794 : 0 : open_chains = NULL;
795 : 0 : if (insn_rr.exists ())
796 : : {
797 : 0 : rtx_insn *insn;
798 : 0 : FOR_BB_INSNS (bb1, insn)
799 : : {
800 : 0 : insn_rr_info *p = &insn_rr[INSN_UID (insn)];
801 : 0 : p->op_info = NULL;
802 : : }
803 : : }
804 : 0 : continue;
805 : 0 : }
806 : :
807 : 561660 : if (dump_file)
808 : 100 : dump_def_use_chain (old_length);
809 : 561660 : bitmap_copy (&this_info->open_chains_set, &open_chains_set);
810 : :
811 : : /* Add successor blocks to the worklist if necessary, and record
812 : : data about our own open chains at the end of this block, which
813 : : will be used to pre-open chains when processing the successors. */
814 : 1430798 : FOR_EACH_EDGE (e, ei, bb1->succs)
815 : : {
816 : 869138 : class bb_rename_info *dest_ri;
817 : 869138 : class du_head *chain;
818 : :
819 : 869138 : if (dump_file)
820 : 152 : fprintf (dump_file, "successor block %d\n", e->dest->index);
821 : :
822 : 869138 : if (e->flags & (EDGE_EH | EDGE_ABNORMAL))
823 : 3466 : continue;
824 : 865672 : dest_ri = (class bb_rename_info *)e->dest->aux;
825 : 865672 : if (dest_ri == NULL)
826 : 21610 : continue;
827 : 6217362 : for (chain = open_chains; chain; chain = chain->next_chain)
828 : 5373300 : set_incoming_from_chain (dest_ri, chain);
829 : : }
830 : : }
831 : :
832 : 22102 : free (inverse_postorder);
833 : :
834 : : /* Now, combine the chains data we have gathered across basic block
835 : : boundaries.
836 : :
837 : : For every basic block, there may be chains open at the start, or at the
838 : : end. Rather than exclude them from renaming, we look for open chains
839 : : with matching registers at the other side of the CFG edge.
840 : :
841 : : For a given chain using register R, open at the start of block B, we
842 : : must find an open chain using R on the other side of every edge leading
843 : : to B, if the register is live across this edge. In the code below,
844 : : N_PREDS_USED counts the number of edges where the register is live, and
845 : : N_PREDS_JOINED counts those where we found an appropriate chain for
846 : : joining.
847 : :
848 : : We perform the analysis for both incoming and outgoing edges, but we
849 : : only need to merge once (in the second part, after verifying outgoing
850 : : edges). */
851 : 583762 : FOR_EACH_BB_FN (bb, cfun)
852 : : {
853 : 561660 : class bb_rename_info *bb_ri = (class bb_rename_info *) bb->aux;
854 : 561660 : unsigned j;
855 : 561660 : bitmap_iterator bi;
856 : :
857 : 561660 : if (bb_ri == NULL)
858 : 0 : continue;
859 : :
860 : 561660 : if (dump_file)
861 : 100 : fprintf (dump_file, "processing bb %d in edges\n", bb->index);
862 : :
863 : 3649846 : EXECUTE_IF_SET_IN_BITMAP (&bb_ri->incoming_open_chains_set, 0, j, bi)
864 : : {
865 : 3088186 : edge e;
866 : 3088186 : edge_iterator ei;
867 : 3088186 : class du_head *chain = regrename_chain_from_id (j);
868 : 3088186 : int n_preds_used = 0, n_preds_joined = 0;
869 : :
870 : 7559723 : FOR_EACH_EDGE (e, ei, bb->preds)
871 : : {
872 : : class bb_rename_info *src_ri;
873 : : unsigned k;
874 : : bitmap_iterator bi2;
875 : : HARD_REG_SET live;
876 : 13414611 : bool success = false;
877 : :
878 : 4471537 : REG_SET_TO_HARD_REG_SET (live, df_get_live_out (e->src));
879 : 8943074 : if (!range_overlaps_hard_reg_set_p (live, chain->regno,
880 : : chain->nregs))
881 : 77 : continue;
882 : 4471474 : n_preds_used++;
883 : :
884 : 4471474 : if (e->flags & (EDGE_EH | EDGE_ABNORMAL))
885 : 14 : continue;
886 : :
887 : 4471460 : src_ri = (class bb_rename_info *)e->src->aux;
888 : 4471460 : if (src_ri == NULL)
889 : 0 : continue;
890 : :
891 : 25275756 : EXECUTE_IF_SET_IN_BITMAP (&src_ri->open_chains_set,
892 : : 0, k, bi2)
893 : : {
894 : 25268783 : class du_head *outgoing_chain = regrename_chain_from_id (k);
895 : :
896 : 25268783 : if (outgoing_chain->regno == chain->regno
897 : 4464487 : && outgoing_chain->nregs == chain->nregs)
898 : : {
899 : 4464487 : n_preds_joined++;
900 : 4464487 : success = true;
901 : 4464487 : break;
902 : : }
903 : : }
904 : 4471460 : if (!success && dump_file)
905 : 4 : fprintf (dump_file, "failure to match with pred block %d\n",
906 : 4 : e->src->index);
907 : : }
908 : 3088186 : if (n_preds_joined < n_preds_used)
909 : : {
910 : 4344 : if (dump_file)
911 : 4 : fprintf (dump_file, "cannot rename chain %d\n", j);
912 : 4344 : chain->cannot_rename = 1;
913 : : }
914 : : }
915 : : }
916 : 583762 : FOR_EACH_BB_FN (bb, cfun)
917 : : {
918 : 561660 : class bb_rename_info *bb_ri = (class bb_rename_info *) bb->aux;
919 : 561660 : unsigned j;
920 : 561660 : bitmap_iterator bi;
921 : :
922 : 561660 : if (bb_ri == NULL)
923 : 0 : continue;
924 : :
925 : 561660 : if (dump_file)
926 : 100 : fprintf (dump_file, "processing bb %d out edges\n", bb->index);
927 : :
928 : 3832162 : EXECUTE_IF_SET_IN_BITMAP (&bb_ri->open_chains_set, 0, j, bi)
929 : : {
930 : 3270502 : edge e;
931 : 3270502 : edge_iterator ei;
932 : 3270502 : class du_head *chain = regrename_chain_from_id (j);
933 : 3270502 : int n_succs_used = 0, n_succs_joined = 0;
934 : :
935 : 8678911 : FOR_EACH_EDGE (e, ei, bb->succs)
936 : : {
937 : 16225227 : bool printed = false;
938 : : class bb_rename_info *dest_ri;
939 : : unsigned k;
940 : : bitmap_iterator bi2;
941 : : HARD_REG_SET live;
942 : :
943 : 5408409 : REG_SET_TO_HARD_REG_SET (live, df_get_live_in (e->dest));
944 : 10816818 : if (!range_overlaps_hard_reg_set_p (live, chain->regno,
945 : : chain->nregs))
946 : 943063 : continue;
947 : :
948 : 4499549 : n_succs_used++;
949 : :
950 : 4499549 : dest_ri = (class bb_rename_info *)e->dest->aux;
951 : 4499549 : if (dest_ri == NULL)
952 : 34203 : continue;
953 : :
954 : 24061639 : EXECUTE_IF_SET_IN_BITMAP (&dest_ri->incoming_open_chains_set,
955 : : 0, k, bi2)
956 : : {
957 : 24060791 : class du_head *incoming_chain = regrename_chain_from_id (k);
958 : :
959 : 24060791 : if (incoming_chain->regno == chain->regno
960 : 4464498 : && incoming_chain->nregs == chain->nregs)
961 : : {
962 : 4464498 : if (dump_file)
963 : : {
964 : 1072 : if (!printed)
965 : 1072 : fprintf (dump_file,
966 : : "merging blocks for edge %d -> %d\n",
967 : 1072 : e->src->index, e->dest->index);
968 : 1072 : printed = true;
969 : 1072 : fprintf (dump_file,
970 : : " merging chains %d (->%d) and %d (->%d) [%s]\n",
971 : : k, incoming_chain->id, j, chain->id,
972 : 1072 : reg_names[incoming_chain->regno]);
973 : : }
974 : :
975 : 4464498 : merge_chains (chain, incoming_chain);
976 : 4464498 : n_succs_joined++;
977 : 4464498 : break;
978 : : }
979 : : }
980 : : }
981 : 3270502 : if (n_succs_joined < n_succs_used)
982 : : {
983 : 34987 : if (dump_file)
984 : 12 : fprintf (dump_file, "cannot rename chain %d\n",
985 : : j);
986 : 34987 : chain->cannot_rename = 1;
987 : : }
988 : : }
989 : : }
990 : :
991 : 22102 : free (rename_info);
992 : :
993 : 583762 : FOR_EACH_BB_FN (bb, cfun)
994 : 561660 : bb->aux = NULL;
995 : 22102 : }
996 : :
997 : : /* Attempt to replace all uses of the register in the chain beginning with
998 : : HEAD with REG. Returns true on success and false if the replacement is
999 : : rejected because the insns would not validate. The latter can happen
1000 : : e.g. if a match_parallel predicate enforces restrictions on register
1001 : : numbering in its subpatterns. */
1002 : :
1003 : : bool
1004 : 509675 : regrename_do_replace (class du_head *head, int reg)
1005 : : {
1006 : 509675 : struct du_chain *chain;
1007 : 509675 : unsigned int base_regno = head->regno;
1008 : 509675 : machine_mode mode;
1009 : 509675 : rtx last_reg = NULL_RTX, last_repl = NULL_RTX;
1010 : :
1011 : 2356875 : for (chain = head->first; chain; chain = chain->next_use)
1012 : : {
1013 : 1847200 : unsigned int regno = ORIGINAL_REGNO (*chain->loc);
1014 : 1847200 : class reg_attrs *attr = REG_ATTRS (*chain->loc);
1015 : 1847200 : int reg_ptr = REG_POINTER (*chain->loc);
1016 : :
1017 : 1847200 : if (DEBUG_INSN_P (chain->insn) && REGNO (*chain->loc) != base_regno)
1018 : 312 : validate_change (chain->insn, &(INSN_VAR_LOCATION_LOC (chain->insn)),
1019 : : gen_rtx_UNKNOWN_VAR_LOC (), true);
1020 : : else
1021 : : {
1022 : 1846888 : if (*chain->loc != last_reg)
1023 : : {
1024 : 1007991 : last_repl = gen_raw_REG (GET_MODE (*chain->loc), reg);
1025 : 1007991 : if (regno >= FIRST_PSEUDO_REGISTER)
1026 : 987783 : ORIGINAL_REGNO (last_repl) = regno;
1027 : 1007991 : REG_ATTRS (last_repl) = attr;
1028 : 1007991 : REG_POINTER (last_repl) = reg_ptr;
1029 : 1007991 : last_reg = *chain->loc;
1030 : : }
1031 : 1846888 : validate_change (chain->insn, chain->loc, last_repl, true);
1032 : : }
1033 : : }
1034 : :
1035 : 509675 : if (!apply_change_group ())
1036 : : return false;
1037 : :
1038 : 509589 : mode = GET_MODE (*head->first->loc);
1039 : 509589 : head->renamed = 1;
1040 : 509589 : head->regno = reg;
1041 : 509589 : head->nregs = hard_regno_nregs (reg, mode);
1042 : 509589 : return true;
1043 : : }
1044 : :
1045 : :
1046 : : /* True if we found a register with a size mismatch, which means that we
1047 : : can't track its lifetime accurately. If so, we abort the current block
1048 : : without renaming. */
1049 : : static bool fail_current_block;
1050 : :
1051 : : /* Return true if OP is a reg for which all bits are set in PSET, false
1052 : : if all bits are clear.
1053 : : In other cases, set fail_current_block and return false. */
1054 : :
1055 : : static bool
1056 : 2274553 : verify_reg_in_set (rtx op, HARD_REG_SET *pset)
1057 : : {
1058 : 2274553 : unsigned regno, nregs;
1059 : 2274553 : bool all_live, all_dead;
1060 : 2274553 : if (!REG_P (op))
1061 : : return false;
1062 : :
1063 : 2263893 : regno = REGNO (op);
1064 : 2263893 : nregs = REG_NREGS (op);
1065 : 2263893 : all_live = all_dead = true;
1066 : 4527808 : while (nregs-- > 0)
1067 : 2263915 : if (TEST_HARD_REG_BIT (*pset, regno + nregs))
1068 : : all_dead = false;
1069 : : else
1070 : 1090590 : all_live = false;
1071 : 2263893 : if (!all_dead && !all_live)
1072 : : {
1073 : 0 : fail_current_block = true;
1074 : 0 : return false;
1075 : : }
1076 : : return all_live;
1077 : : }
1078 : :
1079 : : /* Return true if OP is a reg that is being tracked already in some form.
1080 : : May set fail_current_block if it sees an unhandled case of overlap. */
1081 : :
1082 : : static bool
1083 : 1169064 : verify_reg_tracked (rtx op)
1084 : : {
1085 : 1169064 : return (verify_reg_in_set (op, &live_hard_regs)
1086 : 1169064 : || verify_reg_in_set (op, &live_in_chains));
1087 : : }
1088 : :
1089 : : /* Called through note_stores. DATA points to a rtx_code, either SET or
1090 : : CLOBBER, which tells us which kind of rtx to look at. If we have a
1091 : : match, record the set register in live_hard_regs and in the hard_conflicts
1092 : : bitmap of open chains. */
1093 : :
1094 : : static void
1095 : 7960470 : note_sets_clobbers (rtx x, const_rtx set, void *data)
1096 : : {
1097 : 7960470 : enum rtx_code code = *(enum rtx_code *)data;
1098 : 7960470 : class du_head *chain;
1099 : :
1100 : 7960470 : if (GET_CODE (x) == SUBREG)
1101 : 0 : x = SUBREG_REG (x);
1102 : 7960470 : if (!REG_P (x) || GET_CODE (set) != code)
1103 : : return;
1104 : : /* There must not be pseudos at this point. */
1105 : 912069 : gcc_assert (HARD_REGISTER_P (x));
1106 : 912069 : add_to_hard_reg_set (&live_hard_regs, GET_MODE (x), REGNO (x));
1107 : 7029401 : for (chain = open_chains; chain; chain = chain->next_chain)
1108 : 6117332 : add_to_hard_reg_set (&chain->hard_conflicts, GET_MODE (x), REGNO (x));
1109 : : }
1110 : :
1111 : : static void
1112 : 17079801 : scan_rtx_reg (rtx_insn *insn, rtx *loc, enum reg_class cl, enum scan_actions action,
1113 : : enum op_type type)
1114 : : {
1115 : 17079801 : class du_head **p;
1116 : 17079801 : rtx x = *loc;
1117 : 17079801 : unsigned this_regno = REGNO (x);
1118 : 17079801 : int this_nregs = REG_NREGS (x);
1119 : :
1120 : : /* Do not process write actions for the second instruction of
1121 : : a macro-fused pair of two single_sets. */
1122 : 17079801 : if ((action == mark_write || action == terminate_write)
1123 : 17079801 : && single_output_fused_pair_p (insn))
1124 : : return;
1125 : :
1126 : 17079801 : if (action == mark_write)
1127 : : {
1128 : 1419754 : if (type == OP_OUT)
1129 : : {
1130 : 1419754 : du_head_p c;
1131 : 1419754 : rtx pat = PATTERN (insn);
1132 : :
1133 : 1419754 : c = create_new_chain (this_regno, this_nregs, loc, insn, cl);
1134 : :
1135 : : /* We try to tie chains in a move instruction for
1136 : : a single output. */
1137 : 1419754 : if (recog_data.n_operands == 2
1138 : 1275594 : && GET_CODE (pat) == SET
1139 : 1197452 : && GET_CODE (SET_DEST (pat)) == REG
1140 : 1197452 : && GET_CODE (SET_SRC (pat)) == REG
1141 : 197192 : && terminated_this_insn
1142 : 57791 : && terminated_this_insn->nregs
1143 : 57791 : == REG_NREGS (recog_data.operand[1]))
1144 : : {
1145 : 57751 : gcc_assert (terminated_this_insn->regno
1146 : : == REGNO (recog_data.operand[1]));
1147 : :
1148 : 57751 : c->tied_chain = terminated_this_insn;
1149 : 57751 : terminated_this_insn->tied_chain = c;
1150 : :
1151 : 57751 : if (dump_file)
1152 : 4 : fprintf (dump_file, "Tying chain %s (%d) with %s (%d)\n",
1153 : 4 : reg_names[c->regno], c->id,
1154 : : reg_names[terminated_this_insn->regno],
1155 : : terminated_this_insn->id);
1156 : : }
1157 : : }
1158 : :
1159 : 1419754 : return;
1160 : : }
1161 : :
1162 : 15660047 : if ((type == OP_OUT) != (action == terminate_write || action == mark_access)
1163 : 17079831 : && ! (type == OP_OUT && action == mark_read
1164 : 1419784 : && single_output_fused_pair_p (insn)))
1165 : 5893108 : return;
1166 : :
1167 : 83513088 : for (p = &open_chains; *p;)
1168 : : {
1169 : 73836997 : class du_head *head = *p;
1170 : 73836997 : class du_head *next = head->next_chain;
1171 : 147673994 : int exact_match = (head->regno == this_regno
1172 : 73836997 : && head->nregs == this_nregs);
1173 : 147673994 : int superset = (this_regno <= head->regno
1174 : 73836997 : && this_regno + this_nregs >= head->regno + head->nregs);
1175 : 147673994 : int subset = (this_regno >= head->regno
1176 : 73836997 : && this_regno + this_nregs <= head->regno + head->nregs);
1177 : :
1178 : 73836997 : if (!bitmap_bit_p (&open_chains_set, head->id)
1179 : 73836997 : || head->regno + head->nregs <= this_regno
1180 : 117399899 : || this_regno + this_nregs <= head->regno)
1181 : : {
1182 : 68599153 : p = &head->next_chain;
1183 : 68599153 : continue;
1184 : : }
1185 : :
1186 : 5237844 : if (action == mark_read || action == mark_access)
1187 : : {
1188 : : /* ??? Class NO_REGS can happen if the md file makes use of
1189 : : EXTRA_CONSTRAINTS to match registers. Which is arguably
1190 : : wrong, but there we are. */
1191 : :
1192 : 3685546 : if (cl == NO_REGS || (!exact_match && !DEBUG_INSN_P (insn)))
1193 : : {
1194 : 4064 : if (dump_file)
1195 : 0 : fprintf (dump_file,
1196 : : "Cannot rename chain %s (%d) at insn %d (%s)\n",
1197 : 0 : reg_names[head->regno], head->id, INSN_UID (insn),
1198 : 0 : scan_actions_name[(int) action]);
1199 : 4064 : head->cannot_rename = 1;
1200 : 4064 : if (superset)
1201 : : {
1202 : 19 : unsigned nregs = this_nregs;
1203 : 19 : head->regno = this_regno;
1204 : 19 : head->nregs = this_nregs;
1205 : 48 : while (nregs-- > 0)
1206 : 29 : SET_HARD_REG_BIT (live_in_chains, head->regno + nregs);
1207 : 19 : if (dump_file)
1208 : 0 : fprintf (dump_file,
1209 : : "Widening register in chain %s (%d) at insn %d\n",
1210 : 0 : reg_names[head->regno], head->id, INSN_UID (insn));
1211 : : }
1212 : 4045 : else if (!subset)
1213 : : {
1214 : 0 : fail_current_block = true;
1215 : 0 : if (dump_file)
1216 : 0 : fprintf (dump_file,
1217 : : "Failing basic block due to unhandled overlap\n");
1218 : : }
1219 : : }
1220 : : else
1221 : : {
1222 : 3681482 : struct du_chain *this_du;
1223 : 3681482 : this_du = XOBNEW (&rename_obstack, struct du_chain);
1224 : 3681482 : this_du->next_use = 0;
1225 : 3681482 : this_du->loc = loc;
1226 : 3681482 : this_du->insn = insn;
1227 : 3681482 : this_du->cl = cl;
1228 : 3681482 : if (head->first == NULL)
1229 : 804988 : head->first = this_du;
1230 : : else
1231 : 2876494 : head->last->next_use = this_du;
1232 : 3681482 : record_operand_use (head, this_du);
1233 : 3681482 : head->last = this_du;
1234 : : }
1235 : : /* Avoid adding the same location in a DEBUG_INSN multiple times,
1236 : : which could happen with non-exact overlap. */
1237 : 3685546 : if (DEBUG_INSN_P (insn))
1238 : : return;
1239 : : /* Otherwise, find any other chains that do not match exactly;
1240 : : ensure they all get marked unrenamable. */
1241 : 3594698 : p = &head->next_chain;
1242 : 3594698 : continue;
1243 : 3594698 : }
1244 : :
1245 : : /* Whether the terminated chain can be used for renaming
1246 : : depends on the action and this being an exact match.
1247 : : In either case, we remove this element from open_chains. */
1248 : :
1249 : 1552298 : if ((action == terminate_dead || action == terminate_write)
1250 : 1237447 : && (superset || subset))
1251 : : {
1252 : 1237447 : unsigned nregs;
1253 : :
1254 : 1237447 : if (subset && !superset)
1255 : 1652 : head->cannot_rename = 1;
1256 : 1237447 : bitmap_clear_bit (&open_chains_set, head->id);
1257 : :
1258 : 1237447 : nregs = head->nregs;
1259 : 2476546 : while (nregs-- > 0)
1260 : : {
1261 : 1239099 : CLEAR_HARD_REG_BIT (live_in_chains, head->regno + nregs);
1262 : 1239099 : if (subset && !superset
1263 : 3304 : && (head->regno + nregs < this_regno
1264 : 2496 : || head->regno + nregs >= this_regno + this_nregs))
1265 : 1652 : SET_HARD_REG_BIT (live_hard_regs, head->regno + nregs);
1266 : : }
1267 : :
1268 : 1237447 : if (action == terminate_dead)
1269 : 1103493 : terminated_this_insn = *p;
1270 : 1237447 : *p = next;
1271 : 1237447 : if (dump_file)
1272 : 106 : fprintf (dump_file,
1273 : : "Closing chain %s (%d) at insn %d (%s%s)\n",
1274 : 106 : reg_names[head->regno], head->id, INSN_UID (insn),
1275 : 106 : scan_actions_name[(int) action],
1276 : 0 : superset ? ", superset" : subset ? ", subset" : "");
1277 : : }
1278 : 0 : else if (action == terminate_dead || action == terminate_write)
1279 : : {
1280 : : /* In this case, tracking liveness gets too hard. Fail the
1281 : : entire basic block. */
1282 : 0 : if (dump_file)
1283 : 0 : fprintf (dump_file,
1284 : : "Failing basic block due to unhandled overlap\n");
1285 : 0 : fail_current_block = true;
1286 : 0 : return;
1287 : : }
1288 : : else
1289 : : {
1290 : 314851 : head->cannot_rename = 1;
1291 : 314851 : if (dump_file)
1292 : 14 : fprintf (dump_file,
1293 : : "Cannot rename chain %s (%d) at insn %d (%s)\n",
1294 : 14 : reg_names[head->regno], head->id, INSN_UID (insn),
1295 : 14 : scan_actions_name[(int) action]);
1296 : 314851 : p = &head->next_chain;
1297 : : }
1298 : : }
1299 : : }
1300 : :
1301 : : /* A wrapper around base_reg_class which returns ALL_REGS if INSN is a
1302 : : DEBUG_INSN. The arguments MODE, AS, CODE and INDEX_CODE are as for
1303 : : base_reg_class. */
1304 : :
1305 : : static reg_class
1306 : 6377264 : base_reg_class_for_rename (rtx_insn *insn, machine_mode mode, addr_space_t as,
1307 : : rtx_code code, rtx_code index_code)
1308 : : {
1309 : 0 : if (DEBUG_INSN_P (insn))
1310 : : return ALL_REGS;
1311 : 6235127 : return base_reg_class (mode, as, code, index_code);
1312 : : }
1313 : :
1314 : : /* Adapted from find_reloads_address_1. CL is INDEX_REG_CLASS or
1315 : : BASE_REG_CLASS depending on how the register is being considered. */
1316 : :
1317 : : static void
1318 : 7545873 : scan_rtx_address (rtx_insn *insn, rtx *loc, enum reg_class cl,
1319 : : enum scan_actions action, machine_mode mode,
1320 : : addr_space_t as)
1321 : : {
1322 : 7545873 : rtx x = *loc;
1323 : 7545873 : RTX_CODE code = GET_CODE (x);
1324 : 7545873 : const char *fmt;
1325 : 7545873 : int i, j;
1326 : :
1327 : 7545873 : if (action == mark_write || action == mark_access)
1328 : : return;
1329 : :
1330 : 6974151 : switch (code)
1331 : : {
1332 : 2583078 : case PLUS:
1333 : 2583078 : {
1334 : 2583078 : rtx orig_op0 = XEXP (x, 0);
1335 : 2583078 : rtx orig_op1 = XEXP (x, 1);
1336 : 2583078 : RTX_CODE code0 = GET_CODE (orig_op0);
1337 : 2583078 : RTX_CODE code1 = GET_CODE (orig_op1);
1338 : 2583078 : rtx op0 = orig_op0;
1339 : 2583078 : rtx op1 = orig_op1;
1340 : 2583078 : rtx *locI = NULL;
1341 : 2583078 : rtx *locB = NULL;
1342 : 2583078 : enum rtx_code index_code = SCRATCH;
1343 : :
1344 : 2583078 : if (GET_CODE (op0) == SUBREG)
1345 : : {
1346 : 0 : op0 = SUBREG_REG (op0);
1347 : 0 : code0 = GET_CODE (op0);
1348 : : }
1349 : :
1350 : 2583078 : if (GET_CODE (op1) == SUBREG)
1351 : : {
1352 : 0 : op1 = SUBREG_REG (op1);
1353 : 0 : code1 = GET_CODE (op1);
1354 : : }
1355 : :
1356 : 2583078 : if (code0 == MULT || code0 == SIGN_EXTEND || code0 == TRUNCATE
1357 : 2433548 : || code0 == ZERO_EXTEND || code1 == MEM)
1358 : : {
1359 : 149588 : locI = &XEXP (x, 0);
1360 : 149588 : locB = &XEXP (x, 1);
1361 : 149588 : index_code = GET_CODE (*locI);
1362 : : }
1363 : 2433490 : else if (code1 == MULT || code1 == SIGN_EXTEND || code1 == TRUNCATE
1364 : 2433484 : || code1 == ZERO_EXTEND || code0 == MEM)
1365 : : {
1366 : 508 : locI = &XEXP (x, 1);
1367 : 508 : locB = &XEXP (x, 0);
1368 : 508 : index_code = GET_CODE (*locI);
1369 : : }
1370 : 2432982 : else if (code0 == CONST_INT || code0 == CONST
1371 : 2432982 : || code0 == SYMBOL_REF || code0 == LABEL_REF)
1372 : : {
1373 : 72491 : locB = &XEXP (x, 1);
1374 : 72491 : index_code = GET_CODE (XEXP (x, 0));
1375 : : }
1376 : 2360491 : else if (code1 == CONST_INT || code1 == CONST
1377 : : || code1 == SYMBOL_REF || code1 == LABEL_REF)
1378 : : {
1379 : 2120278 : locB = &XEXP (x, 0);
1380 : 2120278 : index_code = GET_CODE (XEXP (x, 1));
1381 : : }
1382 : 240213 : else if (code0 == REG && code1 == REG)
1383 : : {
1384 : 208884 : int index_op;
1385 : 208884 : unsigned regno0 = REGNO (op0), regno1 = REGNO (op1);
1386 : :
1387 : 9 : if (REGNO_OK_FOR_INDEX_P (regno1)
1388 : 208884 : && regno_ok_for_base_p (regno0, mode, as, PLUS, REG))
1389 : : index_op = 1;
1390 : 0 : else if (REGNO_OK_FOR_INDEX_P (regno0)
1391 : 9 : && regno_ok_for_base_p (regno1, mode, as, PLUS, REG))
1392 : : index_op = 0;
1393 : 0 : else if (regno_ok_for_base_p (regno0, mode, as, PLUS, REG)
1394 : 0 : || REGNO_OK_FOR_INDEX_P (regno1))
1395 : : index_op = 1;
1396 : 0 : else if (regno_ok_for_base_p (regno1, mode, as, PLUS, REG))
1397 : : index_op = 0;
1398 : : else
1399 : 208875 : index_op = 1;
1400 : :
1401 : 208884 : locI = &XEXP (x, index_op);
1402 : 208884 : locB = &XEXP (x, !index_op);
1403 : 208884 : index_code = GET_CODE (*locI);
1404 : : }
1405 : 31329 : else if (code0 == REG)
1406 : : {
1407 : 4475 : locI = &XEXP (x, 0);
1408 : 4475 : locB = &XEXP (x, 1);
1409 : 4475 : index_code = GET_CODE (*locI);
1410 : : }
1411 : 26854 : else if (code1 == REG)
1412 : : {
1413 : 26807 : locI = &XEXP (x, 1);
1414 : 26807 : locB = &XEXP (x, 0);
1415 : 26807 : index_code = GET_CODE (*locI);
1416 : : }
1417 : :
1418 : 2583031 : if (locI)
1419 : : {
1420 : 390262 : reg_class iclass = DEBUG_INSN_P (insn) ? ALL_REGS : INDEX_REG_CLASS;
1421 : 390262 : scan_rtx_address (insn, locI, iclass, action, mode, as);
1422 : : }
1423 : 2583078 : if (locB)
1424 : : {
1425 : 2583031 : reg_class bclass = base_reg_class_for_rename (insn, mode, as, PLUS,
1426 : : index_code);
1427 : 2583031 : scan_rtx_address (insn, locB, bclass, action, mode, as);
1428 : : }
1429 : : return;
1430 : : }
1431 : :
1432 : 125848 : case POST_INC:
1433 : 125848 : case POST_DEC:
1434 : 125848 : case POST_MODIFY:
1435 : 125848 : case PRE_INC:
1436 : 125848 : case PRE_DEC:
1437 : 125848 : case PRE_MODIFY:
1438 : : /* If the target doesn't claim to handle autoinc, this must be
1439 : : something special, like a stack push. Kill this chain. */
1440 : 125848 : if (!AUTO_INC_DEC)
1441 : 125848 : action = mark_all_read;
1442 : :
1443 : 125848 : break;
1444 : :
1445 : 2797 : case MEM:
1446 : 2797 : {
1447 : 2797 : reg_class bclass = base_reg_class_for_rename (insn, GET_MODE (x),
1448 : 2797 : MEM_ADDR_SPACE (x),
1449 : : MEM, SCRATCH);
1450 : 2797 : scan_rtx_address (insn, &XEXP (x, 0), bclass, action, GET_MODE (x),
1451 : 2797 : MEM_ADDR_SPACE (x));
1452 : : }
1453 : 2797 : return;
1454 : :
1455 : 3155437 : case REG:
1456 : 3155437 : scan_rtx_reg (insn, loc, cl, action, OP_IN);
1457 : 3155437 : return;
1458 : :
1459 : : default:
1460 : : break;
1461 : : }
1462 : :
1463 : 1232839 : fmt = GET_RTX_FORMAT (code);
1464 : 2761834 : for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1465 : : {
1466 : 1528995 : if (fmt[i] == 'e')
1467 : 579517 : scan_rtx_address (insn, &XEXP (x, i), cl, action, mode, as);
1468 : 949478 : else if (fmt[i] == 'E')
1469 : 3696 : for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1470 : 2014 : scan_rtx_address (insn, &XVECEXP (x, i, j), cl, action, mode, as);
1471 : : }
1472 : : }
1473 : :
1474 : : static void
1475 : 38482972 : scan_rtx (rtx_insn *insn, rtx *loc, enum reg_class cl, enum scan_actions action,
1476 : : enum op_type type)
1477 : : {
1478 : 46642658 : const char *fmt;
1479 : 46642658 : rtx x = *loc;
1480 : 46642658 : int i, j;
1481 : :
1482 : 46642658 : enum rtx_code code = GET_CODE (x);
1483 : 46642658 : switch (code)
1484 : : {
1485 : : case CONST:
1486 : : CASE_CONST_ANY:
1487 : : case SYMBOL_REF:
1488 : : case LABEL_REF:
1489 : : case PC:
1490 : : return;
1491 : :
1492 : 13924364 : case REG:
1493 : 13924364 : scan_rtx_reg (insn, loc, cl, action, type);
1494 : 13924364 : return;
1495 : :
1496 : 3791436 : case MEM:
1497 : 3791436 : {
1498 : 3791436 : reg_class bclass = base_reg_class_for_rename (insn, GET_MODE (x),
1499 : 3791436 : MEM_ADDR_SPACE (x),
1500 : : MEM, SCRATCH);
1501 : :
1502 : 3791436 : scan_rtx_address (insn, &XEXP (x, 0), bclass, action, GET_MODE (x),
1503 : 3791436 : MEM_ADDR_SPACE (x));
1504 : : }
1505 : 3791436 : return;
1506 : :
1507 : 6888943 : case SET:
1508 : 6888943 : scan_rtx (insn, &SET_SRC (x), cl, action, OP_IN);
1509 : 13777886 : scan_rtx (insn, &SET_DEST (x), cl, action,
1510 : 6888943 : (GET_CODE (PATTERN (insn)) == COND_EXEC
1511 : 0 : && verify_reg_tracked (SET_DEST (x))) ? OP_INOUT : OP_OUT);
1512 : 6888943 : return;
1513 : :
1514 : 4180 : case STRICT_LOW_PART:
1515 : 4180 : scan_rtx (insn, &XEXP (x, 0), cl, action,
1516 : 4180 : verify_reg_tracked (XEXP (x, 0)) ? OP_INOUT : OP_OUT);
1517 : 4180 : return;
1518 : :
1519 : 5662 : case ZERO_EXTRACT:
1520 : 5662 : case SIGN_EXTRACT:
1521 : 6812 : scan_rtx (insn, &XEXP (x, 0), cl, action,
1522 : : (type == OP_IN ? OP_IN :
1523 : 1150 : verify_reg_tracked (XEXP (x, 0)) ? OP_INOUT : OP_OUT));
1524 : 5662 : scan_rtx (insn, &XEXP (x, 1), cl, action, OP_IN);
1525 : 5662 : scan_rtx (insn, &XEXP (x, 2), cl, action, OP_IN);
1526 : 5662 : return;
1527 : :
1528 : 0 : case POST_INC:
1529 : 0 : case PRE_INC:
1530 : 0 : case POST_DEC:
1531 : 0 : case PRE_DEC:
1532 : 0 : case POST_MODIFY:
1533 : 0 : case PRE_MODIFY:
1534 : : /* Should only happen inside MEM. */
1535 : 0 : gcc_unreachable ();
1536 : :
1537 : 1076256 : case CLOBBER:
1538 : 2152512 : scan_rtx (insn, &SET_DEST (x), cl, action,
1539 : 1076256 : (GET_CODE (PATTERN (insn)) == COND_EXEC
1540 : 0 : && verify_reg_tracked (SET_DEST (x))) ? OP_INOUT : OP_OUT);
1541 : 1076256 : return;
1542 : :
1543 : 311386 : case EXPR_LIST:
1544 : 311386 : scan_rtx (insn, &XEXP (x, 0), cl, action, type);
1545 : 311386 : if (XEXP (x, 1))
1546 : 184645 : scan_rtx (insn, &XEXP (x, 1), cl, action, type);
1547 : : return;
1548 : :
1549 : 6682523 : default:
1550 : 6682523 : break;
1551 : : }
1552 : :
1553 : 6682523 : fmt = GET_RTX_FORMAT (code);
1554 : 18665594 : for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
1555 : : {
1556 : 11983071 : if (fmt[i] == 'e')
1557 : 10142806 : scan_rtx (insn, &XEXP (x, i), cl, action, type);
1558 : 1840265 : else if (fmt[i] == 'E')
1559 : 4274014 : for (j = XVECLEN (x, i) - 1; j >= 0; j--)
1560 : 2965528 : scan_rtx (insn, &XVECEXP (x, i, j), cl, action, type);
1561 : : }
1562 : : }
1563 : :
1564 : : /* Hide operands of the current insn (of which there are N_OPS) by
1565 : : substituting pc for them.
1566 : : Previous values are stored in the OLD_OPERANDS and OLD_DUPS.
1567 : : For every bit set in DO_NOT_HIDE, we leave the operand alone.
1568 : : If INOUT_AND_EC_ONLY is set, we only do this for OP_INOUT type operands
1569 : : and earlyclobbers. */
1570 : :
1571 : : static void
1572 : 14138488 : hide_operands (int n_ops, rtx *old_operands, rtx *old_dups,
1573 : : unsigned HOST_WIDE_INT do_not_hide, bool inout_and_ec_only)
1574 : : {
1575 : 14138488 : int i;
1576 : 14138488 : const operand_alternative *op_alt = which_op_alt ();
1577 : 59684056 : for (i = 0; i < n_ops; i++)
1578 : : {
1579 : 31407080 : old_operands[i] = recog_data.operand[i];
1580 : : /* Don't squash match_operator or match_parallel here, since
1581 : : we don't know that all of the contained registers are
1582 : : reachable by proper operands. */
1583 : 31407080 : if (recog_data.constraints[i][0] == '\0')
1584 : 5226300 : continue;
1585 : 26180780 : if (do_not_hide & (1 << i))
1586 : 1472 : continue;
1587 : 26179308 : if (!inout_and_ec_only || recog_data.operand_type[i] == OP_INOUT
1588 : 5330411 : || op_alt[i].earlyclobber)
1589 : 20848979 : *recog_data.operand_loc[i] = pc_rtx;
1590 : : }
1591 : 14474344 : for (i = 0; i < recog_data.n_dups; i++)
1592 : : {
1593 : 335856 : int opn = recog_data.dup_num[i];
1594 : 335856 : old_dups[i] = *recog_data.dup_loc[i];
1595 : 335856 : if (do_not_hide & (1 << opn))
1596 : 0 : continue;
1597 : 335856 : if (!inout_and_ec_only || recog_data.operand_type[opn] == OP_INOUT
1598 : 44413 : || op_alt[opn].earlyclobber)
1599 : 291443 : *recog_data.dup_loc[i] = pc_rtx;
1600 : : }
1601 : 14138488 : }
1602 : :
1603 : : /* Undo the substitution performed by hide_operands. INSN is the insn we
1604 : : are processing; the arguments are the same as in hide_operands. */
1605 : :
1606 : : static void
1607 : 14138488 : restore_operands (rtx_insn *insn, int n_ops, rtx *old_operands, rtx *old_dups)
1608 : : {
1609 : 14138488 : int i;
1610 : 14474344 : for (i = 0; i < recog_data.n_dups; i++)
1611 : 335856 : *recog_data.dup_loc[i] = old_dups[i];
1612 : 45545568 : for (i = 0; i < n_ops; i++)
1613 : 31407080 : *recog_data.operand_loc[i] = old_operands[i];
1614 : 14138488 : if (recog_data.n_dups)
1615 : 186640 : df_insn_rescan (insn);
1616 : 14138488 : }
1617 : :
1618 : : /* For each output operand of INSN, call scan_rtx to create a new
1619 : : open chain. Do this only for normal or earlyclobber outputs,
1620 : : depending on EARLYCLOBBER. If INSN_INFO is nonnull, use it to
1621 : : record information about the operands in the insn. */
1622 : :
1623 : : static void
1624 : 7069244 : record_out_operands (rtx_insn *insn, bool earlyclobber, insn_rr_info *insn_info)
1625 : : {
1626 : 7069244 : int n_ops = recog_data.n_operands;
1627 : 7069244 : const operand_alternative *op_alt = which_op_alt ();
1628 : :
1629 : 7069244 : int i;
1630 : :
1631 : 22940712 : for (i = 0; i < n_ops + recog_data.n_dups; i++)
1632 : : {
1633 : 15871468 : int opn = i < n_ops ? i : recog_data.dup_num[i - n_ops];
1634 : 15703540 : rtx *loc = (i < n_ops
1635 : 15871468 : ? recog_data.operand_loc[opn]
1636 : 167928 : : recog_data.dup_loc[i - n_ops]);
1637 : 15871468 : rtx op = *loc;
1638 : 15871468 : enum reg_class cl = alternative_class (op_alt, opn);
1639 : :
1640 : 15871468 : class du_head *prev_open;
1641 : :
1642 : 15871468 : if (recog_data.operand_type[opn] != OP_OUT
1643 : 3982952 : || op_alt[opn].earlyclobber != earlyclobber)
1644 : 13879992 : continue;
1645 : :
1646 : 1991476 : if (insn_info)
1647 : 0 : cur_operand = insn_info->op_info + i;
1648 : :
1649 : 1991476 : prev_open = open_chains;
1650 : 1991476 : if (earlyclobber)
1651 : 82 : scan_rtx (insn, loc, cl, terminate_write, OP_OUT);
1652 : 1991476 : scan_rtx (insn, loc, cl, mark_write, OP_OUT);
1653 : :
1654 : : /* ??? Many targets have output constraints on the SET_DEST
1655 : : of a call insn, which is stupid, since these are certainly
1656 : : ABI defined hard registers. For these, and for asm operands
1657 : : that originally referenced hard registers, we must record that
1658 : : the chain cannot be renamed. */
1659 : 1991476 : if (CALL_P (insn)
1660 : 1991476 : || (asm_noperands (PATTERN (insn)) > 0
1661 : 485 : && REG_P (op)
1662 : 267 : && REGNO (op) == ORIGINAL_REGNO (op)))
1663 : : {
1664 : 0 : if (prev_open != open_chains)
1665 : 0 : open_chains->cannot_rename = 1;
1666 : : }
1667 : : }
1668 : 7069244 : cur_operand = NULL;
1669 : 7069244 : }
1670 : :
1671 : : /* Build def/use chain. */
1672 : :
1673 : : static bool
1674 : 561660 : build_def_use (basic_block bb)
1675 : : {
1676 : 561660 : rtx_insn *insn;
1677 : 561660 : unsigned HOST_WIDE_INT untracked_operands;
1678 : :
1679 : 561660 : fail_current_block = false;
1680 : :
1681 : 5918702 : for (insn = BB_HEAD (bb); ; insn = NEXT_INSN (insn))
1682 : : {
1683 : 5918702 : if (NONDEBUG_INSN_P (insn))
1684 : : {
1685 : 3534622 : int n_ops;
1686 : 3534622 : rtx note;
1687 : 3534622 : rtx old_operands[MAX_RECOG_OPERANDS];
1688 : 3534622 : rtx old_dups[MAX_DUP_OPERANDS];
1689 : 3534622 : int i;
1690 : 3534622 : int predicated;
1691 : 3534622 : enum rtx_code set_code = SET;
1692 : 3534622 : enum rtx_code clobber_code = CLOBBER;
1693 : 3534622 : insn_rr_info *insn_info = NULL;
1694 : 3534622 : terminated_this_insn = NULL;
1695 : :
1696 : : /* Process the insn, determining its effect on the def-use
1697 : : chains and live hard registers. We perform the following
1698 : : steps with the register references in the insn, simulating
1699 : : its effect:
1700 : : (1) Deal with earlyclobber operands and CLOBBERs of non-operands
1701 : : by creating chains and marking hard regs live.
1702 : : (2) Any read outside an operand causes any chain it overlaps
1703 : : with to be marked unrenamable.
1704 : : (3) Any read inside an operand is added if there's already
1705 : : an open chain for it.
1706 : : (4) For any REG_DEAD note we find, close open chains that
1707 : : overlap it.
1708 : : (5) For any non-earlyclobber write we find, close open chains
1709 : : that overlap it.
1710 : : (6) For any non-earlyclobber write we find in an operand, make
1711 : : a new chain or mark the hard register as live.
1712 : : (7) For any REG_UNUSED, close any chains we just opened.
1713 : : (8) For any REG_CFA_RESTORE or REG_CFA_REGISTER, kill any chain
1714 : : containing its dest.
1715 : :
1716 : : We cannot deal with situations where we track a reg in one mode
1717 : : and see a reference in another mode; these will cause the chain
1718 : : to be marked unrenamable or even cause us to abort the entire
1719 : : basic block. */
1720 : :
1721 : 3534622 : extract_constrain_insn (insn);
1722 : 3534622 : preprocess_constraints (insn);
1723 : 3534622 : const operand_alternative *op_alt = which_op_alt ();
1724 : 3534622 : n_ops = recog_data.n_operands;
1725 : 3534622 : untracked_operands = 0;
1726 : :
1727 : 3534622 : if (insn_rr.exists ())
1728 : : {
1729 : 0 : insn_info = &insn_rr[INSN_UID (insn)];
1730 : 0 : insn_info->op_info = XOBNEWVEC (&rename_obstack, operand_rr_info,
1731 : : recog_data.n_operands);
1732 : 0 : memset (insn_info->op_info, 0,
1733 : 0 : sizeof (operand_rr_info) * recog_data.n_operands);
1734 : : }
1735 : :
1736 : : /* Simplify the code below by promoting OP_OUT to OP_INOUT in
1737 : : predicated instructions, but only for register operands
1738 : : that are already tracked, so that we can create a chain
1739 : : when the first SET makes a register live. */
1740 : :
1741 : 3534622 : predicated = GET_CODE (PATTERN (insn)) == COND_EXEC;
1742 : 11386392 : for (i = 0; i < n_ops; ++i)
1743 : : {
1744 : 7851770 : rtx op = recog_data.operand[i];
1745 : 7851770 : int matches = op_alt[i].matches;
1746 : 7851770 : if (matches >= 0 || op_alt[i].matched >= 0
1747 : 6643838 : || (predicated && recog_data.operand_type[i] == OP_OUT))
1748 : : {
1749 : 1207932 : recog_data.operand_type[i] = OP_INOUT;
1750 : : /* A special case to deal with instruction patterns that
1751 : : have matching operands with different modes. If we're
1752 : : not already tracking such a reg, we won't start here,
1753 : : and we must instead make sure to make the operand visible
1754 : : to the machinery that tracks hard registers. */
1755 : 1207932 : machine_mode i_mode = recog_data.operand_mode[i];
1756 : 1207932 : if (matches >= 0)
1757 : : {
1758 : 603966 : machine_mode matches_mode
1759 : : = recog_data.operand_mode[matches];
1760 : :
1761 : 603966 : if (maybe_ne (GET_MODE_SIZE (i_mode),
1762 : 603966 : GET_MODE_SIZE (matches_mode))
1763 : 603966 : && !verify_reg_in_set (op, &live_in_chains))
1764 : : {
1765 : 184 : untracked_operands |= 1 << i;
1766 : 184 : untracked_operands |= 1 << matches;
1767 : : }
1768 : : }
1769 : : }
1770 : : #ifdef STACK_REGS
1771 : 7851770 : if (regstack_completed
1772 : 0 : && REG_P (op)
1773 : 7851770 : && IN_RANGE (REGNO (op), FIRST_STACK_REG, LAST_STACK_REG))
1774 : 0 : untracked_operands |= 1 << i;
1775 : : #endif
1776 : : /* If there's an in-out operand with a register that is not
1777 : : being tracked at all yet, open a chain. */
1778 : 7851770 : if (recog_data.operand_type[i] == OP_INOUT
1779 : 1214784 : && !(untracked_operands & (1 << i))
1780 : 1214600 : && REG_P (op)
1781 : 9015504 : && !verify_reg_tracked (op))
1782 : 9 : create_new_chain (REGNO (op), REG_NREGS (op), NULL, NULL,
1783 : : NO_REGS);
1784 : : }
1785 : :
1786 : 3534622 : if (fail_current_block)
1787 : : break;
1788 : :
1789 : : /* Step 1a: Mark hard registers that are clobbered in this insn,
1790 : : outside an operand, as live. */
1791 : 3534622 : hide_operands (n_ops, old_operands, old_dups, untracked_operands,
1792 : : false);
1793 : 3534622 : note_stores (insn, note_sets_clobbers, &clobber_code);
1794 : 3534622 : restore_operands (insn, n_ops, old_operands, old_dups);
1795 : :
1796 : : /* Step 1b: Begin new chains for earlyclobbered writes inside
1797 : : operands. */
1798 : 3534622 : record_out_operands (insn, true, insn_info);
1799 : :
1800 : : /* Step 2: Mark chains for which we have reads outside operands
1801 : : as unrenamable.
1802 : : We do this by munging all operands into PC, and closing
1803 : : everything remaining. */
1804 : :
1805 : 3534622 : hide_operands (n_ops, old_operands, old_dups, untracked_operands,
1806 : : false);
1807 : 3534622 : scan_rtx (insn, &PATTERN (insn), NO_REGS, mark_all_read, OP_IN);
1808 : 3534622 : restore_operands (insn, n_ops, old_operands, old_dups);
1809 : :
1810 : : /* Step 2B: Can't rename function call argument registers. */
1811 : 3534622 : if (CALL_P (insn) && CALL_INSN_FUNCTION_USAGE (insn))
1812 : 126741 : scan_rtx (insn, &CALL_INSN_FUNCTION_USAGE (insn),
1813 : : NO_REGS, mark_all_read, OP_IN);
1814 : :
1815 : : /* Step 2C: Can't rename asm operands that were originally
1816 : : hard registers. */
1817 : 3534622 : if (asm_noperands (PATTERN (insn)) > 0)
1818 : 2736 : for (i = 0; i < n_ops; i++)
1819 : : {
1820 : 1848 : rtx *loc = recog_data.operand_loc[i];
1821 : 1848 : rtx op = *loc;
1822 : :
1823 : 1848 : if (REG_P (op)
1824 : 1299 : && REGNO (op) == ORIGINAL_REGNO (op)
1825 : 1849 : && (recog_data.operand_type[i] == OP_IN
1826 : 0 : || recog_data.operand_type[i] == OP_INOUT))
1827 : 1 : scan_rtx (insn, loc, NO_REGS, mark_all_read, OP_IN);
1828 : : }
1829 : :
1830 : : /* Step 3: Append to chains for reads inside operands. */
1831 : 11470356 : for (i = 0; i < n_ops + recog_data.n_dups; i++)
1832 : : {
1833 : 7935734 : int opn = i < n_ops ? i : recog_data.dup_num[i - n_ops];
1834 : 7851770 : rtx *loc = (i < n_ops
1835 : 7935734 : ? recog_data.operand_loc[opn]
1836 : 83964 : : recog_data.dup_loc[i - n_ops]);
1837 : 7935734 : enum reg_class cl = alternative_class (op_alt, opn);
1838 : 7935734 : enum op_type type = recog_data.operand_type[opn];
1839 : :
1840 : : /* Don't scan match_operand here, since we've no reg class
1841 : : information to pass down. Any operands that we could
1842 : : substitute in will be represented elsewhere. */
1843 : 7935734 : if (recog_data.constraints[opn][0] == '\0'
1844 : 6619713 : || untracked_operands & (1 << opn))
1845 : 1316389 : continue;
1846 : :
1847 : 6619345 : if (insn_info)
1848 : 0 : cur_operand = i == opn ? insn_info->op_info + i : NULL;
1849 : 6619345 : if (op_alt[opn].is_address)
1850 : 196816 : scan_rtx_address (insn, loc, cl, mark_read,
1851 : : VOIDmode, ADDR_SPACE_GENERIC);
1852 : : else
1853 : 6422529 : scan_rtx (insn, loc, cl, mark_read, type);
1854 : : }
1855 : 3534622 : cur_operand = NULL;
1856 : :
1857 : : /* Step 3B: Record updates for regs in REG_INC notes, and
1858 : : source regs in REG_FRAME_RELATED_EXPR notes. */
1859 : 6492660 : for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
1860 : 2958038 : if (REG_NOTE_KIND (note) == REG_INC
1861 : 2958038 : || REG_NOTE_KIND (note) == REG_FRAME_RELATED_EXPR)
1862 : 30 : scan_rtx (insn, &XEXP (note, 0), ALL_REGS, mark_read,
1863 : : OP_INOUT);
1864 : :
1865 : : /* Step 4: Close chains for registers that die here, unless
1866 : : the register is mentioned in a REG_UNUSED note. In that
1867 : : case we keep the chain open until step #7 below to ensure
1868 : : it conflicts with other output operands of this insn.
1869 : : See PR 52573. Arguably the insn should not have both
1870 : : notes; it has proven difficult to fix that without
1871 : : other undesirable side effects. */
1872 : 6492660 : for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
1873 : 2958038 : if (REG_NOTE_KIND (note) == REG_DEAD
1874 : 2958038 : && !find_regno_note (insn, REG_UNUSED, REGNO (XEXP (note, 0))))
1875 : : {
1876 : 1526548 : remove_from_hard_reg_set (&live_hard_regs,
1877 : 1526548 : GET_MODE (XEXP (note, 0)),
1878 : 1526548 : REGNO (XEXP (note, 0)));
1879 : 1526548 : scan_rtx (insn, &XEXP (note, 0), NO_REGS, terminate_dead,
1880 : : OP_IN);
1881 : : }
1882 : :
1883 : : /* Step 4B: If this is a call, any chain live at this point
1884 : : requires a caller-saved reg. */
1885 : 3534622 : if (CALL_P (insn))
1886 : : {
1887 : 140574 : function_abi callee_abi = insn_callee_abi (insn);
1888 : 140574 : class du_head *p;
1889 : 410906 : for (p = open_chains; p; p = p->next_chain)
1890 : : {
1891 : 270332 : p->call_abis |= (1 << callee_abi.id ());
1892 : 270332 : p->call_clobber_mask
1893 : 270332 : |= callee_abi.full_and_partial_reg_clobbers ();
1894 : 540664 : p->hard_conflicts |= callee_abi.full_reg_clobbers ();
1895 : : }
1896 : : }
1897 : :
1898 : : /* Step 5: Close open chains that overlap writes. Similar to
1899 : : step 2, we hide in-out operands, since we do not want to
1900 : : close these chains. We also hide earlyclobber operands,
1901 : : since we've opened chains for them in step 1, and earlier
1902 : : chains they would overlap with must have been closed at
1903 : : the previous insn at the latest, as such operands cannot
1904 : : possibly overlap with any input operands. */
1905 : :
1906 : 3534622 : hide_operands (n_ops, old_operands, old_dups, untracked_operands,
1907 : : true);
1908 : 3534622 : scan_rtx (insn, &PATTERN (insn), NO_REGS, terminate_write, OP_IN);
1909 : 3534622 : restore_operands (insn, n_ops, old_operands, old_dups);
1910 : :
1911 : : /* Step 6a: Mark hard registers that are set in this insn,
1912 : : outside an operand, as live. */
1913 : 3534622 : hide_operands (n_ops, old_operands, old_dups, untracked_operands,
1914 : : false);
1915 : 3534622 : note_stores (insn, note_sets_clobbers, &set_code);
1916 : 3534622 : restore_operands (insn, n_ops, old_operands, old_dups);
1917 : :
1918 : : /* Step 6b: Begin new chains for writes inside operands. */
1919 : 3534622 : record_out_operands (insn, false, insn_info);
1920 : :
1921 : : /* Step 6c: Record destination regs in REG_FRAME_RELATED_EXPR
1922 : : notes for update. */
1923 : 6492660 : for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
1924 : 2958038 : if (REG_NOTE_KIND (note) == REG_FRAME_RELATED_EXPR)
1925 : 30 : scan_rtx (insn, &XEXP (note, 0), ALL_REGS, mark_access,
1926 : : OP_INOUT);
1927 : :
1928 : : /* Step 7: Close chains for registers that were never
1929 : : really used here. */
1930 : 6492660 : for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
1931 : 2958038 : if (REG_NOTE_KIND (note) == REG_UNUSED)
1932 : : {
1933 : 539044 : remove_from_hard_reg_set (&live_hard_regs,
1934 : 539044 : GET_MODE (XEXP (note, 0)),
1935 : 539044 : REGNO (XEXP (note, 0)));
1936 : 539044 : scan_rtx (insn, &XEXP (note, 0), NO_REGS, terminate_dead,
1937 : : OP_IN);
1938 : : }
1939 : :
1940 : : /* Step 8: Kill the chains involving register restores. Those
1941 : : should restore _that_ register. Similar for REG_CFA_REGISTER. */
1942 : 6492660 : for (note = REG_NOTES (insn); note; note = XEXP (note, 1))
1943 : 2958038 : if (REG_NOTE_KIND (note) == REG_CFA_RESTORE
1944 : 2952700 : || REG_NOTE_KIND (note) == REG_CFA_REGISTER)
1945 : : {
1946 : 5338 : rtx *x = &XEXP (note, 0);
1947 : 5338 : if (!*x)
1948 : 0 : x = &PATTERN (insn);
1949 : 5338 : if (GET_CODE (*x) == PARALLEL)
1950 : 0 : x = &XVECEXP (*x, 0, 0);
1951 : 5338 : if (GET_CODE (*x) == SET)
1952 : 0 : x = &SET_DEST (*x);
1953 : 5338 : scan_rtx (insn, x, NO_REGS, mark_all_read, OP_IN);
1954 : : }
1955 : : }
1956 : 987774 : else if (DEBUG_BIND_INSN_P (insn)
1957 : 3037435 : && !VAR_LOC_UNKNOWN_P (INSN_VAR_LOCATION_LOC (insn)))
1958 : : {
1959 : 481922 : scan_rtx (insn, &INSN_VAR_LOCATION_LOC (insn),
1960 : : ALL_REGS, mark_read, OP_IN);
1961 : : }
1962 : 5918702 : if (insn == BB_END (bb))
1963 : : break;
1964 : 5357042 : }
1965 : :
1966 : 561660 : if (fail_current_block)
1967 : 0 : return false;
1968 : :
1969 : : return true;
1970 : : }
1971 : :
1972 : : /* Initialize the register renamer. If INSN_INFO is true, ensure that
1973 : : insn_rr is nonnull. */
1974 : : void
1975 : 22102 : regrename_init (bool insn_info)
1976 : : {
1977 : 22102 : gcc_obstack_init (&rename_obstack);
1978 : 22102 : insn_rr.create (0);
1979 : 22102 : if (insn_info)
1980 : 0 : insn_rr.safe_grow_cleared (get_max_uid (), true);
1981 : 22102 : }
1982 : :
1983 : : /* Free all global data used by the register renamer. */
1984 : : void
1985 : 22102 : regrename_finish (void)
1986 : : {
1987 : 22102 : insn_rr.release ();
1988 : 22102 : free_chain_data ();
1989 : 22102 : obstack_free (&rename_obstack, NULL);
1990 : 22102 : }
1991 : :
1992 : : /* Perform register renaming on the current function. */
1993 : :
1994 : : static unsigned int
1995 : 22102 : regrename_optimize (void)
1996 : : {
1997 : 22102 : df_set_flags (DF_LR_RUN_DCE);
1998 : 22102 : df_note_add_problem ();
1999 : 22102 : df_analyze ();
2000 : 22102 : df_set_flags (DF_DEFER_INSN_RESCAN);
2001 : :
2002 : 22102 : regrename_init (false);
2003 : :
2004 : 22102 : regrename_analyze (NULL, false);
2005 : :
2006 : 22102 : rename_chains ();
2007 : :
2008 : 22102 : regrename_finish ();
2009 : :
2010 : 22102 : return 0;
2011 : : }
2012 : :
2013 : : namespace {
2014 : :
2015 : : const pass_data pass_data_regrename =
2016 : : {
2017 : : RTL_PASS, /* type */
2018 : : "rnreg", /* name */
2019 : : OPTGROUP_NONE, /* optinfo_flags */
2020 : : TV_RENAME_REGISTERS, /* tv_id */
2021 : : 0, /* properties_required */
2022 : : 0, /* properties_provided */
2023 : : 0, /* properties_destroyed */
2024 : : 0, /* todo_flags_start */
2025 : : TODO_df_finish, /* todo_flags_finish */
2026 : : };
2027 : :
2028 : : class pass_regrename : public rtl_opt_pass
2029 : : {
2030 : : public:
2031 : 285689 : pass_regrename (gcc::context *ctxt)
2032 : 571378 : : rtl_opt_pass (pass_data_regrename, ctxt)
2033 : : {}
2034 : :
2035 : : /* opt_pass methods: */
2036 : 1481340 : bool gate (function *) final override
2037 : : {
2038 : 1481340 : return (optimize > 0 && (flag_rename_registers));
2039 : : }
2040 : :
2041 : 22102 : unsigned int execute (function *) final override
2042 : : {
2043 : 22102 : return regrename_optimize ();
2044 : : }
2045 : :
2046 : : }; // class pass_regrename
2047 : :
2048 : : } // anon namespace
2049 : :
2050 : : rtl_opt_pass *
2051 : 285689 : make_pass_regrename (gcc::context *ctxt)
2052 : : {
2053 : 285689 : return new pass_regrename (ctxt);
2054 : : }
|