* gcc.dg/store-motion-fgcse-sm.c (dg-final): Cleanup
[official-gcc.git] / gcc / lra-remat.c
blob3b8a8069de9d85976a843fcfb1d81046ecbb883b
1 /* Rematerialize pseudos values.
2 Copyright (C) 2014 Free Software Foundation, Inc.
3 Contributed by Vladimir Makarov <vmakarov@redhat.com>.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
10 version.
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 for more details.
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
21 /* This code objective is to rematerialize spilled pseudo values. To
22 do this we calculate available insn candidates. The candidate is
23 available at some point if there is dominated set of insns with the
24 same pattern, the insn inputs are not dying or modified on any path
25 from the set, the outputs are not modified.
27 The insns containing memory or spilled pseudos (except for the
28 rematerialized pseudo) are not considered as such insns are not
29 profitable in comparison with regular loads of spilled pseudo
30 values. That simplifies the implementation as we don't need to
31 deal with memory aliasing.
33 To speed up available candidate calculation, we calculate partially
34 available candidates first and use them for initialization of the
35 availability. That is because (partial) availability sets are
36 sparse.
38 The rematerialization sub-pass could be improved further in the
39 following ways:
41 o We could make longer live ranges of inputs in the
42 rematerialization candidates if their hard registers are not used
43 for other purposes. This could be complicated if we need to
44 update BB live info information as LRA does not use
45 DF-infrastructure for compile-time reasons. This problem could
46 be overcome if constrain making live ranges longer only in BB/EBB
47 scope.
48 o We could use cost-based decision to choose rematerialization insn
49 (currently all insns without memory is can be used).
50 o We could use other free hard regs for unused output pseudos in
51 rematerialization candidates although such cases probably will
52 be very rare. */
55 #include "config.h"
56 #include "system.h"
57 #include "coretypes.h"
58 #include "tm.h"
59 #include "hard-reg-set.h"
60 #include "rtl.h"
61 #include "rtl-error.h"
62 #include "tm_p.h"
63 #include "target.h"
64 #include "insn-config.h"
65 #include "recog.h"
66 #include "output.h"
67 #include "regs.h"
68 #include "hashtab.h"
69 #include "hash-set.h"
70 #include "vec.h"
71 #include "machmode.h"
72 #include "input.h"
73 #include "function.h"
74 #include "expr.h"
75 #include "predict.h"
76 #include "dominance.h"
77 #include "cfg.h"
78 #include "basic-block.h"
79 #include "except.h"
80 #include "df.h"
81 #include "ira.h"
82 #include "sparseset.h"
83 #include "params.h"
84 #include "df.h"
85 #include "lra-int.h"
87 /* Number of candidates for rematerialization. */
88 static unsigned int cands_num;
90 /* The following is used for representation of call_used_reg_set in
91 form array whose elements are hard register numbers with nonzero bit
92 in CALL_USED_REG_SET. */
93 static int call_used_regs_arr_len;
94 static int call_used_regs_arr[FIRST_PSEUDO_REGISTER];
96 /* Bitmap used for different calculations. */
97 static bitmap_head temp_bitmap;
99 typedef struct cand *cand_t;
100 typedef const struct cand *const_cand_t;
102 /* Insn candidates for rematerialization. The candidate insn should
103 have the following properies:
104 o no any memory (as access to memory is non-profitable)
105 o no INOUT regs (it means no non-paradoxical subreg of output reg)
106 o one output spilled pseudo (or reload pseudo of a spilled pseudo)
107 o all other pseudos are with assigned hard regs. */
108 struct cand
110 /* Index of the candidates in all_cands. */
111 int index;
112 /* The candidate insn. */
113 rtx_insn *insn;
114 /* Insn pseudo regno for rematerialization. */
115 int regno;
116 /* Non-negative if a reload pseudo is in the insn instead of the
117 pseudo for rematerialization. */
118 int reload_regno;
119 /* Number of the operand containing the regno or its reload
120 regno. */
121 int nop;
122 /* Next candidate for the same regno. */
123 cand_t next_regno_cand;
126 /* Vector containing all candidates. */
127 static vec<cand_t> all_cands;
128 /* Map: insn -> candidate representing it. It is null if the insn can
129 not be used for rematerialization. */
130 static cand_t *insn_to_cand;
132 /* Map regno -> candidates can be used for the regno
133 rematerialization. */
134 static cand_t *regno_cands;
136 /* Data about basic blocks used for the rematerialization
137 sub-pass. */
138 struct remat_bb_data
140 /* Basic block about which the below data are. */
141 basic_block bb;
142 /* Registers changed in the basic block: */
143 bitmap_head changed_regs;
144 /* Registers becoming dead in the BB. */
145 bitmap_head dead_regs;
146 /* Cands present in the BB whose in/out regs are not changed after
147 the cands occurence and are not dead (except the reload
148 regno). */
149 bitmap_head gen_cands;
150 bitmap_head livein_cands; /* cands whose inputs live at the BB start. */
151 bitmap_head pavin_cands; /* cands partially available at BB entry. */
152 bitmap_head pavout_cands; /* cands partially available at BB exit. */
153 bitmap_head avin_cands; /* cands available at the entry of the BB. */
154 bitmap_head avout_cands; /* cands available at the exit of the BB. */
157 /* Array for all BB data. Indexed by the corresponding BB index. */
158 typedef struct remat_bb_data *remat_bb_data_t;
160 /* Basic blocks for data flow problems -- all bocks except the special
161 ones. */
162 static bitmap_head all_blocks;
164 /* All basic block data are referred through the following array. */
165 static remat_bb_data_t remat_bb_data;
167 /* Two small functions for access to the bb data. */
168 static inline remat_bb_data_t
169 get_remat_bb_data (basic_block bb)
171 return &remat_bb_data[(bb)->index];
174 static inline remat_bb_data_t
175 get_remat_bb_data_by_index (int index)
177 return &remat_bb_data[index];
182 /* Recursive hash function for RTL X. */
183 static hashval_t
184 rtx_hash (rtx x)
186 int i, j;
187 enum rtx_code code;
188 const char *fmt;
189 hashval_t val = 0;
191 if (x == 0)
192 return val;
194 code = GET_CODE (x);
195 val += (int) code + 4095;
197 /* Some RTL can be compared nonrecursively. */
198 switch (code)
200 case REG:
201 return val + REGNO (x);
203 case LABEL_REF:
204 return iterative_hash_object (XEXP (x, 0), val);
206 case SYMBOL_REF:
207 return iterative_hash_object (XSTR (x, 0), val);
209 case SCRATCH:
210 case CONST_DOUBLE:
211 case CONST_INT:
212 case CONST_VECTOR:
213 return val;
215 default:
216 break;
219 /* Hash the elements. */
220 fmt = GET_RTX_FORMAT (code);
221 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
223 switch (fmt[i])
225 case 'w':
226 val += XWINT (x, i);
227 break;
229 case 'n':
230 case 'i':
231 val += XINT (x, i);
232 break;
234 case 'V':
235 case 'E':
236 val += XVECLEN (x, i);
238 for (j = 0; j < XVECLEN (x, i); j++)
239 val += rtx_hash (XVECEXP (x, i, j));
240 break;
242 case 'e':
243 val += rtx_hash (XEXP (x, i));
244 break;
246 case 'S':
247 case 's':
248 val += htab_hash_string (XSTR (x, i));
249 break;
251 case 'u':
252 case '0':
253 case 't':
254 break;
256 /* It is believed that rtx's at this level will never
257 contain anything but integers and other rtx's, except for
258 within LABEL_REFs and SYMBOL_REFs. */
259 default:
260 abort ();
263 return val;
268 /* Hash table for the candidates. Different insns (e.g. structurally
269 the same insns or even insns with different unused output regs) can
270 be represented by the same candidate in the table. */
271 static htab_t cand_table;
273 /* Hash function for candidate CAND. */
274 static hashval_t
275 cand_hash (const void *cand)
277 const_cand_t c = (const_cand_t) cand;
278 lra_insn_recog_data_t id = lra_get_insn_recog_data (c->insn);
279 struct lra_static_insn_data *static_id = id->insn_static_data;
280 int nops = static_id->n_operands;
281 hashval_t hash = 0;
283 for (int i = 0; i < nops; i++)
284 if (i == c->nop)
285 hash = iterative_hash_object (c->regno, hash);
286 else if (static_id->operand[i].type == OP_IN)
287 hash = iterative_hash_object (*id->operand_loc[i], hash);
288 return hash;
291 /* Equal function for candidates CAND1 and CAND2. They are equal if
292 the corresponding candidate insns have the same code, the same
293 regno for rematerialization, the same input operands. */
294 static int
295 cand_eq_p (const void *cand1, const void *cand2)
297 const_cand_t c1 = (const_cand_t) cand1;
298 const_cand_t c2 = (const_cand_t) cand2;
299 lra_insn_recog_data_t id1 = lra_get_insn_recog_data (c1->insn);
300 lra_insn_recog_data_t id2 = lra_get_insn_recog_data (c2->insn);
301 struct lra_static_insn_data *static_id1 = id1->insn_static_data;
302 int nops = static_id1->n_operands;
304 if (c1->regno != c2->regno
305 || INSN_CODE (c1->insn) < 0
306 || INSN_CODE (c1->insn) != INSN_CODE (c2->insn))
307 return false;
308 gcc_assert (c1->nop == c2->nop);
309 for (int i = 0; i < nops; i++)
310 if (i != c1->nop && static_id1->operand[i].type == OP_IN
311 && *id1->operand_loc[i] != *id2->operand_loc[i])
312 return false;
313 return true;
316 /* Insert candidate CAND into the table if it is not there yet.
317 Return candidate which is in the table. */
318 static cand_t
319 insert_cand (cand_t cand)
321 void **entry_ptr;
323 entry_ptr = htab_find_slot (cand_table, cand, INSERT);
324 if (*entry_ptr == NULL)
325 *entry_ptr = (void *) cand;
326 return (cand_t) *entry_ptr;
329 /* Free candidate CAND memory. */
330 static void
331 free_cand (void *cand)
333 free (cand);
336 /* Initiate the candidate table. */
337 static void
338 initiate_cand_table (void)
340 cand_table = htab_create (8000, cand_hash, cand_eq_p,
341 (htab_del) free_cand);
344 /* Finish the candidate table. */
345 static void
346 finish_cand_table (void)
348 htab_delete (cand_table);
353 /* Return true if X contains memory or UNSPEC. We can not just check
354 insn operands as memory or unspec might be not an operand itself
355 but contain an operand. Insn with memory access is not profitable
356 for rematerialization. Rematerialization of UNSPEC might result in
357 wrong code generation as the UNPEC effect is unknown
358 (e.g. generating a label). */
359 static bool
360 bad_for_rematerialization_p (rtx x)
362 int i, j;
363 const char *fmt;
364 enum rtx_code code;
366 if (MEM_P (x) || GET_CODE (x) == UNSPEC)
367 return true;
368 code = GET_CODE (x);
369 fmt = GET_RTX_FORMAT (code);
370 for (i = GET_RTX_LENGTH (code) - 1; i >= 0; i--)
372 if (fmt[i] == 'e')
374 if (bad_for_rematerialization_p (XEXP (x, i)))
375 return true;
377 else if (fmt[i] == 'E')
379 for (j = XVECLEN (x, i) - 1; j >= 0; j--)
380 if (bad_for_rematerialization_p (XVECEXP (x, i, j)))
381 return true;
384 return false;
387 /* If INSN can not be used for rematerialization, return negative
388 value. If INSN can be considered as a candidate for
389 rematerialization, return value which is the operand number of the
390 pseudo for which the insn can be used for rematerialization. Here
391 we consider the insns without any memory, spilled pseudo (except
392 for the rematerialization pseudo), or dying or unused regs. */
393 static int
394 operand_to_remat (rtx_insn *insn)
396 lra_insn_recog_data_t id = lra_get_insn_recog_data (insn);
397 struct lra_static_insn_data *static_id = id->insn_static_data;
398 struct lra_insn_reg *reg, *found_reg = NULL;
400 /* First find a pseudo which can be rematerialized. */
401 for (reg = id->regs; reg != NULL; reg = reg->next)
402 /* True FRAME_POINTER_NEEDED might be because we can not follow
403 changing sp offsets, e.g. alloca is used. If the insn contains
404 stack pointer in such case, we can not rematerialize it as we
405 can not know sp offset at a rematerialization place. */
406 if (reg->regno == STACK_POINTER_REGNUM && frame_pointer_needed)
407 return -1;
408 else if (reg->type == OP_OUT && ! reg->subreg_p
409 && find_regno_note (insn, REG_UNUSED, reg->regno) == NULL)
411 /* We permits only one spilled reg. */
412 if (found_reg != NULL)
413 return -1;
414 found_reg = reg;
416 if (found_reg == NULL)
417 return -1;
418 if (found_reg->regno < FIRST_PSEUDO_REGISTER)
419 return -1;
420 if (bad_for_rematerialization_p (PATTERN (insn)))
421 return -1;
422 /* Check the other regs are not spilled. */
423 for (reg = id->regs; reg != NULL; reg = reg->next)
424 if (found_reg == reg)
425 continue;
426 else if (reg->type == OP_INOUT)
427 return -1;
428 else if (reg->regno >= FIRST_PSEUDO_REGISTER
429 && reg_renumber[reg->regno] < 0)
430 /* Another spilled reg. */
431 return -1;
432 else if (reg->type == OP_IN)
434 if (find_regno_note (insn, REG_DEAD, reg->regno) != NULL)
435 /* We don't want to make live ranges longer. */
436 return -1;
437 /* Check that there is no output reg as the input one. */
438 for (struct lra_insn_reg *reg2 = id->regs;
439 reg2 != NULL;
440 reg2 = reg2->next)
441 if (reg2->type == OP_OUT && reg->regno == reg2->regno)
442 return -1;
444 /* Find the rematerialization operand. */
445 int nop = static_id->n_operands;
446 for (int i = 0; i < nop; i++)
447 if (REG_P (*id->operand_loc[i])
448 && (int) REGNO (*id->operand_loc[i]) == found_reg->regno)
449 return i;
450 return -1;
453 /* Create candidate for INSN with rematerialization operand NOP and
454 REGNO. Insert the candidate into the table and set up the
455 corresponding INSN_TO_CAND element. */
456 static void
457 create_cand (rtx_insn *insn, int nop, int regno)
459 lra_insn_recog_data_t id = lra_get_insn_recog_data (insn);
460 rtx reg = *id->operand_loc[nop];
461 gcc_assert (REG_P (reg));
462 int op_regno = REGNO (reg);
463 gcc_assert (op_regno >= FIRST_PSEUDO_REGISTER);
464 cand_t cand = XNEW (struct cand);
465 cand->insn = insn;
466 cand->nop = nop;
467 cand->regno = regno;
468 cand->reload_regno = op_regno == regno ? -1 : op_regno;
469 gcc_assert (cand->regno >= 0);
470 cand_t cand_in_table = insert_cand (cand);
471 insn_to_cand[INSN_UID (insn)] = cand_in_table;
472 if (cand != cand_in_table)
473 free (cand);
474 else
476 /* A new cand. */
477 cand->index = all_cands.length ();
478 all_cands.safe_push (cand);
479 cand->next_regno_cand = regno_cands[cand->regno];
480 regno_cands[cand->regno] = cand;
484 /* Create rematerialization candidates (inserting them into the
485 table). */
486 static void
487 create_cands (void)
489 rtx_insn *insn;
490 struct potential_cand
492 rtx_insn *insn;
493 int nop;
495 struct potential_cand *regno_potential_cand;
497 /* Create candidates. */
498 regno_potential_cand = XCNEWVEC (struct potential_cand, max_reg_num ());
499 for (insn = get_insns (); insn; insn = NEXT_INSN (insn))
500 if (INSN_P (insn))
502 rtx set;
503 int src_regno, dst_regno;
504 rtx_insn *insn2;
505 lra_insn_recog_data_t id = lra_get_insn_recog_data (insn);
506 int nop = operand_to_remat (insn);
507 int regno = -1;
509 if ((set = single_set (insn)) != NULL
510 && REG_P (SET_SRC (set)) && REG_P (SET_DEST (set))
511 && (src_regno = REGNO (SET_SRC (set))) >= FIRST_PSEUDO_REGISTER
512 && (dst_regno = REGNO (SET_DEST (set))) >= FIRST_PSEUDO_REGISTER
513 && reg_renumber[dst_regno] < 0
514 && (insn2 = regno_potential_cand[src_regno].insn) != NULL
515 && BLOCK_FOR_INSN (insn2) == BLOCK_FOR_INSN (insn))
516 create_cand (insn2, regno_potential_cand[src_regno].nop, dst_regno);
517 if (nop < 0)
518 goto fail;
519 gcc_assert (REG_P (*id->operand_loc[nop]));
520 regno = REGNO (*id->operand_loc[nop]);
521 gcc_assert (regno >= FIRST_PSEUDO_REGISTER);
522 if (reg_renumber[regno] < 0)
523 create_cand (insn, nop, regno);
524 else
526 regno_potential_cand[regno].insn = insn;
527 regno_potential_cand[regno].nop = nop;
528 goto fail;
530 regno = -1;
531 fail:
532 for (struct lra_insn_reg *reg = id->regs; reg != NULL; reg = reg->next)
533 if (reg->type != OP_IN && reg->regno != regno
534 && reg->regno >= FIRST_PSEUDO_REGISTER)
535 regno_potential_cand[reg->regno].insn = NULL;
537 cands_num = all_cands.length ();
538 free (regno_potential_cand);
543 /* Create and initialize BB data. */
544 static void
545 create_remat_bb_data (void)
547 basic_block bb;
548 remat_bb_data_t bb_info;
550 remat_bb_data = XNEWVEC (struct remat_bb_data,
551 last_basic_block_for_fn (cfun));
552 FOR_ALL_BB_FN (bb, cfun)
554 #ifdef ENABLE_CHECKING
555 if (bb->index < 0 || bb->index >= last_basic_block_for_fn (cfun))
556 abort ();
557 #endif
558 bb_info = get_remat_bb_data (bb);
559 bb_info->bb = bb;
560 bitmap_initialize (&bb_info->changed_regs, &reg_obstack);
561 bitmap_initialize (&bb_info->dead_regs, &reg_obstack);
562 bitmap_initialize (&bb_info->gen_cands, &reg_obstack);
563 bitmap_initialize (&bb_info->livein_cands, &reg_obstack);
564 bitmap_initialize (&bb_info->pavin_cands, &reg_obstack);
565 bitmap_initialize (&bb_info->pavout_cands, &reg_obstack);
566 bitmap_initialize (&bb_info->avin_cands, &reg_obstack);
567 bitmap_initialize (&bb_info->avout_cands, &reg_obstack);
571 /* Dump all candidates to DUMP_FILE. */
572 static void
573 dump_cands (FILE *dump_file)
575 int i;
576 cand_t cand;
578 fprintf (dump_file, "\nCands:\n");
579 for (i = 0; i < (int) cands_num; i++)
581 cand = all_cands[i];
582 fprintf (dump_file, "%d (nop=%d, remat_regno=%d, reload_regno=%d):\n",
583 i, cand->nop, cand->regno, cand->reload_regno);
584 print_inline_rtx (dump_file, cand->insn, 6);
585 fprintf (dump_file, "\n");
589 /* Dump all candidates and BB data. */
590 static void
591 dump_candidates_and_remat_bb_data (void)
593 basic_block bb;
595 if (lra_dump_file == NULL)
596 return;
597 dump_cands (lra_dump_file);
598 FOR_EACH_BB_FN (bb, cfun)
600 fprintf (lra_dump_file, "\nBB %d:\n", bb->index);
601 /* Livein */
602 fprintf (lra_dump_file, " register live in:");
603 dump_regset (df_get_live_in (bb), lra_dump_file);
604 putc ('\n', lra_dump_file);
605 /* Liveout */
606 fprintf (lra_dump_file, " register live out:");
607 dump_regset (df_get_live_out (bb), lra_dump_file);
608 putc ('\n', lra_dump_file);
609 /* Changed/dead regs: */
610 fprintf (lra_dump_file, " changed regs:");
611 dump_regset (&get_remat_bb_data (bb)->changed_regs, lra_dump_file);
612 putc ('\n', lra_dump_file);
613 fprintf (lra_dump_file, " dead regs:");
614 dump_regset (&get_remat_bb_data (bb)->dead_regs, lra_dump_file);
615 putc ('\n', lra_dump_file);
616 lra_dump_bitmap_with_title ("cands generated in BB",
617 &get_remat_bb_data (bb)->gen_cands, bb->index);
618 lra_dump_bitmap_with_title ("livein cands in BB",
619 &get_remat_bb_data (bb)->livein_cands, bb->index);
620 lra_dump_bitmap_with_title ("pavin cands in BB",
621 &get_remat_bb_data (bb)->pavin_cands, bb->index);
622 lra_dump_bitmap_with_title ("pavout cands in BB",
623 &get_remat_bb_data (bb)->pavout_cands, bb->index);
624 lra_dump_bitmap_with_title ("avin cands in BB",
625 &get_remat_bb_data (bb)->avin_cands, bb->index);
626 lra_dump_bitmap_with_title ("avout cands in BB",
627 &get_remat_bb_data (bb)->avout_cands, bb->index);
631 /* Free all BB data. */
632 static void
633 finish_remat_bb_data (void)
635 basic_block bb;
637 FOR_EACH_BB_FN (bb, cfun)
639 bitmap_clear (&get_remat_bb_data (bb)->avout_cands);
640 bitmap_clear (&get_remat_bb_data (bb)->avin_cands);
641 bitmap_clear (&get_remat_bb_data (bb)->pavout_cands);
642 bitmap_clear (&get_remat_bb_data (bb)->pavin_cands);
643 bitmap_clear (&get_remat_bb_data (bb)->livein_cands);
644 bitmap_clear (&get_remat_bb_data (bb)->gen_cands);
645 bitmap_clear (&get_remat_bb_data (bb)->dead_regs);
646 bitmap_clear (&get_remat_bb_data (bb)->changed_regs);
648 free (remat_bb_data);
653 /* Update changed_regs and dead_regs of BB from INSN. */
654 static void
655 set_bb_regs (basic_block bb, rtx_insn *insn)
657 lra_insn_recog_data_t id = lra_get_insn_recog_data (insn);
658 struct lra_insn_reg *reg;
660 for (reg = id->regs; reg != NULL; reg = reg->next)
661 if (reg->type != OP_IN)
662 bitmap_set_bit (&get_remat_bb_data (bb)->changed_regs, reg->regno);
663 else
665 if (find_regno_note (insn, REG_DEAD, (unsigned) reg->regno) != NULL)
666 bitmap_set_bit (&get_remat_bb_data (bb)->dead_regs, reg->regno);
668 if (CALL_P (insn))
669 for (int i = 0; i < call_used_regs_arr_len; i++)
670 bitmap_set_bit (&get_remat_bb_data (bb)->dead_regs,
671 call_used_regs_arr[i]);
674 /* Calculate changed_regs and dead_regs for each BB. */
675 static void
676 calculate_local_reg_remat_bb_data (void)
678 basic_block bb;
679 rtx_insn *insn;
681 FOR_EACH_BB_FN (bb, cfun)
682 FOR_BB_INSNS (bb, insn)
683 if (INSN_P (insn))
684 set_bb_regs (bb, insn);
689 /* Return true if REGNO is an input operand of INSN. */
690 static bool
691 input_regno_present_p (rtx_insn *insn, int regno)
693 lra_insn_recog_data_t id = lra_get_insn_recog_data (insn);
694 struct lra_insn_reg *reg;
696 for (reg = id->regs; reg != NULL; reg = reg->next)
697 if (reg->type == OP_IN && reg->regno == regno)
698 return true;
699 return false;
702 /* Return true if a call used register is an input operand of INSN. */
703 static bool
704 call_used_input_regno_present_p (rtx_insn *insn)
706 lra_insn_recog_data_t id = lra_get_insn_recog_data (insn);
707 struct lra_insn_reg *reg;
709 for (reg = id->regs; reg != NULL; reg = reg->next)
710 if (reg->type == OP_IN && reg->regno <= FIRST_PSEUDO_REGISTER
711 && TEST_HARD_REG_BIT (call_used_reg_set, reg->regno))
712 return true;
713 return false;
716 /* Calculate livein_cands for each BB. */
717 static void
718 calculate_livein_cands (void)
720 basic_block bb;
722 FOR_EACH_BB_FN (bb, cfun)
724 bitmap livein_regs = df_get_live_in (bb);
725 bitmap livein_cands = &get_remat_bb_data (bb)->livein_cands;
726 for (unsigned int i = 0; i < cands_num; i++)
728 cand_t cand = all_cands[i];
729 lra_insn_recog_data_t id = lra_get_insn_recog_data (cand->insn);
730 struct lra_insn_reg *reg;
732 for (reg = id->regs; reg != NULL; reg = reg->next)
733 if (reg->type == OP_IN && ! bitmap_bit_p (livein_regs, reg->regno))
734 break;
735 if (reg == NULL)
736 bitmap_set_bit (livein_cands, i);
741 /* Calculate gen_cands for each BB. */
742 static void
743 calculate_gen_cands (void)
745 basic_block bb;
746 bitmap gen_cands;
747 bitmap_head gen_insns;
748 rtx_insn *insn;
750 bitmap_initialize (&gen_insns, &reg_obstack);
751 FOR_EACH_BB_FN (bb, cfun)
753 gen_cands = &get_remat_bb_data (bb)->gen_cands;
754 bitmap_clear (&gen_insns);
755 FOR_BB_INSNS (bb, insn)
756 if (INSN_P (insn))
758 lra_insn_recog_data_t id = lra_get_insn_recog_data (insn);
759 struct lra_insn_reg *reg;
760 unsigned int uid;
761 bitmap_iterator bi;
762 cand_t cand;
763 rtx set;
764 int src_regno = -1, dst_regno = -1;
766 if ((set = single_set (insn)) != NULL
767 && REG_P (SET_SRC (set)) && REG_P (SET_DEST (set)))
769 src_regno = REGNO (SET_SRC (set));
770 dst_regno = REGNO (SET_DEST (set));
773 /* Update gen_cands: */
774 bitmap_clear (&temp_bitmap);
775 for (reg = id->regs; reg != NULL; reg = reg->next)
776 if (reg->type != OP_IN
777 || find_regno_note (insn, REG_DEAD, reg->regno) != NULL)
778 EXECUTE_IF_SET_IN_BITMAP (&gen_insns, 0, uid, bi)
780 rtx_insn *insn2 = lra_insn_recog_data[uid]->insn;
782 cand = insn_to_cand[INSN_UID (insn2)];
783 gcc_assert (cand != NULL);
784 /* Ignore the reload insn. */
785 if (src_regno == cand->reload_regno
786 && dst_regno == cand->regno)
787 continue;
788 if (cand->regno == reg->regno
789 || input_regno_present_p (insn2, reg->regno))
791 bitmap_clear_bit (gen_cands, cand->index);
792 bitmap_set_bit (&temp_bitmap, uid);
796 if (CALL_P (insn))
797 EXECUTE_IF_SET_IN_BITMAP (&gen_insns, 0, uid, bi)
799 rtx_insn *insn2 = lra_insn_recog_data[uid]->insn;
801 cand = insn_to_cand[INSN_UID (insn2)];
802 gcc_assert (cand != NULL);
803 if (call_used_input_regno_present_p (insn2))
805 bitmap_clear_bit (gen_cands, cand->index);
806 bitmap_set_bit (&temp_bitmap, uid);
809 bitmap_and_compl_into (&gen_insns, &temp_bitmap);
811 cand = insn_to_cand[INSN_UID (insn)];
812 if (cand != NULL)
814 bitmap_set_bit (gen_cands, cand->index);
815 bitmap_set_bit (&gen_insns, INSN_UID (insn));
819 bitmap_clear (&gen_insns);
824 /* The common transfer function used by the DF equation solver to
825 propagate (partial) availability info BB_IN to BB_OUT through block
826 with BB_INDEX according to the following equation:
828 bb.out = ((bb.in & bb.livein) - bb.killed) OR bb.gen
830 static bool
831 cand_trans_fun (int bb_index, bitmap bb_in, bitmap bb_out)
833 remat_bb_data_t bb_info;
834 bitmap bb_livein, bb_changed_regs, bb_dead_regs;
835 unsigned int cid;
836 bitmap_iterator bi;
838 bb_info = get_remat_bb_data_by_index (bb_index);
839 bb_livein = &bb_info->livein_cands;
840 bb_changed_regs = &bb_info->changed_regs;
841 bb_dead_regs = &bb_info->dead_regs;
842 /* Calculate killed avin cands -- cands whose regs are changed or
843 becoming dead in the BB. We calculate it here as we hope that
844 repeated calculations are compensated by smaller size of BB_IN in
845 comparison with all candidates number. */
846 bitmap_clear (&temp_bitmap);
847 EXECUTE_IF_SET_IN_BITMAP (bb_in, 0, cid, bi)
849 cand_t cand = all_cands[cid];
850 lra_insn_recog_data_t id = lra_get_insn_recog_data (cand->insn);
851 struct lra_insn_reg *reg;
853 if (! bitmap_bit_p (bb_livein, cid))
855 bitmap_set_bit (&temp_bitmap, cid);
856 continue;
858 for (reg = id->regs; reg != NULL; reg = reg->next)
859 /* Ignore all outputs which are not the regno for
860 rematerialization. */
861 if (reg->type == OP_OUT && reg->regno != cand->regno)
862 continue;
863 else if (bitmap_bit_p (bb_changed_regs, reg->regno)
864 || bitmap_bit_p (bb_dead_regs, reg->regno))
866 bitmap_set_bit (&temp_bitmap, cid);
867 break;
869 /* Check regno for rematerialization. */
870 if (bitmap_bit_p (bb_changed_regs, cand->regno)
871 || bitmap_bit_p (bb_dead_regs, cand->regno))
872 bitmap_set_bit (&temp_bitmap, cid);
874 return bitmap_ior_and_compl (bb_out,
875 &bb_info->gen_cands, bb_in, &temp_bitmap);
880 /* The transfer function used by the DF equation solver to propagate
881 partial candidate availability info through block with BB_INDEX
882 according to the following equation:
884 bb.pavout = ((bb.pavin & bb.livein) - bb.killed) OR bb.gen
886 static bool
887 cand_pav_trans_fun (int bb_index)
889 remat_bb_data_t bb_info;
891 bb_info = get_remat_bb_data_by_index (bb_index);
892 return cand_trans_fun (bb_index, &bb_info->pavin_cands,
893 &bb_info->pavout_cands);
896 /* The confluence function used by the DF equation solver to set up
897 cand_pav info for a block BB without predecessor. */
898 static void
899 cand_pav_con_fun_0 (basic_block bb)
901 bitmap_clear (&get_remat_bb_data (bb)->pavin_cands);
904 /* The confluence function used by the DF equation solver to propagate
905 partial candidate availability info from predecessor to successor
906 on edge E (pred->bb) according to the following equation:
908 bb.pavin_cands = 0 for entry block | OR (pavout_cands of predecessors)
910 static bool
911 cand_pav_con_fun_n (edge e)
913 basic_block pred = e->src;
914 basic_block bb = e->dest;
915 remat_bb_data_t bb_info;
916 bitmap bb_pavin, pred_pavout;
918 bb_info = get_remat_bb_data (bb);
919 bb_pavin = &bb_info->pavin_cands;
920 pred_pavout = &get_remat_bb_data (pred)->pavout_cands;
921 return bitmap_ior_into (bb_pavin, pred_pavout);
926 /* The transfer function used by the DF equation solver to propagate
927 candidate availability info through block with BB_INDEX according
928 to the following equation:
930 bb.avout = ((bb.avin & bb.livein) - bb.killed) OR bb.gen
932 static bool
933 cand_av_trans_fun (int bb_index)
935 remat_bb_data_t bb_info;
937 bb_info = get_remat_bb_data_by_index (bb_index);
938 return cand_trans_fun (bb_index, &bb_info->avin_cands,
939 &bb_info->avout_cands);
942 /* The confluence function used by the DF equation solver to set up
943 cand_av info for a block BB without predecessor. */
944 static void
945 cand_av_con_fun_0 (basic_block bb)
947 bitmap_clear (&get_remat_bb_data (bb)->avin_cands);
950 /* The confluence function used by the DF equation solver to propagate
951 cand_av info from predecessor to successor on edge E (pred->bb)
952 according to the following equation:
954 bb.avin_cands = 0 for entry block | AND (avout_cands of predecessors)
956 static bool
957 cand_av_con_fun_n (edge e)
959 basic_block pred = e->src;
960 basic_block bb = e->dest;
961 remat_bb_data_t bb_info;
962 bitmap bb_avin, pred_avout;
964 bb_info = get_remat_bb_data (bb);
965 bb_avin = &bb_info->avin_cands;
966 pred_avout = &get_remat_bb_data (pred)->avout_cands;
967 return bitmap_and_into (bb_avin, pred_avout);
970 /* Calculate available candidates for each BB. */
971 static void
972 calculate_global_remat_bb_data (void)
974 basic_block bb;
976 df_simple_dataflow
977 (DF_FORWARD, NULL, cand_pav_con_fun_0, cand_pav_con_fun_n,
978 cand_pav_trans_fun, &all_blocks,
979 df_get_postorder (DF_FORWARD), df_get_n_blocks (DF_FORWARD));
980 /* Initialize avin by pavin. */
981 FOR_EACH_BB_FN (bb, cfun)
982 bitmap_copy (&get_remat_bb_data (bb)->avin_cands,
983 &get_remat_bb_data (bb)->pavin_cands);
984 df_simple_dataflow
985 (DF_FORWARD, NULL, cand_av_con_fun_0, cand_av_con_fun_n,
986 cand_av_trans_fun, &all_blocks,
987 df_get_postorder (DF_FORWARD), df_get_n_blocks (DF_FORWARD));
992 /* Setup sp offset attribute to SP_OFFSET for all INSNS. */
993 static void
994 change_sp_offset (rtx_insn *insns, HOST_WIDE_INT sp_offset)
996 for (rtx_insn *insn = insns; insn != NULL; insn = NEXT_INSN (insn))
997 eliminate_regs_in_insn (insn, false, false, sp_offset);
1000 /* Return start hard register of REG (can be a hard or a pseudo reg)
1001 or -1 (if it is a spilled pseudo). Return number of hard registers
1002 occupied by REG through parameter NREGS if the start hard reg is
1003 not negative. */
1004 static int
1005 get_hard_regs (struct lra_insn_reg *reg, int &nregs)
1007 int regno = reg->regno;
1008 int hard_regno = regno < FIRST_PSEUDO_REGISTER ? regno : reg_renumber[regno];
1010 if (hard_regno >= 0)
1011 nregs = hard_regno_nregs[hard_regno][reg->biggest_mode];
1012 return hard_regno;
1015 /* Insert rematerialization insns using the data-flow data calculated
1016 earlier. */
1017 static bool
1018 do_remat (void)
1020 rtx_insn *insn;
1021 basic_block bb;
1022 bitmap_head avail_cands;
1023 bool changed_p = false;
1024 /* Living hard regs and hard registers of living pseudos. */
1025 HARD_REG_SET live_hard_regs;
1027 bitmap_initialize (&avail_cands, &reg_obstack);
1028 FOR_EACH_BB_FN (bb, cfun)
1030 REG_SET_TO_HARD_REG_SET (live_hard_regs, df_get_live_out (bb));
1031 bitmap_and (&avail_cands, &get_remat_bb_data (bb)->avin_cands,
1032 &get_remat_bb_data (bb)->livein_cands);
1033 FOR_BB_INSNS (bb, insn)
1035 if (!NONDEBUG_INSN_P (insn))
1036 continue;
1038 lra_insn_recog_data_t id = lra_get_insn_recog_data (insn);
1039 struct lra_static_insn_data *static_id = id->insn_static_data;
1040 struct lra_insn_reg *reg;
1041 cand_t cand;
1042 unsigned int cid;
1043 bitmap_iterator bi;
1044 rtx set;
1045 int src_regno = -1, dst_regno = -1;
1047 if ((set = single_set (insn)) != NULL
1048 && REG_P (SET_SRC (set)) && REG_P (SET_DEST (set)))
1050 src_regno = REGNO (SET_SRC (set));
1051 dst_regno = REGNO (SET_DEST (set));
1054 cand = NULL;
1055 /* Check possibility of rematerialization (hard reg or
1056 unpsilled pseudo <- spilled pseudo): */
1057 if (dst_regno >= 0 && src_regno >= FIRST_PSEUDO_REGISTER
1058 && reg_renumber[src_regno] < 0
1059 && (dst_regno < FIRST_PSEUDO_REGISTER
1060 || reg_renumber[dst_regno] >= 0))
1062 for (cand = regno_cands[src_regno];
1063 cand != NULL;
1064 cand = cand->next_regno_cand)
1065 if (bitmap_bit_p (&avail_cands, cand->index))
1066 break;
1068 int i, hard_regno, nregs;
1069 rtx_insn *remat_insn = NULL;
1070 HOST_WIDE_INT cand_sp_offset = 0;
1071 if (cand != NULL)
1073 lra_insn_recog_data_t cand_id
1074 = lra_get_insn_recog_data (cand->insn);
1075 struct lra_static_insn_data *static_cand_id
1076 = cand_id->insn_static_data;
1077 rtx saved_op = *cand_id->operand_loc[cand->nop];
1079 /* Check clobbers do not kill something living. */
1080 gcc_assert (REG_P (saved_op));
1081 int ignore_regno = REGNO (saved_op);
1083 for (reg = cand_id->regs; reg != NULL; reg = reg->next)
1084 if (reg->type != OP_IN && reg->regno != ignore_regno)
1086 hard_regno = get_hard_regs (reg, nregs);
1087 gcc_assert (hard_regno >= 0);
1088 for (i = 0; i < nregs; i++)
1089 if (TEST_HARD_REG_BIT (live_hard_regs, hard_regno + i))
1090 break;
1091 if (i < nregs)
1092 break;
1095 if (reg == NULL)
1097 for (reg = static_cand_id->hard_regs;
1098 reg != NULL;
1099 reg = reg->next)
1100 if (reg->type != OP_IN
1101 && TEST_HARD_REG_BIT (live_hard_regs, reg->regno))
1102 break;
1105 if (reg == NULL)
1107 *cand_id->operand_loc[cand->nop] = SET_DEST (set);
1108 lra_update_insn_regno_info (cand->insn);
1109 bool ok_p = lra_constrain_insn (cand->insn);
1110 if (ok_p)
1112 rtx remat_pat = copy_insn (PATTERN (cand->insn));
1114 start_sequence ();
1115 emit_insn (remat_pat);
1116 remat_insn = get_insns ();
1117 end_sequence ();
1118 if (recog_memoized (remat_insn) < 0)
1119 remat_insn = NULL;
1120 cand_sp_offset = cand_id->sp_offset;
1122 *cand_id->operand_loc[cand->nop] = saved_op;
1123 lra_update_insn_regno_info (cand->insn);
1127 bitmap_clear (&temp_bitmap);
1128 /* Update avail_cands (see analogous code for
1129 calculate_gen_cands). */
1130 for (reg = id->regs; reg != NULL; reg = reg->next)
1131 if (reg->type != OP_IN
1132 || find_regno_note (insn, REG_DEAD, reg->regno) != NULL)
1133 EXECUTE_IF_SET_IN_BITMAP (&avail_cands, 0, cid, bi)
1135 cand = all_cands[cid];
1137 /* Ignore the reload insn. */
1138 if (src_regno == cand->reload_regno
1139 && dst_regno == cand->regno)
1140 continue;
1141 if (cand->regno == reg->regno
1142 || input_regno_present_p (cand->insn, reg->regno))
1143 bitmap_set_bit (&temp_bitmap, cand->index);
1146 if (CALL_P (insn))
1147 EXECUTE_IF_SET_IN_BITMAP (&avail_cands, 0, cid, bi)
1149 cand = all_cands[cid];
1151 if (call_used_input_regno_present_p (cand->insn))
1152 bitmap_set_bit (&temp_bitmap, cand->index);
1155 bitmap_and_compl_into (&avail_cands, &temp_bitmap);
1156 if ((cand = insn_to_cand[INSN_UID (insn)]) != NULL)
1157 bitmap_set_bit (&avail_cands, cand->index);
1159 if (remat_insn != NULL)
1161 HOST_WIDE_INT sp_offset_change = cand_sp_offset - id->sp_offset;
1162 if (sp_offset_change != 0)
1163 change_sp_offset (remat_insn, sp_offset_change);
1164 lra_process_new_insns (insn, remat_insn, NULL,
1165 "Inserting rematerialization insn");
1166 lra_set_insn_deleted (insn);
1167 changed_p = true;
1168 continue;
1171 /* Update live hard regs: */
1172 for (reg = id->regs; reg != NULL; reg = reg->next)
1173 if (reg->type == OP_IN
1174 && find_regno_note (insn, REG_DEAD, reg->regno) != NULL)
1176 if ((hard_regno = get_hard_regs (reg, nregs)) < 0)
1177 continue;
1178 for (i = 0; i < nregs; i++)
1179 CLEAR_HARD_REG_BIT (live_hard_regs, hard_regno + i);
1181 else if (reg->type != OP_IN
1182 && find_regno_note (insn, REG_UNUSED, reg->regno) == NULL)
1184 if ((hard_regno = get_hard_regs (reg, nregs)) < 0)
1185 continue;
1186 for (i = 0; i < nregs; i++)
1187 SET_HARD_REG_BIT (live_hard_regs, hard_regno + i);
1189 /* Process also hard regs (e.g. CC register) which are part
1190 of insn definition. */
1191 for (reg = static_id->hard_regs; reg != NULL; reg = reg->next)
1192 if (reg->type == OP_IN
1193 && find_regno_note (insn, REG_DEAD, reg->regno) != NULL)
1194 CLEAR_HARD_REG_BIT (live_hard_regs, reg->regno);
1195 else if (reg->type != OP_IN
1196 && find_regno_note (insn, REG_UNUSED, reg->regno) == NULL)
1197 SET_HARD_REG_BIT (live_hard_regs, reg->regno);
1200 bitmap_clear (&avail_cands);
1201 return changed_p;
1206 /* Entry point of the rematerialization sub-pass. Return true if we
1207 did any rematerialization. */
1208 bool
1209 lra_remat (void)
1211 basic_block bb;
1212 bool result;
1213 int max_regno = max_reg_num ();
1215 if (! flag_lra_remat)
1216 return false;
1217 timevar_push (TV_LRA_REMAT);
1218 insn_to_cand = XCNEWVEC (cand_t, get_max_uid ());
1219 regno_cands = XCNEWVEC (cand_t, max_regno);
1220 all_cands.create (8000);
1221 call_used_regs_arr_len = 0;
1222 for (int i = 0; i < FIRST_PSEUDO_REGISTER; i++)
1223 if (call_used_regs[i])
1224 call_used_regs_arr[call_used_regs_arr_len++] = i;
1225 initiate_cand_table ();
1226 create_cands ();
1227 create_remat_bb_data ();
1228 bitmap_initialize (&temp_bitmap, &reg_obstack);
1229 calculate_local_reg_remat_bb_data ();
1230 calculate_livein_cands ();
1231 calculate_gen_cands ();
1232 bitmap_initialize (&all_blocks, &reg_obstack);
1233 FOR_ALL_BB_FN (bb, cfun)
1234 bitmap_set_bit (&all_blocks, bb->index);
1235 calculate_global_remat_bb_data ();
1236 dump_candidates_and_remat_bb_data ();
1237 result = do_remat ();
1238 all_cands.release ();
1239 bitmap_clear (&temp_bitmap);
1240 finish_remat_bb_data ();
1241 finish_cand_table ();
1242 bitmap_clear (&all_blocks);
1243 free (regno_cands);
1244 free (insn_to_cand);
1245 timevar_pop (TV_LRA_REMAT);
1246 return result;