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: [PATCH] Distribute inliner's size_time data across entries with similar predicates


> 
> Hm, what do we do for
> 
>  if (op0 > 10)
>    if (op1 > 10)
>      some code
> 
> ?  Do we make sure to only register one predicate with op0 > 10 && op1 > 10?

Yes, we end up with predicate (op0 > 10) && (op1 > 10). That is until we hit of
maximum limit of clauses in a single predicate. Then we just give up and start
dropping more of && clauses.

Honza


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