Home
last modified time | relevance | path

Searched refs:following_if (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/compiler/nir/
Dnir_opt_dce.c121 nir_if *following_if = nir_block_get_following_if(block); in init_block() local
122 if (following_if) { in init_block()
123 if (following_if->condition.is_ssa && in init_block()
124 !following_if->condition.ssa->parent_instr->pass_flags) in init_block()
125 worklist_push(worklist, following_if->condition.ssa->parent_instr); in init_block()
Dnir_opt_dead_cf.c221 nir_if *following_if = nir_block_get_following_if(block); in dead_cf_block() local
222 if (following_if) { in dead_cf_block()
224 nir_src_as_const_value(following_if->condition); in dead_cf_block()
229 opt_constant_if(following_if, const_value->u32[0] != 0); in dead_cf_block()
Dnir_liveness.c200 nir_if *following_if = nir_block_get_following_if(block); in nir_live_ssa_defs_impl() local
201 if (following_if) in nir_live_ssa_defs_impl()
202 set_src_live(&following_if->condition, block->live_in); in nir_live_ssa_defs_impl()
Dnir_lower_regs_to_ssa.c262 nir_if *following_if = nir_block_get_following_if(block); in nir_lower_regs_to_ssa_impl() local
263 if (following_if) in nir_lower_regs_to_ssa_impl()
264 rewrite_if_condition(following_if, &state); in nir_lower_regs_to_ssa_impl()
/external/mesa3d/src/intel/compiler/
Dbrw_nir_analyze_boolean_resolves.c247 nir_if *following_if = nir_block_get_following_if(block); in analyze_boolean_resolves_block() local
248 if (following_if) in analyze_boolean_resolves_block()
249 src_mark_needs_resolve(&following_if->condition, NULL); in analyze_boolean_resolves_block()