diff options
author | Vladimir N. Makarov <vmakarov@redhat.com> | 2024-12-11 15:36:21 -0500 |
---|---|---|
committer | Vladimir N. Makarov <vmakarov@redhat.com> | 2024-12-11 15:36:38 -0500 |
commit | fca0ab08cd936464b152e9b45356f625eba27575 (patch) | |
tree | 9d0fefb2b5a45dc8cb3b726c9a0e1e09e8cf0390 /gcc/lra-int.h | |
parent | bbb7c53d32ece75ec0c336663ec37df9e63652d3 (diff) | |
download | gcc-fca0ab08cd936464b152e9b45356f625eba27575.zip gcc-fca0ab08cd936464b152e9b45356f625eba27575.tar.gz gcc-fca0ab08cd936464b152e9b45356f625eba27575.tar.bz2 |
[PR116778][LRA]: Check pseudos assigned to FP after rematerialization to build live ranges
This is a better fix of the PR permitting to avoid building live
ranges after rematerialization. It checks that FP can not be
eliminated now and that pseudos assigned to FP will be spilled. In
this case we need to build live ranges after rematerialization for
correct assignments of stack slots to spilled pseudos involved in
rematerialization.
gcc/ChangeLog:
PR rtl-optimization/116778
* ira-int.h (x_ira_class_hard_reg_index): Fix comment typo.
* lra-eliminations.cc (lra_fp_pseudo_p): New function.
* lra-int.h (lra_fp_pseudo_p): External declaration.
* lra-spills.cc (lra_need_for_spills_p): Fix formatting.
* lra.cc (lra): Use lra_fp_pseudo_p in lra_create_live_range after
lra_remat.
Diffstat (limited to 'gcc/lra-int.h')
-rw-r--r-- | gcc/lra-int.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/gcc/lra-int.h b/gcc/lra-int.h index 5f605c3..abee008 100644 --- a/gcc/lra-int.h +++ b/gcc/lra-int.h @@ -419,6 +419,7 @@ extern rtx lra_eliminate_regs_1 (rtx_insn *, rtx, machine_mode, bool, bool, poly_int64, bool); extern void eliminate_regs_in_insn (rtx_insn *insn, bool, bool, poly_int64); extern int lra_update_fp2sp_elimination (int *spilled_pseudos); +extern bool lra_fp_pseudo_p (void); extern void lra_eliminate (bool, bool); extern poly_int64 lra_update_sp_offset (rtx, poly_int64); |