Re: [Mesa-dev] [PATCH 4/5] nir: add a helper for finding duplicate instructions

2015-09-23 Thread Connor Abbott
On Tue, Aug 18, 2015 at 1:47 PM, Jason Ekstrand wrote: > On Fri, May 22, 2015 at 11:24 AM, Connor Abbott wrote: >> This can be used for both CSE and value numbering. >> >> Signed-off-by: Connor Abbott >> --- >> src/glsl/Makefile.sources | 2 + >> src/glsl/nir/nir_instr_hash.c | 255 >> ++

Re: [Mesa-dev] [PATCH 4/5] nir: add a helper for finding duplicate instructions

2015-08-18 Thread Matt Turner
On Mon, Jun 1, 2015 at 3:29 AM, Pohjolainen, Topi wrote: > On Fri, May 22, 2015 at 02:24:51PM -0400, Connor Abbott wrote: >> This can be used for both CSE and value numbering. >> >> Signed-off-by: Connor Abbott >> --- >> src/glsl/Makefile.sources | 2 + >> src/glsl/nir/nir_instr_hash.c | 2

Re: [Mesa-dev] [PATCH 4/5] nir: add a helper for finding duplicate instructions

2015-08-18 Thread Jason Ekstrand
On Fri, May 22, 2015 at 11:24 AM, Connor Abbott wrote: > This can be used for both CSE and value numbering. > > Signed-off-by: Connor Abbott > --- > src/glsl/Makefile.sources | 2 + > src/glsl/nir/nir_instr_hash.c | 255 > ++ > src/glsl/nir/nir_inst

Re: [Mesa-dev] [PATCH 4/5] nir: add a helper for finding duplicate instructions

2015-08-18 Thread Jason Ekstrand
On Mon, Jun 1, 2015 at 3:29 AM, Pohjolainen, Topi wrote: > On Fri, May 22, 2015 at 02:24:51PM -0400, Connor Abbott wrote: >> This can be used for both CSE and value numbering. >> >> Signed-off-by: Connor Abbott >> --- >> src/glsl/Makefile.sources | 2 + >> src/glsl/nir/nir_instr_hash.c | 2

Re: [Mesa-dev] [PATCH 4/5] nir: add a helper for finding duplicate instructions

2015-06-01 Thread Pohjolainen, Topi
On Fri, May 22, 2015 at 02:24:51PM -0400, Connor Abbott wrote: > This can be used for both CSE and value numbering. > > Signed-off-by: Connor Abbott > --- > src/glsl/Makefile.sources | 2 + > src/glsl/nir/nir_instr_hash.c | 255 > ++ > src/glsl/nir/

[Mesa-dev] [PATCH 4/5] nir: add a helper for finding duplicate instructions

2015-05-22 Thread Connor Abbott
This can be used for both CSE and value numbering. Signed-off-by: Connor Abbott --- src/glsl/Makefile.sources | 2 + src/glsl/nir/nir_instr_hash.c | 255 ++ src/glsl/nir/nir_instr_hash.h | 36 ++ 3 files changed, 293 insertions(+) create mode 1