Re: [Mesa-dev] [PATCH 09/10] nir: Add a global code motion (GCM) pass

2015-02-05 Thread Jason Ekstrand
On Thu, Feb 5, 2015 at 7:01 PM, Connor Abbott wrote: > On Thu, Feb 5, 2015 at 9:33 PM, Jason Ekstrand > wrote: > > > > On Feb 5, 2015 5:07 PM, "Connor Abbott" wrote: > >> > >> On Thu, Feb 5, 2015 at 5:29 PM, Jason Ekstrand > >> wrote: > >> > --- > >> > src/glsl/Makefile.sources | 1 + > >>

Re: [Mesa-dev] [PATCH 09/10] nir: Add a global code motion (GCM) pass

2015-02-05 Thread Connor Abbott
On Thu, Feb 5, 2015 at 9:33 PM, Jason Ekstrand wrote: > > On Feb 5, 2015 5:07 PM, "Connor Abbott" wrote: >> >> On Thu, Feb 5, 2015 at 5:29 PM, Jason Ekstrand >> wrote: >> > --- >> > src/glsl/Makefile.sources | 1 + >> > src/glsl/nir/nir.h | 2 + >> > src/glsl/nir/nir_opt_gcm.c | 49

Re: [Mesa-dev] [PATCH 09/10] nir: Add a global code motion (GCM) pass

2015-02-05 Thread Jason Ekstrand
On Feb 5, 2015 5:07 PM, "Connor Abbott" wrote: > > On Thu, Feb 5, 2015 at 5:29 PM, Jason Ekstrand wrote: > > --- > > src/glsl/Makefile.sources | 1 + > > src/glsl/nir/nir.h | 2 + > > src/glsl/nir/nir_opt_gcm.c | 499 + > > 3 files changed

Re: [Mesa-dev] [PATCH 09/10] nir: Add a global code motion (GCM) pass

2015-02-05 Thread Connor Abbott
On Thu, Feb 5, 2015 at 5:29 PM, Jason Ekstrand wrote: > --- > src/glsl/Makefile.sources | 1 + > src/glsl/nir/nir.h | 2 + > src/glsl/nir/nir_opt_gcm.c | 499 > + > 3 files changed, 502 insertions(+) > create mode 100644 src/glsl/nir/nir_

[Mesa-dev] [PATCH 09/10] nir: Add a global code motion (GCM) pass

2015-02-05 Thread Jason Ekstrand
--- src/glsl/Makefile.sources | 1 + src/glsl/nir/nir.h | 2 + src/glsl/nir/nir_opt_gcm.c | 499 + 3 files changed, 502 insertions(+) create mode 100644 src/glsl/nir/nir_opt_gcm.c diff --git a/src/glsl/Makefile.sources b/src/glsl/Makefile.