Searched refs:system_values_read (Results 1 - 25 of 61) sorted by relevance

123

/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
H A Dsi_shader_nir.c438 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 Dpan_shader.c212 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 Dshader_info.h110 uint64_t system_values_read; member in struct:shader_info
/xsrc/external/mit/MesaLib/dist/src/compiler/nir/
H A Dnir_lower_discard_or_demote.c184 BITSET_TEST(shader->info.system_values_read,
194 BITSET_CLEAR(shader->info.system_values_read,
H A Dnir_gather_info.c637 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 Dshader_info.h158 BITSET_DECLARE(system_values_read, SYSTEM_VALUE_MAX);
/xsrc/external/mit/MesaLib/dist/src/compiler/glsl/
H A Dir_set_program_inouts.cpp127 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 Dir_set_program_inouts.cpp127 prog->info.system_values_read |= bitfield;
435 prog->info.system_values_read = 0;
/xsrc/external/mit/MesaLib.old/dist/src/compiler/nir/
H A Dnir_gather_info.c261 shader->info.system_values_read |=
351 shader->info.system_values_read = 0;
/xsrc/external/mit/MesaLib/dist/src/amd/vulkan/
H A Dradv_shader_info.c772 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 Dbrw_vec4.cpp2924 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 Dbrw_nir.c190 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 Dbrw_vec4_tcs.cpp397 BITSET_TEST(nir->info.system_values_read, SYSTEM_VALUE_PRIMITIVE_ID);
/xsrc/external/mit/MesaLib/dist/src/mesa/drivers/dri/i965/
H A Dbrw_curbe.c335 BITSET_TEST(fp->info.system_values_read, SYSTEM_VALUE_FRAG_COORD)) {
/xsrc/external/mit/MesaLib/dist/src/broadcom/compiler/
H A Dvir.c686 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 Dnir_to_vir.c1974 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 Dbrw_vec4.cpp2885 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 Dfd6_draw.c184 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 Dprogram.c528 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 Dprog_to_nir.c929 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 Dprogram.c538 (prog->info.system_values_read & (SYSTEM_BIT_SAMPLE_ID |
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/iris/
H A Diris_draw.c85 tcs_info->system_values_read & (1ull << SYSTEM_VALUE_VERTICES_IN)) {
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/iris/
H A Diris_draw.c96 BITSET_TEST(tcs_info->system_values_read, SYSTEM_VALUE_VERTICES_IN)) {
/xsrc/external/mit/MesaLib.old/dist/src/broadcom/compiler/
H A Dvir.c619 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 Dnv50_ir_from_nir.cpp1341 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));

Completed in 41 milliseconds

123