[Mesa-dev] [PATCH v5 00/34] Nir support for Nouveau

Karol Herbst kherbst at redhat.com
Tue Feb 20 21:02:18 UTC 2018


biggest changes since v5
* support lower_all_io_to_temps = false
* closed memory leak of the entire nir shader
* fixed several issues regarding input/outputs and assignSlots
* fixed some issues related to indirect values

Biggest missing features:
* interpolateAt
* indirect image access

piglit/CTS pass rates are close to the TGSI path.

Connor Abbott (1):
  nv50/ir/ra: Fix copying compound for moves

Karol Herbst (33):
  st/glsl_to_nir: run lower_output_reads on
    !PIPE_CAP_TGSI_CAN_READ_OUTPUTS
  nvir: print the shader type when dumping headers
  nvir: move common converter code in base class
  nvir: add lowering helper
  nvir/nir: add support for NIR on nvc0
  nvc0/debug: add env var to make nir default
  nvir/nir: run some passes to make the conversion easier
  nvir/nir: track defs and provide easy access functions
  nvir/nir: add nir type helper functions
  nvir/nir: run assignSlots
  nvir/nir: add loadFrom and storeTo helpler
  nvir/nir: parse NIR shader info
  nvir/nir: implement CFG handling
  nvir/nir: implement nir_load_const_instr
  nvir/nir: add skeleton for nir_intrinsic_instr
  nvir/nir: implement nir_alu_instr handling
  nvir/nir: implement nir_intrinsic_load_uniform
  nvir/nir: implement nir_intrinsic_store_(per_vertex_)output
  nvir/nir: implement nir_intrinsic_load_input
  nvir/nir: implement intrinsic_discard(_if)
  nvir/nir: implement loading system values
  nvir/nir: implement nir_ssa_undef_instr
  nvir/nir: implement nir_instr_type_tex
  nvir/nir: add getOperation for intrinsics
  nvir/nir: implement vote and ballot
  nvir/nir: implement variable indexing
  nvir/nir: implement geometry shader nir_intrinsics
  nvir/nir: implement nir_intrinsic_load_ubo
  nvir/nir: implement ssbo intrinsics
  nvir/nir: implement images
  nvir/nir: add memory barriers
  nvir/nir: implement load_per_vertex_output
  nvir/nir: implement intrinsic shader_clock

 src/gallium/drivers/nouveau/Makefile.sources       |    5 +
 src/gallium/drivers/nouveau/codegen/nv50_ir.cpp    |    3 +
 src/gallium/drivers/nouveau/codegen/nv50_ir.h      |    1 +
 .../nouveau/codegen/nv50_ir_from_common.cpp        |  107 +
 .../drivers/nouveau/codegen/nv50_ir_from_common.h  |   58 +
 .../drivers/nouveau/codegen/nv50_ir_from_nir.cpp   | 2877 ++++++++++++++++++++
 .../drivers/nouveau/codegen/nv50_ir_from_tgsi.cpp  |  106 +-
 .../nouveau/codegen/nv50_ir_lowering_helper.cpp    |  267 ++
 .../nouveau/codegen/nv50_ir_lowering_helper.h      |   53 +
 src/gallium/drivers/nouveau/codegen/nv50_ir_ra.cpp |   60 +-
 src/gallium/drivers/nouveau/meson.build            |   14 +-
 src/gallium/drivers/nouveau/nouveau_screen.c       |    4 +
 src/gallium/drivers/nouveau/nouveau_screen.h       |    2 +
 src/gallium/drivers/nouveau/nvc0/nvc0_program.c    |   19 +-
 src/gallium/drivers/nouveau/nvc0/nvc0_screen.c     |   53 +-
 src/gallium/drivers/nouveau/nvc0/nvc0_state.c      |   27 +-
 src/mesa/state_tracker/st_glsl_to_nir.cpp          |    6 +
 17 files changed, 3525 insertions(+), 137 deletions(-)
 create mode 100644 src/gallium/drivers/nouveau/codegen/nv50_ir_from_common.cpp
 create mode 100644 src/gallium/drivers/nouveau/codegen/nv50_ir_from_common.h
 create mode 100644 src/gallium/drivers/nouveau/codegen/nv50_ir_from_nir.cpp
 create mode 100644 src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_helper.cpp
 create mode 100644 src/gallium/drivers/nouveau/codegen/nv50_ir_lowering_helper.h

-- 
2.14.3



More information about the mesa-dev mailing list