Searched refs:uncompacted (Results 1 – 8 of 8) sorted by relevance
/external/mesa3d/src/intel/compiler/ |
D | brw_eu_compact.c | 973 uint32_t uncompacted; /* 17b/G45; 19b/IVB+; 21b/TGL+ */ in set_control_index() local 976 uncompacted = (brw_inst_bits(src, 95, 92) << 17) | /* 4b */ in set_control_index() 987 uncompacted = (brw_inst_bits(src, 33, 31) << 16) | /* 3b */ in set_control_index() 993 uncompacted = (brw_inst_bits(src, 31, 31) << 16) | /* 1b */ in set_control_index() 1000 uncompacted |= brw_inst_bits(src, 90, 89) << 17; /* 2b */ in set_control_index() 1004 if (c->control_index_table[i] == uncompacted) { in set_control_index() 1018 uint32_t uncompacted; /* 18b/G45+; 21b/BDW+; 20b/TGL+ */ in set_datatype_index() local 1021 uncompacted = (brw_inst_bits(src, 91, 88) << 15) | /* 4b */ in set_datatype_index() 1035 uncompacted |= brw_inst_bits(src, 98, 98) << 19; /* 1b */ in set_datatype_index() 1038 uncompacted = (brw_inst_bits(src, 63, 61) << 18) | /* 3b */ in set_datatype_index() [all …]
|
D | test_eu_compact.cpp | 38 brw_inst uncompacted; in test_compact_instruction() local 40 brw_uncompact_instruction(p->devinfo, &uncompacted, &dst); in test_compact_instruction() 41 if (memcmp(&uncompacted, &src, sizeof(src))) { in test_compact_instruction() 42 brw_debug_compact_uncompact(p->devinfo, &src, &uncompacted); in test_compact_instruction()
|
D | brw_eu.cpp | 477 brw_inst uncompacted; in brw_label_assembly() local 483 brw_uncompact_instruction(devinfo, &uncompacted, compacted); in brw_label_assembly() 484 inst = &uncompacted; in brw_label_assembly() 536 brw_inst uncompacted; in brw_disassemble() local 567 brw_uncompact_instruction(devinfo, &uncompacted, compacted); in brw_disassemble() 568 insn = &uncompacted; in brw_disassemble()
|
D | brw_eu_validate.c | 1987 brw_inst uncompacted; in brw_validate_instructions() local 1991 brw_uncompact_instruction(devinfo, &uncompacted, compacted); in brw_validate_instructions() 1992 inst = &uncompacted; in brw_validate_instructions()
|
D | brw_eu.h | 1352 brw_inst *orig, brw_inst *uncompacted);
|
/external/igt-gpu-tools/assembler/ |
D | brw_eu_compact.c | 337 uint32_t uncompacted = 0; in set_control_index() local 339 uncompacted |= ((src_u32[0] >> 8) & 0xffff) << 0; in set_control_index() 340 uncompacted |= ((src_u32[0] >> 31) & 0x1) << 16; in set_control_index() 345 uncompacted |= ((src_u32[2] >> 25) & 0x3) << 17; in set_control_index() 348 if (control_index_table[i] == uncompacted) { in set_control_index() 361 uint32_t uncompacted = 0; in set_datatype_index() local 363 uncompacted |= src->bits1.ud & 0x7fff; in set_datatype_index() 364 uncompacted |= (src->bits1.ud >> 29) << 15; in set_datatype_index() 367 if (datatype_table[i] == uncompacted) { in set_datatype_index() 380 uint32_t uncompacted = 0; in set_subreg_index() local [all …]
|
D | brw_eu.c | 241 struct brw_instruction uncompacted; in brw_dump_compile() local 252 brw_uncompact_instruction(intel, &uncompacted, compacted); in brw_dump_compile() 253 insn = &uncompacted; in brw_dump_compile()
|
D | brw_eu.h | 416 struct brw_instruction *uncompacted);
|