genxml: Consistently use a numeric "MOCS" field
authorKenneth Graunke <kenneth@whitecape.org>
Tue, 11 Dec 2018 08:34:11 +0000 (00:34 -0800)
committerKenneth Graunke <kenneth@whitecape.org>
Fri, 14 Dec 2018 08:44:54 +0000 (00:44 -0800)
commit0b44644ca6886de4201e3edd911b7d418a9d7680
tree56cab0cfb09f7f56411eda32ba3476b8aa76c378
parenta2ec78883f402ccfb60bce3c35ec819061e6338f
genxml: Consistently use a numeric "MOCS" field

When we first started using genxml, we decided to represent MOCS as an
actual structure, and pack values.  However, in many places, it was more
convenient to use a numeric value rather than treating it as a struct,
so we added secondary setters in a bunch of places as well.

We were not entirely consistent, either.  Some places only had one.
Gen6 had both kinds of setters for STATE_BASE_ADDRESS, but newer gens
only had the struct-based setters.  The names were sometimes "Constant
Buffer Object Control State" instead of "Memory", making it harder to
find.  Many had prefixes like "Vertex Buffer MOCS"...in a vertex buffer
packet...which is a bit redundant.

On modern hardware, MOCS is simply an index into a table, but we were
still carrying around the structure with an "Index to MOCS Table" field,
in addition to the direct numeric setters.  This is clunky - we really
just want a number on new hardware.

This patch eliminates the struct-based setters, and makes the numeric
setters be consistently called "MOCS".  We leave the struct definition
around on Gen7-8 for reference purposes, but it is unused.

v2: Drop bonus "Depth Buffer MOCS" fields on Gen7.5 and Gen9

Reviewed-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Kristian H. Kristensen <hoegsberg@google.com>
16 files changed:
src/intel/blorp/blorp_genX_exec.h
src/intel/genxml/gen10.xml
src/intel/genxml/gen11.xml
src/intel/genxml/gen6.xml
src/intel/genxml/gen7.xml
src/intel/genxml/gen75.xml
src/intel/genxml/gen8.xml
src/intel/genxml/gen9.xml
src/intel/isl/isl_emit_depth_stencil.c
src/intel/vulkan/anv_private.h
src/intel/vulkan/gen7_cmd_buffer.c
src/intel/vulkan/gen8_cmd_buffer.c
src/intel/vulkan/genX_cmd_buffer.c
src/intel/vulkan/genX_gpu_memcpy.c
src/intel/vulkan/genX_state.c
src/mesa/drivers/dri/i965/genX_state_upload.c