https://gcc.gnu.org/bugzilla/show_bug.cgi?id=97172

--- Comment #10 from Jan Hubicka <hubicka at ucw dot cz> ---
> Unsharing the expression in the front end, before it's added to the attribute,
> prevents this ICE, but I wouldn't expect that to be necessary.  From what
> little I know about how garbage collection in GCC works I would think nodes
> would only become eligible for collection after they were no longer 
> referenced.

No longer referened by something visible to the garbage collector :)
But if the attribute is linked from the decl the garbage collector
should see it.  Did you watchpoint the pointer? Perhaps the expression
is used by somehwere else and we fold/gimplify it to the version having
SSA name in it.
> 
> Unsharing also doesn't solve the problem in pr97133 where the expression that
> causes the LTO ICE is a BIND_EXPR (bug 97133 comment #4 has more detail).  Why
> is BIND_EXPR not handled by the streamer?  Is it because it references the
> function's parameter?  Would that make other expressions that reference
> function parameters a problem too? (In my limited testing most don't seem to
> be.)

This is similar to why it does not stream SSA_NAMEs. BIND_EXPR is local
to function body and thus it can not be pointed to from anything in the
global stream.  If one wants to take the random expression from funtion
body and put it into global datastrutures, one has to use
unshare_expr_without_location which strips away the pointer to blocks.

Honza

Reply via email to