Home
last modified time | relevance | path

Searched refs:else_inst (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/intel/compiler/
Dbrw_dead_control_flow.cpp58 backend_instruction *const else_inst = prev_inst; in dead_control_flow_eliminate() local
60 else_inst->remove(else_block); in dead_control_flow_eliminate()
103 backend_instruction *const else_inst = inst; in dead_control_flow_eliminate() local
109 else_inst->remove(else_block); in dead_control_flow_eliminate()
Dbrw_eu_emit.c1349 brw_inst *if_inst, brw_inst *else_inst) in convert_IF_ELSE_to_ADD() argument
1358 assert(else_inst == NULL || brw_inst_opcode(devinfo, else_inst) == BRW_OPCODE_ELSE); in convert_IF_ELSE_to_ADD()
1372 if (else_inst != NULL) { in convert_IF_ELSE_to_ADD()
1376 brw_inst_set_opcode(devinfo, else_inst, BRW_OPCODE_ADD); in convert_IF_ELSE_to_ADD()
1378 brw_inst_set_imm_ud(devinfo, if_inst, (else_inst - if_inst + 1) * 16); in convert_IF_ELSE_to_ADD()
1379 brw_inst_set_imm_ud(devinfo, else_inst, (next_inst - else_inst) * 16); in convert_IF_ELSE_to_ADD()
1390 brw_inst *if_inst, brw_inst *else_inst, brw_inst *endif_inst) in patch_IF_ELSE() argument
1411 assert(else_inst == NULL || brw_inst_opcode(devinfo, else_inst) == BRW_OPCODE_ELSE); in patch_IF_ELSE()
1418 if (else_inst == NULL) { in patch_IF_ELSE()
1436 brw_inst_set_exec_size(devinfo, else_inst, brw_inst_exec_size(devinfo, if_inst)); in patch_IF_ELSE()
[all …]
/external/mesa3d/src/compiler/glsl/
Dloop_analysis.cpp796 ir_instruction *else_inst = in try_add_loop_terminator() local
799 if (is_break(inst) || is_break(else_inst)) in try_add_loop_terminator()
800 ls->insert(ir, is_break(else_inst)); in try_add_loop_terminator()