Re: [Mesa-dev] [PATCH 095/133] nir/glsl: Generate SSA NIR

2015-01-04 Thread Connor Abbott
Except for the minor stale comment and assuming you checked that we don't call nir_create_local_reg() anymore, Reviewed-by: Connor Abbott On Tue, Dec 16, 2014 at 1:11 AM, Jason Ekstrand wrote: > With this commit, the GLSL IR -> NIR pass generates NIR in more-or-less SSA > form. It's SSA in th

[Mesa-dev] [PATCH 095/133] nir/glsl: Generate SSA NIR

2014-12-15 Thread Jason Ekstrand
With this commit, the GLSL IR -> NIR pass generates NIR in more-or-less SSA form. It's SSA in the sense that it doesn't have any registers, but it isn't really useful SSA because it still has a pile of load/store intrinsics that we will need to get rid of. --- src/glsl/nir/glsl_to_nir.cpp | 246 +