Searched refs:endif_inst (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/intel/compiler/ |
D | brw_predicated_break.cpp | 77 backend_instruction *endif_inst = block->next()->start(); in opt_predicated_break() local 78 if (endif_inst->opcode != BRW_OPCODE_ENDIF) in opt_predicated_break() 99 endif_inst->remove(endif_block); in opt_predicated_break()
|
D | brw_dead_control_flow.cpp | 68 backend_instruction *const endif_inst = inst; in dead_control_flow_eliminate() local 85 endif_inst->remove(endif_block); in dead_control_flow_eliminate()
|
D | brw_eu_emit.c | 1514 brw_inst *if_inst, brw_inst *else_inst, brw_inst *endif_inst) in patch_IF_ELSE() argument 1534 assert(endif_inst != NULL); in patch_IF_ELSE() 1539 assert(brw_inst_opcode(devinfo, endif_inst) == BRW_OPCODE_ENDIF); in patch_IF_ELSE() 1540 brw_inst_set_exec_size(devinfo, endif_inst, brw_inst_exec_size(devinfo, if_inst)); in patch_IF_ELSE() 1550 br * (endif_inst - if_inst + 1)); in patch_IF_ELSE() 1554 brw_inst_set_gen6_jump_count(devinfo, if_inst, br*(endif_inst - if_inst)); in patch_IF_ELSE() 1556 brw_inst_set_uip(devinfo, if_inst, br * (endif_inst - if_inst)); in patch_IF_ELSE() 1557 brw_inst_set_jip(devinfo, if_inst, br * (endif_inst - if_inst)); in patch_IF_ELSE() 1578 br * (endif_inst - else_inst + 1)); in patch_IF_ELSE() 1583 br * (endif_inst - else_inst)); in patch_IF_ELSE() [all …]
|
/external/igt-gpu-tools/assembler/ |
D | brw_eu_emit.c | 1292 struct brw_instruction *endif_inst) in patch_IF_ELSE() argument 1312 assert(endif_inst != NULL); in patch_IF_ELSE() 1322 assert(endif_inst->header.opcode == BRW_OPCODE_ENDIF); in patch_IF_ELSE() 1323 endif_inst->header.execution_size = if_inst->header.execution_size; in patch_IF_ELSE() 1332 if_inst->bits3.if_else.jump_count = br * (endif_inst - if_inst + 1); in patch_IF_ELSE() 1337 if_inst->bits1.branch_gen6.jump_count = br * (endif_inst - if_inst); in patch_IF_ELSE() 1339 if_inst->bits3.break_cont.uip = br * (endif_inst - if_inst); in patch_IF_ELSE() 1340 if_inst->bits3.break_cont.jip = br * (endif_inst - if_inst); in patch_IF_ELSE() 1359 else_inst->bits3.if_else.jump_count = br*(endif_inst - else_inst + 1); in patch_IF_ELSE() 1364 else_inst->bits1.branch_gen6.jump_count = br*(endif_inst - else_inst); in patch_IF_ELSE() [all …]
|