| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/ |
| H A D | si_shader_nir.c | 438 info->uses_frontface = BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_FRONT_FACE); 439 info->uses_instanceid = BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_INSTANCE_ID); 440 info->uses_base_vertex = BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_BASE_VERTEX); 441 info->uses_base_instance = BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_BASE_INSTANCE); 442 info->uses_invocationid = BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_INVOCATION_ID); 443 info->uses_grid_size = BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_NUM_WORKGROUPS); 444 info->uses_subgroup_info = BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_LOCAL_INVOCATION_INDEX) || 445 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_SUBGROUP_ID) || 446 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_NUM_SUBGROUPS); 447 info->uses_variable_block_size = BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_WORKGROUP_SIZ [all...] |
| /xsrc/external/mit/MesaLib/dist/src/panfrost/lib/ |
| H A D | pan_shader.c | 212 bool vertex_id = BITSET_TEST(s->info.system_values_read, 217 bool instance_id = BITSET_TEST(s->info.system_values_read, 271 BITSET_TEST(s->info.system_values_read, SYSTEM_VALUE_FRAG_COORD); 276 BITSET_TEST(s->info.system_values_read, SYSTEM_VALUE_FRONT_FACE); 278 BITSET_TEST(s->info.system_values_read, SYSTEM_VALUE_SAMPLE_ID); 280 BITSET_TEST(s->info.system_values_read, SYSTEM_VALUE_SAMPLE_POS); 282 BITSET_TEST(s->info.system_values_read, SYSTEM_VALUE_SAMPLE_MASK_IN); 284 BITSET_TEST(s->info.system_values_read, SYSTEM_VALUE_HELPER_INVOCATION);
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/ |
| H A D | shader_info.h | 110 uint64_t system_values_read; member in struct:shader_info
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/nir/ |
| H A D | nir_lower_discard_or_demote.c | 184 BITSET_TEST(shader->info.system_values_read, 194 BITSET_CLEAR(shader->info.system_values_read,
|
| H A D | nir_gather_info.c | 637 BITSET_SET(shader->info.system_values_read, 644 BITSET_SET(shader->info.system_values_read, 647 BITSET_SET(shader->info.system_values_read, 655 BITSET_SET(shader->info.system_values_read, 658 BITSET_SET(shader->info.system_values_read, 666 BITSET_SET(shader->info.system_values_read, 669 BITSET_SET(shader->info.system_values_read, 874 BITSET_ZERO(shader->info.system_values_read); 907 (BITSET_TEST(shader->info.system_values_read, SYSTEM_VALUE_SAMPLE_ID) || 908 BITSET_TEST(shader->info.system_values_read, SYSTEM_VALUE_SAMPLE_PO [all...] |
| /xsrc/external/mit/MesaLib/dist/src/compiler/ |
| H A D | shader_info.h | 158 BITSET_DECLARE(system_values_read, SYSTEM_VALUE_MAX);
|
| /xsrc/external/mit/MesaLib/dist/src/compiler/glsl/ |
| H A D | ir_set_program_inouts.cpp | 127 BITSET_SET(prog->info.system_values_read, idx); 435 BITSET_ZERO(prog->info.system_values_read);
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/glsl/ |
| H A D | ir_set_program_inouts.cpp | 127 prog->info.system_values_read |= bitfield; 435 prog->info.system_values_read = 0;
|
| /xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/ |
| H A D | nir_gather_info.c | 261 shader->info.system_values_read |= 351 shader->info.system_values_read = 0;
|
| /xsrc/external/mit/MesaLib/dist/src/amd/vulkan/ |
| H A D | radv_shader_info.c | 772 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_FRAG_COORD) || 773 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_POINT_COORD) || 774 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_SAMPLE_ID) || 775 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_SAMPLE_POS) || 776 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_SAMPLE_MASK_IN) || 777 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_HELPER_INVOCATION));
|
| /xsrc/external/mit/MesaLib/dist/src/intel/compiler/ |
| H A D | brw_vec4.cpp | 2924 if (BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_FIRST_VERTEX) || 2925 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_BASE_INSTANCE) || 2926 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_VERTEX_ID_ZERO_BASE) || 2927 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_INSTANCE_ID)) { 2932 if (BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_DRAW_ID) || 2933 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_IS_INDEXED_DRAW)) { 2937 if (BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_IS_INDEXED_DRAW)) 2940 if (BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_FIRST_VERTEX)) 2943 if (BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_BASE_INSTANCE)) 2946 if (BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_VERTEX_ID_ZERO_BAS [all...] |
| H A D | brw_nir.c | 190 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_FIRST_VERTEX) || 191 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_BASE_INSTANCE) || 192 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_VERTEX_ID_ZERO_BASE) || 193 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_INSTANCE_ID);
|
| H A D | brw_vec4_tcs.cpp | 397 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_PRIMITIVE_ID);
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/ |
| H A D | brw_curbe.c | 335 BITSET_TEST(fp->info.system_values_read, SYSTEM_VALUE_FRAG_COORD)) {
|
| /xsrc/external/mit/MesaLib/dist/src/broadcom/compiler/ |
| H A D | vir.c | 686 prog_data->uses_vid = BITSET_TEST(c->s->info.system_values_read, 688 BITSET_TEST(c->s->info.system_values_read, 691 prog_data->uses_biid = BITSET_TEST(c->s->info.system_values_read, 694 prog_data->uses_iid = BITSET_TEST(c->s->info.system_values_read, 696 BITSET_TEST(c->s->info.system_values_read, 751 prog_data->uses_pid = BITSET_TEST(c->s->info.system_values_read,
|
| H A D | nir_to_vir.c | 1974 bool uses_iid = BITSET_TEST(c->s->info.system_values_read, 1976 BITSET_TEST(c->s->info.system_values_read, 1978 bool uses_biid = BITSET_TEST(c->s->info.system_values_read, 1980 bool uses_vid = BITSET_TEST(c->s->info.system_values_read, 1982 BITSET_TEST(c->s->info.system_values_read, 2424 if (BITSET_TEST(c->s->info.system_values_read, 2428 if (BITSET_TEST(c->s->info.system_values_read, 2432 if (BITSET_TEST(c->s->info.system_values_read, 3809 BITSET_TEST(c->s->info.system_values_read, 3817 BITSET_TEST(c->s->info.system_values_read, [all...] |
| /xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/ |
| H A D | brw_vec4.cpp | 2885 if (shader->info.system_values_read & 2894 if (shader->info.system_values_read & 2900 if (shader->info.system_values_read & 2904 if (shader->info.system_values_read & 2908 if (shader->info.system_values_read & 2912 if (shader->info.system_values_read & 2916 if (shader->info.system_values_read & 2920 if (shader->info.system_values_read &
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/freedreno/a6xx/ |
| H A D | fd6_draw.c | 184 BITSET_TEST(ds_info->system_values_read, SYSTEM_VALUE_PRIMITIVE_ID) || 185 (gs_info && BITSET_TEST(gs_info->system_values_read, SYSTEM_VALUE_PRIMITIVE_ID)) ||
|
| /xsrc/external/mit/MesaLib/dist/src/mesa/program/ |
| H A D | program.c | 528 BITSET_TEST(prog->info.system_values_read, SYSTEM_VALUE_SAMPLE_ID) || 529 BITSET_TEST(prog->info.system_values_read, SYSTEM_VALUE_SAMPLE_POS))
|
| /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/ |
| H A D | prog_to_nir.c | 929 uint64_t system_values_read = c->prog->info.system_values_read; local in function:setup_registers_and_variables 930 while (system_values_read) { 931 const int i = u_bit_scan64(&system_values_read);
|
| H A D | program.c | 538 (prog->info.system_values_read & (SYSTEM_BIT_SAMPLE_ID |
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/iris/ |
| H A D | iris_draw.c | 85 tcs_info->system_values_read & (1ull << SYSTEM_VALUE_VERTICES_IN)) {
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/ |
| H A D | iris_draw.c | 96 BITSET_TEST(tcs_info->system_values_read, SYSTEM_VALUE_VERTICES_IN)) {
|
| /xsrc/external/mit/MesaLib.old/dist/src/broadcom/compiler/ |
| H A D | vir.c | 619 prog_data->uses_vid = (c->s->info.system_values_read & 621 prog_data->uses_iid = (c->s->info.system_values_read &
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/ |
| H A D | nv50_ir_from_nir.cpp | 1341 if (!(nir->info.system_values_read & 1ll << i)) 1517 (nir->info.system_values_read & SYSTEM_BIT_SAMPLE_ID) || 1518 (nir->info.system_values_read & SYSTEM_BIT_SAMPLE_POS); 1521 (nir->info.system_values_read & SYSTEM_BIT_SAMPLE_POS); 1524 !!(nir->info.system_values_read & SYSTEM_BIT_SAMPLE_MASK_IN); 1546 (nir->info.system_values_read & BITFIELD64_BIT(SYSTEM_VALUE_BASE_VERTEX)) || 1547 (nir->info.system_values_read & BITFIELD64_BIT(SYSTEM_VALUE_BASE_INSTANCE)) || 1548 (nir->info.system_values_read & BITFIELD64_BIT(SYSTEM_VALUE_DRAW_ID));
|