Searched refs:hw_type (Results 1 - 9 of 9) sorted by relevance

/xsrc/external/mit/MesaLib.old/dist/src/intel/compiler/
H A Dbrw_reg_type.h109 enum brw_reg_file file, unsigned hw_type);
121 unsigned hw_type);
125 unsigned hw_type, unsigned exec_type);
H A Dbrw_reg_type.c87 static const struct hw_type { struct
199 const struct hw_type *table;
228 enum brw_reg_file file, unsigned hw_type)
230 const struct hw_type *table;
240 if (table[i].imm_type == (enum hw_imm_type)hw_type) {
246 if (table[i].reg_type == (enum hw_reg_type)hw_type) {
287 unsigned hw_type)
289 assert(devinfo->gen >= 8 || hw_type != GEN8_3SRC_TYPE_HF);
291 if (gen7_hw_3src_type[i].reg_type == hw_type) {
304 unsigned hw_type, unsigne
227 brw_hw_type_to_reg_type(const struct gen_device_info * devinfo,enum brw_reg_file file,unsigned hw_type) argument
286 brw_a16_hw_3src_type_to_reg_type(const struct gen_device_info * devinfo,unsigned hw_type) argument
303 brw_a1_hw_3src_type_to_reg_type(const struct gen_device_info * devinfo,unsigned hw_type,unsigned exec_type) argument
[all...]
H A Dbrw_inst.h256 unsigned hw_type = brw_reg_type_to_a16_hw_3src_type(devinfo, type); \
257 brw_inst_set_3src_a16_##reg##_hw_type(devinfo, inst, hw_type); \
264 unsigned hw_type = brw_inst_3src_a16_##reg##_hw_type(devinfo, inst); \
265 return brw_a16_hw_3src_type_to_reg_type(devinfo, hw_type); \
322 unsigned hw_type = brw_reg_type_to_a1_hw_3src_type(devinfo, type); \
323 brw_inst_set_3src_a1_##reg##_hw_type(devinfo, inst, hw_type); \
333 unsigned hw_type = brw_inst_3src_a1_##reg##_hw_type(devinfo, inst); \
334 return brw_a1_hw_3src_type_to_reg_type(devinfo, hw_type, exec_type); \
907 unsigned hw_type = brw_reg_type_to_hw_type(devinfo, file, type); \
909 brw_inst_set_##reg##_reg_hw_type(devinfo, inst, hw_type); \
[all...]
/xsrc/external/mit/MesaLib/dist/src/intel/compiler/
H A Dbrw_reg_type.h181 enum brw_reg_file file, unsigned hw_type);
193 unsigned hw_type);
197 unsigned hw_type, unsigned exec_type);
H A Dbrw_reg_type.c91 static const struct hw_type { struct
327 const struct hw_type *table;
368 enum brw_reg_file file, unsigned hw_type)
370 const struct hw_type *table;
390 if (table[i].imm_type == (enum hw_imm_type)hw_type) {
396 if (table[i].reg_type == (enum hw_reg_type)hw_type) {
458 unsigned hw_type)
471 if (table[i].reg_type == hw_type) {
484 unsigned hw_type, unsigned exec_type)
493 if (table[i].reg_type == hw_type
367 brw_hw_type_to_reg_type(const struct intel_device_info * devinfo,enum brw_reg_file file,unsigned hw_type) argument
457 brw_a16_hw_3src_type_to_reg_type(const struct intel_device_info * devinfo,unsigned hw_type) argument
483 brw_a1_hw_3src_type_to_reg_type(const struct intel_device_info * devinfo,unsigned hw_type,unsigned exec_type) argument
[all...]
H A Dbrw_inst.h385 unsigned hw_type = brw_reg_type_to_a16_hw_3src_type(devinfo, type); \
386 brw_inst_set_3src_a16_##reg##_hw_type(devinfo, inst, hw_type); \
393 unsigned hw_type = brw_inst_3src_a16_##reg##_hw_type(devinfo, inst); \
394 return brw_a16_hw_3src_type_to_reg_type(devinfo, hw_type); \
455 unsigned hw_type = brw_reg_type_to_a1_hw_3src_type(devinfo, type); \
456 brw_inst_set_3src_a1_##reg##_hw_type(devinfo, inst, hw_type); \
466 unsigned hw_type = brw_inst_3src_a1_##reg##_hw_type(devinfo, inst); \
467 return brw_a1_hw_3src_type_to_reg_type(devinfo, hw_type, exec_type); \
1171 unsigned hw_type = brw_reg_type_to_hw_type(devinfo, file, type); \
1173 brw_inst_set_##reg##_reg_hw_type(devinfo, inst, hw_type); \
[all...]
H A Dtest_eu_validate.cpp309 unsigned hw_type = brw_reg_type_to_hw_type(&devinfo, file, test_case[i].type); local in function:TEST_P
310 if (hw_type != INVALID_REG_TYPE) {
312 assert(BITSET_TEST(invalid_encodings, hw_type));
313 BITSET_CLEAR(invalid_encodings, hw_type);
408 unsigned hw_type = brw_reg_type_to_a16_hw_3src_type(&devinfo, test_case[i].type); local in function:TEST_P
409 if (hw_type != INVALID_HW_REG_TYPE) {
411 assert(BITSET_TEST(invalid_encodings, hw_type));
412 BITSET_CLEAR(invalid_encodings, hw_type);
499 unsigned hw_type = brw_reg_type_to_a1_hw_3src_type(&devinfo, test_case[i].type); local in function:TEST_P
500 unsigned hw_exec_type = hw_type | (test_cas
526 const unsigned hw_type = e & 0x7; local in function:TEST_P
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/radeonsi/
H A Dsi_sdma_copy_image.c74 bool si_translate_format_to_hw(struct si_context *sctx, enum pipe_format format, unsigned *hw_fmt, unsigned *hw_type) argument
86 *hw_type = V_028C70_NUMBER_FLOAT;
88 *hw_type = V_028C70_NUMBER_UNORM;
90 *hw_type = V_028C70_NUMBER_SRGB;
93 *hw_type = V_028C70_NUMBER_SINT;
96 *hw_type = V_028C70_NUMBER_SNORM;
100 *hw_type = V_028C70_NUMBER_UINT;
103 *hw_type = V_028C70_NUMBER_UNORM;
201 unsigned hw_fmt, hw_type; local in function:si_sdma_v4_v5_copy_texture
204 si_translate_format_to_hw(sctx, tiled->buffer.b.b.format, &hw_fmt, &hw_type);
[all...]
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D20.0.0.rst2509 - intel/compiler: Split hw_type tables

Completed in 14 milliseconds