1 /* Coalesce spilled pseudos.
2 Copyright (C) 2010-2018 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
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
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/>. */
22 /* This file contains a pass making some simple RTL code
23 transformations by coalescing pseudos to remove some move insns.
25 Spilling pseudos in LRA can create memory-memory moves. We should
26 remove potential memory-memory moves before the next constraint
27 pass because the constraint pass will generate additional insns for
28 such moves and all these insns will be hard to remove afterwards.
30 Here we coalesce only spilled pseudos. Coalescing non-spilled
31 pseudos (with different hard regs) might result in spilling
32 additional pseudos because of possible conflicts with other
33 non-spilled pseudos and, as a consequence, in more constraint
34 passes and even LRA infinite cycling. Trivial the same hard
35 register moves will be removed by subsequent compiler passes.
37 We don't coalesce special reload pseudos. It complicates LRA code
38 a lot without visible generated code improvement.
40 The pseudo live-ranges are used to find conflicting pseudos during
43 Most frequently executed moves is tried to be coalesced first. */
47 #include "coretypes.h"
52 #include "insn-config.h"
59 /* Arrays whose elements represent the first and the next pseudo
60 (regno) in the coalesced pseudos group to which given pseudo (its
61 regno is the index) belongs. The next of the last pseudo in the
62 group refers to the first pseudo in the group, in other words the
63 group is represented by a cyclic list. */
64 static int *first_coalesced_pseudo
, *next_coalesced_pseudo
;
66 /* The function is used to sort moves according to their execution
69 move_freq_compare_func (const void *v1p
, const void *v2p
)
71 rtx_insn
*mv1
= *(rtx_insn
* const *) v1p
;
72 rtx_insn
*mv2
= *(rtx_insn
* const *) v2p
;
75 pri1
= REG_FREQ_FROM_BB (BLOCK_FOR_INSN (mv1
));
76 pri2
= REG_FREQ_FROM_BB (BLOCK_FOR_INSN (mv2
));
80 /* If frequencies are equal, sort by moves, so that the results of
81 qsort leave nothing to chance. */
82 return (int) INSN_UID (mv1
) - (int) INSN_UID (mv2
);
85 /* Pseudos which go away after coalescing. */
86 static bitmap_head coalesced_pseudos_bitmap
;
88 /* Merge two sets of coalesced pseudos given correspondingly by
89 pseudos REGNO1 and REGNO2 (more accurately merging REGNO2 group
90 into REGNO1 group). Set up COALESCED_PSEUDOS_BITMAP. */
92 merge_pseudos (int regno1
, int regno2
)
94 int regno
, first
, first2
, last
, next
;
96 first
= first_coalesced_pseudo
[regno1
];
97 if ((first2
= first_coalesced_pseudo
[regno2
]) == first
)
99 for (last
= regno2
, regno
= next_coalesced_pseudo
[regno2
];;
100 regno
= next_coalesced_pseudo
[regno
])
102 first_coalesced_pseudo
[regno
] = first
;
103 bitmap_set_bit (&coalesced_pseudos_bitmap
, regno
);
108 next
= next_coalesced_pseudo
[first
];
109 next_coalesced_pseudo
[first
] = regno2
;
110 next_coalesced_pseudo
[last
] = next
;
111 lra_reg_info
[first
].live_ranges
112 = (lra_merge_live_ranges
113 (lra_reg_info
[first
].live_ranges
,
114 lra_copy_live_range_list (lra_reg_info
[first2
].live_ranges
)));
115 if (partial_subreg_p (lra_reg_info
[first
].biggest_mode
,
116 lra_reg_info
[first2
].biggest_mode
))
117 lra_reg_info
[first
].biggest_mode
= lra_reg_info
[first2
].biggest_mode
;
120 /* Change pseudos in *LOC on their coalescing group
123 substitute (rtx
*loc
)
130 if (*loc
== NULL_RTX
)
132 code
= GET_CODE (*loc
);
135 regno
= REGNO (*loc
);
136 if (regno
< FIRST_PSEUDO_REGISTER
137 || first_coalesced_pseudo
[regno
] == regno
)
139 *loc
= regno_reg_rtx
[first_coalesced_pseudo
[regno
]];
144 fmt
= GET_RTX_FORMAT (code
);
145 for (i
= GET_RTX_LENGTH (code
) - 1; i
>= 0; i
--)
149 if (substitute (&XEXP (*loc
, i
)))
152 else if (fmt
[i
] == 'E')
156 for (j
= XVECLEN (*loc
, i
) - 1; j
>= 0; j
--)
157 if (substitute (&XVECEXP (*loc
, i
, j
)))
164 /* Specialize "substitute" for use on an insn. This can't change
165 the insn ptr, just the contents of the insn. */
168 substitute_within_insn (rtx_insn
*insn
)
171 return substitute (&loc
);
174 /* The current iteration (1, 2, ...) of the coalescing pass. */
175 int lra_coalesce_iter
;
177 /* Return true if the move involving REGNO1 and REGNO2 is a potential
178 memory-memory move. */
180 mem_move_p (int regno1
, int regno2
)
182 return reg_renumber
[regno1
] < 0 && reg_renumber
[regno2
] < 0;
185 /* Pseudos used instead of the coalesced pseudos. */
186 static bitmap_head used_pseudos_bitmap
;
188 /* Set up USED_PSEUDOS_BITMAP, and update LR_BITMAP (a BB live info
191 update_live_info (bitmap lr_bitmap
)
196 bitmap_clear (&used_pseudos_bitmap
);
197 EXECUTE_IF_AND_IN_BITMAP (&coalesced_pseudos_bitmap
, lr_bitmap
,
198 FIRST_PSEUDO_REGISTER
, j
, bi
)
199 bitmap_set_bit (&used_pseudos_bitmap
, first_coalesced_pseudo
[j
]);
200 if (! bitmap_empty_p (&used_pseudos_bitmap
))
202 bitmap_and_compl_into (lr_bitmap
, &coalesced_pseudos_bitmap
);
203 bitmap_ior_into (lr_bitmap
, &used_pseudos_bitmap
);
207 /* Return true if pseudo REGNO can be potentially coalesced. */
209 coalescable_pseudo_p (int regno
)
211 lra_assert (regno
>= FIRST_PSEUDO_REGISTER
);
212 return (/* We don't want to coalesce regnos with equivalences, at
213 least without updating this info. */
214 ira_reg_equiv
[regno
].constant
== NULL_RTX
215 && ira_reg_equiv
[regno
].memory
== NULL_RTX
216 && ira_reg_equiv
[regno
].invariant
== NULL_RTX
);
219 /* The major function for aggressive pseudo coalescing of moves only
220 if the both pseudos were spilled and not special reload pseudos. */
225 rtx_insn
*mv
, *insn
, *next
, **sorted_moves
;
227 int i
, mv_num
, sregno
, dregno
;
229 int max_regno
= max_reg_num ();
230 bitmap_head involved_insns_bitmap
;
232 timevar_push (TV_LRA_COALESCE
);
234 if (lra_dump_file
!= NULL
)
235 fprintf (lra_dump_file
,
236 "\n********** Pseudos coalescing #%d: **********\n\n",
237 ++lra_coalesce_iter
);
238 first_coalesced_pseudo
= XNEWVEC (int, max_regno
);
239 next_coalesced_pseudo
= XNEWVEC (int, max_regno
);
240 for (i
= 0; i
< max_regno
; i
++)
241 first_coalesced_pseudo
[i
] = next_coalesced_pseudo
[i
] = i
;
242 sorted_moves
= XNEWVEC (rtx_insn
*, get_max_uid ());
246 FOR_EACH_BB_FN (bb
, cfun
)
248 FOR_BB_INSNS_SAFE (bb
, insn
, next
)
250 && (set
= single_set (insn
)) != NULL_RTX
251 && REG_P (SET_DEST (set
)) && REG_P (SET_SRC (set
))
252 && (sregno
= REGNO (SET_SRC (set
))) >= FIRST_PSEUDO_REGISTER
253 && (dregno
= REGNO (SET_DEST (set
))) >= FIRST_PSEUDO_REGISTER
254 && mem_move_p (sregno
, dregno
)
255 && coalescable_pseudo_p (sregno
) && coalescable_pseudo_p (dregno
)
256 && ! side_effects_p (set
)
257 && !(lra_intersected_live_ranges_p
258 (lra_reg_info
[sregno
].live_ranges
,
259 lra_reg_info
[dregno
].live_ranges
)))
260 sorted_moves
[mv_num
++] = insn
;
262 qsort (sorted_moves
, mv_num
, sizeof (rtx
), move_freq_compare_func
);
263 /* Coalesced copies, most frequently executed first. */
264 bitmap_initialize (&coalesced_pseudos_bitmap
, ®_obstack
);
265 bitmap_initialize (&involved_insns_bitmap
, ®_obstack
);
266 for (i
= 0; i
< mv_num
; i
++)
268 mv
= sorted_moves
[i
];
269 set
= single_set (mv
);
270 lra_assert (set
!= NULL
&& REG_P (SET_SRC (set
))
271 && REG_P (SET_DEST (set
)));
272 sregno
= REGNO (SET_SRC (set
));
273 dregno
= REGNO (SET_DEST (set
));
274 if (first_coalesced_pseudo
[sregno
] == first_coalesced_pseudo
[dregno
])
277 if (lra_dump_file
!= NULL
)
279 (lra_dump_file
, " Coalescing move %i:r%d-r%d (freq=%d)\n",
280 INSN_UID (mv
), sregno
, dregno
,
281 REG_FREQ_FROM_BB (BLOCK_FOR_INSN (mv
)));
282 /* We updated involved_insns_bitmap when doing the merge. */
284 else if (!(lra_intersected_live_ranges_p
285 (lra_reg_info
[first_coalesced_pseudo
[sregno
]].live_ranges
,
286 lra_reg_info
[first_coalesced_pseudo
[dregno
]].live_ranges
)))
289 if (lra_dump_file
!= NULL
)
292 " Coalescing move %i:r%d(%d)-r%d(%d) (freq=%d)\n",
293 INSN_UID (mv
), sregno
, ORIGINAL_REGNO (SET_SRC (set
)),
294 dregno
, ORIGINAL_REGNO (SET_DEST (set
)),
295 REG_FREQ_FROM_BB (BLOCK_FOR_INSN (mv
)));
296 bitmap_ior_into (&involved_insns_bitmap
,
297 &lra_reg_info
[sregno
].insn_bitmap
);
298 bitmap_ior_into (&involved_insns_bitmap
,
299 &lra_reg_info
[dregno
].insn_bitmap
);
300 merge_pseudos (sregno
, dregno
);
303 bitmap_initialize (&used_pseudos_bitmap
, ®_obstack
);
304 FOR_EACH_BB_FN (bb
, cfun
)
306 update_live_info (df_get_live_in (bb
));
307 update_live_info (df_get_live_out (bb
));
308 FOR_BB_INSNS_SAFE (bb
, insn
, next
)
310 && bitmap_bit_p (&involved_insns_bitmap
, INSN_UID (insn
)))
312 if (! substitute_within_insn (insn
))
314 lra_update_insn_regno_info (insn
);
315 if ((set
= single_set (insn
)) != NULL_RTX
&& set_noop_p (set
))
317 /* Coalesced move. */
318 if (lra_dump_file
!= NULL
)
319 fprintf (lra_dump_file
, " Removing move %i (freq=%d)\n",
321 REG_FREQ_FROM_BB (BLOCK_FOR_INSN (insn
)));
322 lra_set_insn_deleted (insn
);
326 /* If we have situation after inheritance pass:
328 r1 <- p1 insn originally setting p1
329 i1 <- r1 setting inheritance i1 from reload r1
331 ... <- ... p2 ... dead p2
337 And we are coalescing p1 and p2 using p1. In this case i1 and p1
338 should have different values, otherwise they can get the same
339 hard reg and this is wrong for insn using p2 before coalescing.
340 The situation even can be more complicated when new reload
341 pseudos occur after the inheriatnce. So invalidate the result
343 for (i
= 0; i
< max_regno
; i
++)
344 if (first_coalesced_pseudo
[i
] == i
345 && first_coalesced_pseudo
[i
] != next_coalesced_pseudo
[i
])
347 lra_set_regno_unique_value (i
);
348 if (lra_dump_file
!= NULL
)
349 fprintf (lra_dump_file
,
350 " Make unique value for coalescing result r%d\n", i
);
352 bitmap_clear (&used_pseudos_bitmap
);
353 bitmap_clear (&involved_insns_bitmap
);
354 bitmap_clear (&coalesced_pseudos_bitmap
);
355 if (lra_dump_file
!= NULL
&& coalesced_moves
!= 0)
356 fprintf (lra_dump_file
, "Coalesced Moves = %d\n", coalesced_moves
);
358 free (next_coalesced_pseudo
);
359 free (first_coalesced_pseudo
);
360 timevar_pop (TV_LRA_COALESCE
);
361 return coalesced_moves
!= 0;