Message ID | 871va9qifd.fsf@firetop.home |
---|---|
State | New |
Headers | show |
On 08/08/2010 10:37 AM, Richard Sandiford wrote: > Which brings me to a question. If it takes several consecutive > registers to store a particular mode, am I right in thinking that it is > the ALLOCNO_CONFLICT_HARD_REG_COSTS of the _first_ of those registers > (and only the first of those registers) that matters? For example. is > the cost of storing a quadword value in registers (4, 5, 6, 7) reflected > solely in ALLOCNO_CONFLICT_HARD_REG_COSTS (a)[4]? That looks to be how > the copy costs for hard registers works, and it seems to make conceptual > sense. Adding the cost for every register in the group would make an > overlapping register group like (5, 6, 7, 8) seem better than an > independent group like (8, 9, 10, 11), whereas I imagine the former > would often be worse (harder reloads). > > If the answer is "no, you're wrong", then the patch is wrong too. > But if the answer is "yes", then I'm puzzled why the code above is > looping at all. We've already established by this point (or at least, > are already confident enough to assume) that the operand needs a single > register. So why not just work out what that register is, and try to > calculate the corresponding register in the allocno's mode? > > You are completely right. > I realise this change probably conflicts with the ira improvements > branch, so I'm happy to sit on it until those changes go in. > But I think the same register-selection logic should apply regardless > of whether we're using cover classes. > > There will be only a tiny conflict on ira_get_register_move_cost part which I can easy resolve. > Either way, I'd like to apply the patch to 4.5 branch at some point, > since this is a regression from 4.4. > > > The patch is ok to commit to the trunk. Please, don't wait and apply the patch because I think ira-improv branch will be merged in 1-3 weeks. > gcc/ > PR rtl-optimization/43358 > * ira-lives.c (process_single_reg_class_operands): Adjust the costs > of a single hard register, using simplify_subreg_regno to decide > what that register should be. > Richard, thanks for working on the PR and providing the patch.
"Vladimir N. Makarov" <vmakarov@redhat.com> writes: > On 08/08/2010 10:37 AM, Richard Sandiford wrote: >> I realise this change probably conflicts with the ira improvements >> branch, so I'm happy to sit on it until those changes go in. >> But I think the same register-selection logic should apply regardless >> of whether we're using cover classes. >> > There will be only a tiny conflict on ira_get_register_move_cost part > which I can easy resolve. > >> Either way, I'd like to apply the patch to 4.5 branch at some point, >> since this is a regression from 4.4. >> > The patch is ok to commit to the trunk. Thanks Vlad, and sorry for the churn. Applied as 163249. I'll wait to see how things go before backporting to 4.5. I have a horrible feeling I'll be seeing a new PR number tomorrow morning... Richard
Index: gcc/ira-lives.c =================================================================== --- gcc/ira-lives.c 2010-08-08 10:35:06.000000000 +0100 +++ gcc/ira-lives.c 2010-08-08 10:35:08.000000000 +0100 @@ -896,7 +896,7 @@ ira_implicitly_set_insn_hard_regs (HARD_ static void process_single_reg_class_operands (bool in_p, int freq) { - int i, regno, cost; + int i, regno; unsigned int px; enum reg_class cl; rtx operand; @@ -923,32 +923,46 @@ process_single_reg_class_operands (bool if (REG_P (operand) && (regno = REGNO (operand)) >= FIRST_PSEUDO_REGISTER) { - enum machine_mode mode; enum reg_class cover_class; operand_a = ira_curr_regno_allocno_map[regno]; - mode = ALLOCNO_MODE (operand_a); cover_class = ALLOCNO_COVER_CLASS (operand_a); if (ira_class_subset_p[cl][cover_class] - && ira_class_hard_regs_num[cl] != 0 - && (ira_class_hard_reg_index[cover_class] - [ira_class_hard_regs[cl][0]]) >= 0 - && reg_class_size[cl] <= (unsigned) CLASS_MAX_NREGS (cl, mode)) + && ira_class_hard_regs_num[cl] != 0) { - int i, size; - cost - = (freq - * (in_p - ? ira_get_register_move_cost (mode, cover_class, cl) - : ira_get_register_move_cost (mode, cl, cover_class))); - ira_allocate_and_set_costs - (&ALLOCNO_CONFLICT_HARD_REG_COSTS (operand_a), cover_class, 0); - size = ira_reg_class_nregs[cover_class][mode]; - for (i = 0; i < size; i++) - ALLOCNO_CONFLICT_HARD_REG_COSTS (operand_a) - [ira_class_hard_reg_index - [cover_class][ira_class_hard_regs[cl][i]]] - -= cost; + /* View the desired allocation of OPERAND as: + + (REG:YMODE YREGNO), + + a simplification of: + + (subreg:YMODE (reg:XMODE XREGNO) OFFSET). */ + enum machine_mode ymode, xmode; + int xregno, yregno; + HOST_WIDE_INT offset; + + xmode = recog_data.operand_mode[i]; + xregno = ira_class_hard_regs[cl][0]; + ymode = ALLOCNO_MODE (operand_a); + offset = subreg_lowpart_offset (ymode, xmode); + yregno = simplify_subreg_regno (xregno, xmode, offset, ymode); + if (yregno >= 0 + && ira_class_hard_reg_index[cover_class][yregno] >= 0) + { + int cost; + + ira_allocate_and_set_costs + (&ALLOCNO_CONFLICT_HARD_REG_COSTS (operand_a), + cover_class, 0); + cost + = (freq + * (in_p + ? ira_get_register_move_cost (xmode, cover_class, cl) + : ira_get_register_move_cost (xmode, cl, + cover_class))); + ALLOCNO_CONFLICT_HARD_REG_COSTS (operand_a) + [ira_class_hard_reg_index[cover_class][yregno]] -= cost; + } } }