Re: [PATCH] Improve jump threading using VRP information

2013-08-27 Thread Richard Biener
On Thu, Jun 27, 2013 at 6:29 AM, Jeff Law wrote: > > Just something else I saw while analyzing dumps from an unrelated set of > changes. > > It's relatively common to see sequences like this: > > # parent_1 = PHI > _11 = single_tree_10(D) != 0; > _12 = parent_1 == 0B; > _13 = _11 & _12; >

Improve jump threading using VRP information

2013-08-21 Thread Jeff Law
Just something else I saw while analyzing dumps from an unrelated set of changes. It's relatively common to see sequences like this: # parent_1 = PHI _11 = single_tree_10(D) != 0; _12 = parent_1 == 0B; _13 = _11 & _12; if (_13 != 0) goto ; else goto ; Where VRP can deduc

[RFA][PATCH] Improve jump threading using VRP information

2013-07-05 Thread Jeff Law
Ping! http://gcc.gnu.org/ml/gcc-patches/2013-06/msg01503.html

[PATCH] Improve jump threading using VRP information

2013-06-26 Thread Jeff Law
Just something else I saw while analyzing dumps from an unrelated set of changes. It's relatively common to see sequences like this: # parent_1 = PHI _11 = single_tree_10(D) != 0; _12 = parent_1 == 0B; _13 = _11 & _12; if (_13 != 0) goto ; else goto ; Where VRP can deduc