Re: [Mesa-dev] [PATCH] nv50/ir: make sure cfg iterator always hits all blocks

2016-08-22 Thread Samuel Pitoiset
Reviewed-by: Samuel Pitoiset On 08/19/2016 06:45 AM, Ilia Mirkin wrote: In some very specially-crafted cases, we could attempt to visit a node that has already been visited, and then run out of bb's to visit, while there were still cross blocks on the list. Make sure that those get moved over i

[Mesa-dev] [PATCH] nv50/ir: make sure cfg iterator always hits all blocks

2016-08-18 Thread Ilia Mirkin
In some very specially-crafted cases, we could attempt to visit a node that has already been visited, and then run out of bb's to visit, while there were still cross blocks on the list. Make sure that those get moved over in that case. Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=96274 S