Re: [Mesa-dev] [PATCH v3] nir: Copy propagation between blocks

2018-10-15 Thread Jason Ekstrand
On Mon, Oct 15, 2018 at 3:07 PM Caio Marcelo de Oliveira Filho < caio.olive...@intel.com> wrote: > Extend the pass to propagate the copies information along the control > flow graph. It performs two walks, first it collects the vars > that were written inside each node. Then it walks applying

[Mesa-dev] [PATCH v3] nir: Copy propagation between blocks

2018-10-15 Thread Caio Marcelo de Oliveira Filho
Extend the pass to propagate the copies information along the control flow graph. It performs two walks, first it collects the vars that were written inside each node. Then it walks applying the copy propagation using a list of copies previously available. At each node the list is invalidated