aboutsummaryrefslogtreecommitdiffstats
path: root/src/compiler/nir/nir_serialize.c
Commit message (Expand)AuthorAgeFilesLines
* nir/serialize: reuse the writemask field for 2 src X swizzles of SSA ALUMarek Olšák2019-11-231-3/+33
* nir/serialize: remove up to 3 consecutive equal ALU instruction headersMarek Olšák2019-11-231-16/+65
* nir/serialize: try to pack both deref array src into 32 bitsMarek Olšák2019-11-231-5/+28
* nir/serialize: cleanup - fold nir_deref_type_var cases into switchesMarek Olšák2019-11-231-16/+19
* nir/serialize: try to put deref->var index into the unused bits of the headerMarek Olšák2019-11-231-10/+23
* nir/serialize: don't serialize mode for deref non-cast instructionsMarek Olšák2019-11-231-5/+12
* nir/serialize: don't store deref types if not neededMarek Olšák2019-11-231-4/+26
* nir/serialize: try to pack two alu srcs into 1 uint32Marek Olšák2019-11-231-21/+76
* nir/serialize: pack nir_intrinsic_instr::const_index[] betterMarek Olšák2019-11-231-5/+84
* nir/serialize: pack 1-component constants into 20 bits if possibleMarek Olšák2019-11-231-37/+135
* nir/serialize: pack load_const with non-64-bit constants betterMarek Olšák2019-11-231-2/+46
* nir/serialize: try to store a diff in var data locations instead of var dataMarek Olšák2019-11-231-15/+73
* nir/serialize: deduplicate serialized var types by reusing the last unique oneMarek Olšák2019-11-231-10/+39
* nir/serialize: don't serialize var->data for temporariesMarek Olšák2019-11-231-12/+37
* nir/serialize: pack src better and limit the object count to 1M from 1GMarek Olšák2019-11-231-33/+75
* nir/serialize: pack instructions betterMarek Olšák2019-11-231-106/+297
* nir/serialize: do ctx = {0} instead of manual initializationsMarek Olšák2019-11-211-4/+2
* nir: strip as we serialize to remove the nir_shader_clone callMarek Olšák2019-11-211-26/+34
* nir/serialize: fix serializing functions with no implementations.Dave Airlie2019-11-191-3/+11
* nir/serialize: pack function has name and entry point into flags.Dave Airlie2019-11-191-5/+7
* nir/serialize: pack nir_variable flagsMarek Olšák2019-11-051-13/+36
* nir/serialize: store 32-bit object IDs instead of 64-bitMarek Olšák2019-11-051-28/+31
* nir/serialize: don't expand 16-bit variable state slots to 32 bitsMarek Olšák2019-11-051-6/+4
* util: rename list_empty() to list_is_empty()Timothy Arceri2019-10-281-1/+1
* nir: add a strip parameter to nir_serializeMarek Olšák2019-10-101-2/+17
* tree-wide: replace MAYBE_UNUSED with ASSERTEDEric Engestrom2019-07-311-1/+1
* nir: Add a no wrapping bits to nir_alu_instrCaio Marcelo de Oliveira Filho2019-06-261-4/+8
* nir: Don't replace the nir_shader when NIR_TEST_SERIALIZE=1Jason Ekstrand2019-06-051-7/+14
* nir: make nir_const_value scalarKarol Herbst2019-04-141-2/+2
* nir: Add a pass for selectively lowering variables to scratch spaceJason Ekstrand2019-04-121-0/+2
* nir: Get rid of global registersJason Ekstrand2019-04-091-7/+0
* nir: Get rid of nir_register::is_packedJason Ekstrand2019-04-091-2/+1
* nir: add support for gather offsetsKarol Herbst2019-03-211-0/+2
* nir/serialize: Prevent writing uninitialized state_slot dataConnor Abbott2019-03-111-5/+14
* src/compiler: use new hash table and set creation helpersCaio Marcelo de Oliveira Filho2019-01-141-2/+1
* nir: Tag entrypoint for easy recognition by nir_shader_get_entrypoint()Matt Turner2019-01-091-0/+4
* nir: Add a ptr_as_array deref typeJason Ekstrand2019-01-081-2/+10
* nir/serialize: Alloc constants off the variableJason Ekstrand2018-07-241-1/+1
* nir: Add a concept of constant data associated with a shaderJason Ekstrand2018-07-021-0/+12
* nir: Remove old-school deref chain supportJason Ekstrand2018-06-221-99/+0
* nir,spirv: Rework function callsJason Ekstrand2018-06-221-34/+10
* nir: Add a concept of per-member structs and a lowering passJason Ekstrand2018-06-221-0/+12
* nir: add deref lowering sanity checkingRob Clark2018-06-221-0/+2
* nir: Add a deref instruction typeJason Ekstrand2018-06-221-0/+81
* nir/serialize: handle var->name being NULLAlejandro Piñeiro2018-03-011-1/+2
* nir: mark unused space in packed_tex_dataTapani Pälli2018-01-291-0/+1
* nir/serialize: fix build with gcc 4.4.7Dave Airlie2017-11-031-19/+19
* nir: Add hooks for testing serializationJason Ekstrand2017-10-311-0/+19
* nir: add serialization and deserializationConnor Abbott2017-10-311-0/+1201