Home
last modified time | relevance | path

Searched refs:opcode_count (Results 1 – 9 of 9) sorted by relevance

/external/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_insn.c3477 if (emit->info.opcode_count[TGSI_OPCODE_DST] >= 1 || in needs_to_create_common_immediate()
3478 emit->info.opcode_count[TGSI_OPCODE_SSG] >= 1 || in needs_to_create_common_immediate()
3479 emit->info.opcode_count[TGSI_OPCODE_LIT] >= 1) in needs_to_create_common_immediate()
3501 if (emit->info.opcode_count[TGSI_OPCODE_CMP] >= 1) in needs_to_create_common_immediate()
3508 if (emit->info.opcode_count[TGSI_OPCODE_IF] >= 1 || in needs_to_create_common_immediate()
3509 emit->info.opcode_count[TGSI_OPCODE_BGNLOOP] >= 1 || in needs_to_create_common_immediate()
3510 emit->info.opcode_count[TGSI_OPCODE_DDX] >= 1 || in needs_to_create_common_immediate()
3511 emit->info.opcode_count[TGSI_OPCODE_DDY] >= 1 || in needs_to_create_common_immediate()
3512 emit->info.opcode_count[TGSI_OPCODE_ROUND] >= 1 || in needs_to_create_common_immediate()
3513 emit->info.opcode_count[TGSI_OPCODE_SGE] >= 1 || in needs_to_create_common_immediate()
[all …]
Dsvga_tgsi_vgpu10.c6035 if (emit->info.opcode_count[TGSI_OPCODE_LIT] > 0) { in alloc_common_immediates()
/external/virglrenderer/src/gallium/auxiliary/tgsi/
Dtgsi_scan.c102 info->opcode_count[fullinst->Instruction.Opcode]++; in tgsi_scan_shader()
454 info->uses_kill = (info->opcode_count[TGSI_OPCODE_KILL_IF] || in tgsi_scan_shader()
455 info->opcode_count[TGSI_OPCODE_KILL]); in tgsi_scan_shader()
Dtgsi_scan.h78 uint opcode_count[TGSI_OPCODE_LAST]; /**< opcode histogram */ member
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_scan.h85 uint opcode_count[TGSI_OPCODE_LAST]; /**< opcode histogram */ member
Dtgsi_lowering.c1465 #define OPCS(x) ((config->lower_ ## x) ? info->opcode_count[TGSI_OPCODE_ ## x] : 0) in tgsi_transform_lowering()
1548 n = info->opcode_count[TGSI_OPCODE_TEX] + in tgsi_transform_lowering()
1549 info->opcode_count[TGSI_OPCODE_TXP] + in tgsi_transform_lowering()
1550 info->opcode_count[TGSI_OPCODE_TXB] + in tgsi_transform_lowering()
1551 info->opcode_count[TGSI_OPCODE_TXB2] + in tgsi_transform_lowering()
1552 info->opcode_count[TGSI_OPCODE_TXL]; in tgsi_transform_lowering()
1554 n = info->opcode_count[TGSI_OPCODE_TXP]; in tgsi_transform_lowering()
Dtgsi_scan.c343 info->opcode_count[fullinst->Instruction.Opcode]++; in scan_instruction()
870 info->uses_kill = (info->opcode_count[TGSI_OPCODE_KILL_IF] || in tgsi_scan_shader()
871 info->opcode_count[TGSI_OPCODE_KILL]); in tgsi_scan_shader()
/external/mesa3d/src/gallium/auxiliary/nir/
Dtgsi_to_nir.c1940 (scan.opcode_count[TGSI_OPCODE_IF] + in tgsi_to_nir()
1941 scan.opcode_count[TGSI_OPCODE_UIF]) * 2); in tgsi_to_nir()
1943 scan.opcode_count[TGSI_OPCODE_BGNLOOP]); in tgsi_to_nir()
/external/mesa3d/src/gallium/drivers/radeonsi/
Dsi_state_shaders.c1417 if (sel->info.opcode_count[TGSI_OPCODE_INTERP_SAMPLE]) in si_shader_selector_key()