Home
last modified time | relevance | path

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

/third_party/mesa3d/src/compiler/nir/
Dnir_control_flow.c457 nir_jump_instr *jump_instr = nir_instr_as_jump(instr); in nir_handle_add_jump() local
468 switch (jump_instr->type) { in nir_handle_add_jump()
490 link_blocks(block, jump_instr->target, NULL); in nir_handle_add_jump()
494 link_blocks(block, jump_instr->else_target, jump_instr->target); in nir_handle_add_jump()
Dnir_opt_gcm.c721 nir_instr *jump_instr = nir_block_last_instr(instr->block); in gcm_place_instr() local
722 if (jump_instr && jump_instr->type == nir_instr_type_jump) { in gcm_place_instr()
723 exec_node_insert_node_before(&jump_instr->node, &instr->node); in gcm_place_instr()
Dnir_lower_goto_ifs.c899 nir_jump_instr *jump_instr = NULL; in nir_structurize() local
902 jump_instr = nir_instr_as_jump(instr); in nir_structurize()
910 if (jump_instr->type == nir_jump_goto_if) { in nir_structurize()
911 route_to_cond(b, routing, jump_instr->condition, in nir_structurize()
912 jump_instr->target, jump_instr->else_target); in nir_structurize()
Dnir.h2960 nir_jump_instr *jump_instr = nir_instr_as_jump(instr); in nir_block_ends_in_return_or_halt() local
2961 return jump_instr->type == nir_jump_return || in nir_block_ends_in_return_or_halt()
2962 jump_instr->type == nir_jump_halt; in nir_block_ends_in_return_or_halt()
Dnir.c1146 nir_jump_instr *jump_instr = nir_instr_as_jump(instr); in nir_instr_remove_v() local
1147 nir_handle_remove_jump(instr->block, jump_instr->type); in nir_instr_remove_v()