On Fri, Aug 09, 2019 at 04:19:38PM +0100, Richard Sandiford wrote: > > Can't we have a CLOBBER also for the RESULT_DECL var in some cases and > > on some paths and thus shouldn't we track the RESULT_DECL in > > compute_live_vars/live_vars_at_stmt > > in addition to the local vars (sure, tree-ssa-live.c would need to change > > the two spots where it tests VAR_P to VAR_P || == RESULT_DECL)? > > Have you got an example of the kind of case in which that would cause > problems? If the RESULT_DECL isn't read by the tail call candidate, > then it should be OK for the candidate to write to and potentially > clobber the RESULT_DECL as it goes along, just like it would for > any other call.
I don't, I just wasn't sure if it can happen or not. Maybe it can't and would prevent NVR or NVRO from happening. I guess in my next bootstrap I'll add some statistic gathering code if there are ever any gimple_clobber_p stmts with RESULT_DECL on the lhs. Jakub