Home
last modified time | relevance | path

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

/third_party/mesa3d/src/gallium/drivers/llvmpipe/
Dlp_state_fs_analysis.c96 if ((info->base.opcode_count[TGSI_OPCODE_TEX] != 4 && in match_aero_minification_shader()
97 info->base.opcode_count[TGSI_OPCODE_SAMPLE] != 4) || in match_aero_minification_shader()
464 (shader->info.base.opcode_count[TGSI_OPCODE_TEX] + in llvmpipe_fs_analyse()
465 shader->info.base.opcode_count[TGSI_OPCODE_SAMPLE] + in llvmpipe_fs_analyse()
466 shader->info.base.opcode_count[TGSI_OPCODE_MOV] + in llvmpipe_fs_analyse()
467 shader->info.base.opcode_count[TGSI_OPCODE_MUL] + in llvmpipe_fs_analyse()
468 shader->info.base.opcode_count[TGSI_OPCODE_RET] + in llvmpipe_fs_analyse()
469 shader->info.base.opcode_count[TGSI_OPCODE_END] == in llvmpipe_fs_analyse()
/third_party/mesa3d/src/gallium/drivers/svga/
Dsvga_tgsi_insn.c3547 if (emit->info.opcode_count[TGSI_OPCODE_DST] >= 1 || in needs_to_create_common_immediate()
3548 emit->info.opcode_count[TGSI_OPCODE_SSG] >= 1 || in needs_to_create_common_immediate()
3549 emit->info.opcode_count[TGSI_OPCODE_LIT] >= 1) in needs_to_create_common_immediate()
3571 if (emit->info.opcode_count[TGSI_OPCODE_CMP] >= 1) in needs_to_create_common_immediate()
3578 if (emit->info.opcode_count[TGSI_OPCODE_IF] >= 1 || in needs_to_create_common_immediate()
3579 emit->info.opcode_count[TGSI_OPCODE_BGNLOOP] >= 1 || in needs_to_create_common_immediate()
3580 emit->info.opcode_count[TGSI_OPCODE_DDX] >= 1 || in needs_to_create_common_immediate()
3581 emit->info.opcode_count[TGSI_OPCODE_DDY] >= 1 || in needs_to_create_common_immediate()
3582 emit->info.opcode_count[TGSI_OPCODE_ROUND] >= 1 || in needs_to_create_common_immediate()
3583 emit->info.opcode_count[TGSI_OPCODE_SGE] >= 1 || in needs_to_create_common_immediate()
[all …]
Dsvga_tgsi.c421 info->uses_image_size = tgsi_info->opcode_count[TGSI_OPCODE_RESQ] ? 1 : 0; in svga_tgsi_scan_shader()
Dsvga_tgsi_vgpu10.c3179 if (emit->info.opcode_count[TGSI_OPCODE_LIT] > 0) { in alloc_common_immediates()
3190 if (emit->info.opcode_count[TGSI_OPCODE_IMSB] > 0 || in alloc_common_immediates()
3191 emit->info.opcode_count[TGSI_OPCODE_UMSB] > 0) { in alloc_common_immediates()
3196 if (emit->info.opcode_count[TGSI_OPCODE_UBFE] > 0 || in alloc_common_immediates()
3197 emit->info.opcode_count[TGSI_OPCODE_IBFE] > 0 || in alloc_common_immediates()
3198 emit->info.opcode_count[TGSI_OPCODE_BFI] > 0) { in alloc_common_immediates()
3231 if (emit->info.opcode_count[TGSI_OPCODE_DNEG] > 0) { in alloc_common_immediates()
3236 if (emit->info.opcode_count[TGSI_OPCODE_DSQRT] > 0 || in alloc_common_immediates()
3237 emit->info.opcode_count[TGSI_OPCODE_DTRUNC] > 0) { in alloc_common_immediates()
3244 if (emit->info.opcode_count[TGSI_OPCODE_INTERP_OFFSET] > 0) { in alloc_common_immediates()
[all …]
/third_party/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_scan.h82 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.c347 info->opcode_count[fullinst->Instruction.Opcode]++; in scan_instruction()
920 info->uses_kill = (info->opcode_count[TGSI_OPCODE_KILL_IF] || in tgsi_scan_shader()
921 info->opcode_count[TGSI_OPCODE_KILL]); in tgsi_scan_shader()
/third_party/mesa3d/src/gallium/drivers/softpipe/
Dsp_state_shader.c119 info.opcode_count[TGSI_OPCODE_BGNLOOP], in softpipe_shader_db()
/third_party/mesa3d/src/gallium/drivers/r600/
Dr600_shader.c3471 shader->num_loops = ctx.info.opcode_count[TGSI_OPCODE_BGNLOOP]; in r600_shader_from_tgsi()
3472 shader->uses_interpolate_at_sample = ctx.info.opcode_count[TGSI_OPCODE_INTERP_SAMPLE] != 0; in r600_shader_from_tgsi()