nir,spirv: Add generic pointers support
This MR adds everything to NIR that I think should be required for semi-competent generic pointer support. It's really quite straightforward. The patches support two possible models:
-
Unified address space model: In this model, everything is mapped into the global address space. Scratch and shared memory pointers will be computed as an offset from the
scratch/shared_base_ptr
system value. In this model, it's the driver's job to implement thederef_is_*
intrinsics for detecting which type of pointer something is. In theory, if we had the range of the shared and scratch address space in nir_lower_io, we could possibly lower them in NIR using a range check based onptr - scratch/shared_base_ptr
. However, it's possible that, given carefully chosen address spaces, it may be possible for the back-end driver to do better. -
Enum+address model: In this model, a few bits of the pointer are reserved for some sort of enum and the semantics of this are baked into the
nir_address_format
. In this model,nir_lower_io
will emit if-ladders for accesses wheneverderef->modes
has more than one mode. The last patch in this series adds such an address mode which is what we would need on Intel. It reserves the top two bits of the 64-bit pointer for the enum value.
The biggest sticky bit of this MR is in the early patches when we rename nir_deref_instr::mode
to "modes" and make it a bitfield. It touches lots of passes and replaces lots of ==
or !=
checks with bit-banging. There are lots of subtleties in there. I think I got it right but extra eyes would be very good.
Note: This has gotten very little to no testing. I think I've done all the typing but I'm very sure lots of stuff will start blowing up when we run this in the wild.