This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: [vta, vta4.4] merged with trunk and 4.4 @149247, updated VTA patchset


On Jul  9, 2009, Richard Guenther <richard.guenther@gmail.com> wrote:

> The main point is to improve readability (and thus maintainability)
> of the use sites.

One of them would have exactly *one* use site: release_ssa_name.

Anyhow, I'm thinking of renaming the function to
propagate_rhs_into_debug_stmts, which would hopefully take care of the
lack of clarity you're getting at.  Does that work for you?

>>> Note that while adjust_debug_stmts_for_stmt_move can be done lazily
>> 
>> Can it, really?
>> 
>> The moved DEF could very well be modified to something incorrect before
>> we get a chance to pick up the correct value, if we do it lazily.

> IMHO we (usually) shouldn't modify the value assigned to an SSA name.

Huh?  We do it all the time.  Every time we propagate something into an
SSA name, substitute an SSA name for a constant during say threading,
whatever, we modify the value assigned to an SSA name.  If, after these
transformations (particularly threading), we were to assume that the rhs
is still equivalent to the original rhs, we'd lose.

> It for example renders points-to information attached to the name
> incorrect.

I don't see that it does.  The transformations I'm concerned with
actually preserve points-to information.  However, since they're
computed from different expressions that might *not* be apropriate in
the original context in which the original SSA DEF appeared, we can't
wait for a later time to make the change.

Now, if you're suggesting that every time we touch an SSA DEF we
generate a new SSA name, and substitute all occurrences, I guess this
would be fine, for then the original DEF would be ssa_name_release()d
right away (or remain in place until it's found to be dead and
released), at which time we'd be able to use its RHS in context.

-- 
Alexandre Oliva, freedom fighter    http://FSFLA.org/~lxoliva/
You must be the change you wish to see in the world. -- Gandhi
Be Free! -- http://FSFLA.org/   FSF Latin America board member
Free Software Evangelist      Red Hat Brazil Compiler Engineer


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]