Searched refs:dword_index (Results 1 - 4 of 4) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_vec4_gs_visitor.cpp336 * dword_index = (vertex_count - 1) * bits_per_vertex / 32
341 * dword_index = (vertex_count - 1) >> (6 - log2(bits_per_vertex))
343 src_reg dword_index(this, glsl_type::uint_type); local in function:brw::vec4_gs_visitor::emit_control_data_bits
350 emit(SHR(dst_reg(dword_index), prev_count,
364 /* Set the per-slot offset to dword_index / 4, to that we'll write to
368 emit(SHR(dst_reg(per_slot_offset), dword_index, brw_imm_ud(2u)));
374 /* Set the channel masks to 1 << (dword_index % 4), so that we'll
382 inst = emit(AND(dst_reg(channel), dword_index, brw_imm_ud(3u)));
H A Dbrw_fs_nir.cpp2115 * dword_index = (vertex_count - 1) * bits_per_vertex / 32
2120 * dword_index = (vertex_count - 1) >> (6 - log2(bits_per_vertex))
2123 fs_reg dword_index = bld.vgrf(BRW_REGISTER_TYPE_UD, 1); local in function:fs_visitor::emit_gs_control_data_bits
2128 abld.SHR(dword_index, prev_count, brw_imm_ud(6u - log2_bits_per_vertex));
2131 /* Set the per-slot offset to dword_index / 4, so that we'll write to
2134 abld.SHR(per_slot_offset, dword_index, brw_imm_ud(2u));
2137 /* Set the channel masks to 1 << (dword_index % 4), so that we'll
2141 fwa_bld.AND(channel, dword_index, brw_imm_ud(3u));
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_vec4_gs_visitor.cpp313 * dword_index = (vertex_count - 1) * bits_per_vertex / 32
318 * dword_index = (vertex_count - 1) >> (6 - log2(bits_per_vertex))
320 src_reg dword_index(this, glsl_type::uint_type); local in function:brw::vec4_gs_visitor::emit_control_data_bits
327 emit(SHR(dst_reg(dword_index), prev_count,
341 /* Set the per-slot offset to dword_index / 4, to that we'll write to
345 emit(SHR(dst_reg(per_slot_offset), dword_index, brw_imm_ud(2u)));
351 /* Set the channel masks to 1 << (dword_index % 4), so that we'll
359 inst = emit(AND(dst_reg(channel), dword_index, brw_imm_ud(3u)));
H A Dbrw_fs_nir.cpp2296 * dword_index = (vertex_count - 1) * bits_per_vertex / 32
2301 * dword_index = (vertex_count - 1) >> (6 - log2(bits_per_vertex))
2304 fs_reg dword_index = bld.vgrf(BRW_REGISTER_TYPE_UD, 1); local in function:fs_visitor::emit_gs_control_data_bits
2309 abld.SHR(dword_index, prev_count, brw_imm_ud(6u - log2_bits_per_vertex));
2312 /* Set the per-slot offset to dword_index / 4, so that we'll write to
2315 abld.SHR(per_slot_offset, dword_index, brw_imm_ud(2u));
2318 /* Set the channel masks to 1 << (dword_index % 4), so that we'll
2322 fwa_bld.AND(channel, dword_index, brw_imm_ud(3u));

Completed in 20 milliseconds