Searched refs:BRW_OPCODE_ELSE (Results 1 – 25 of 28) sorted by relevance
12
/external/mesa3d/src/intel/compiler/ |
D | brw_dead_control_flow.cpp | 58 prev_inst->opcode == BRW_OPCODE_ELSE) { in dead_control_flow_eliminate() 101 } else if (inst->opcode == BRW_OPCODE_ELSE && in dead_control_flow_eliminate()
|
D | brw_cfg.cpp | 113 op == BRW_OPCODE_ELSE || in ends_block() 220 case BRW_OPCODE_ELSE: in cfg_t() 255 assert(!cur_else || cur_else->end()->opcode == BRW_OPCODE_ELSE); in cfg_t()
|
D | brw_fs_sel_peephole.cpp | 146 if (child->block->prev()->end()->opcode == BRW_OPCODE_ELSE) { in opt_peephole_sel()
|
D | test_fs_scoreboard.cpp | 703 bld.emit(BRW_OPCODE_ELSE); in TEST_F() 744 bld.emit(BRW_OPCODE_ELSE); in TEST_F() 789 bld.emit(BRW_OPCODE_ELSE); in TEST_F() 836 bld.emit(BRW_OPCODE_ELSE); in TEST_F()
|
D | brw_cfg.h | 196 op == BRW_OPCODE_ELSE || in bblock_ends_with_control_flow()
|
D | brw_disasm.c | 42 opcode == BRW_OPCODE_ELSE || in brw_has_jip() 57 (devinfo->gen >= 8 && opcode == BRW_OPCODE_ELSE) || in brw_has_uip() 70 opcode == BRW_OPCODE_ELSE; in has_branch_ctrl() 1776 opcode == BRW_OPCODE_ELSE)) { in brw_disassemble_inst()
|
D | brw_vec4_copy_propagation.cpp | 62 inst->opcode != BRW_OPCODE_ELSE && in is_dominated_by_previous_instruction()
|
D | brw_eu_defines.h | 231 BRW_OPCODE_ELSE, enumerator
|
D | brw_eu_emit.c | 1482 assert(else_inst == NULL || brw_inst_opcode(devinfo, else_inst) == BRW_OPCODE_ELSE); in convert_IF_ELSE_to_ADD() 1535 assert(else_inst == NULL || brw_inst_opcode(devinfo, else_inst) == BRW_OPCODE_ELSE); in patch_IF_ELSE() 1606 insn = next_insn(p, BRW_OPCODE_ELSE); in brw_ELSE() 1675 if (brw_inst_opcode(devinfo, tmp) == BRW_OPCODE_ELSE) { in brw_ENDIF() 2882 case BRW_OPCODE_ELSE: in brw_find_next_block_end()
|
D | brw_eu.cpp | 643 { BRW_OPCODE_ELSE, 36, "else", 0, 0, GEN_ALL },
|
D | brw_shader.cpp | 918 case BRW_OPCODE_ELSE: in is_control_flow()
|
D | brw_eu_compact.c | 2157 (brw_inst_opcode(devinfo, insn) == BRW_OPCODE_ELSE && devinfo->gen <= 7)) in update_uip_jip() 2372 case BRW_OPCODE_ELSE: in brw_compact_instructions()
|
D | brw_ir_performance.cpp | 586 case BRW_OPCODE_ELSE: in instruction_desc()
|
D | brw_vec4_nir.cpp | 112 emit(BRW_OPCODE_ELSE); in nir_emit_if()
|
D | brw_vec4_generator.cpp | 1691 case BRW_OPCODE_ELSE: in generate_code()
|
D | brw_vec4.cpp | 1955 emit(BRW_OPCODE_ELSE); in emit_shader_time_end()
|
D | brw_fs_generator.cpp | 2188 case BRW_OPCODE_ELSE: in generate_code()
|
/external/mesa3d/src/intel/tools/ |
D | i965_asm.c | 150 case BRW_OPCODE_ELSE: in i965_postprocess_labels() 171 case BRW_OPCODE_ELSE: in i965_postprocess_labels()
|
D | i965_lex.l | 78 else { yylval.integer = BRW_OPCODE_ELSE; return ELSE; }
|
/external/igt-gpu-tools/assembler/ |
D | brw_eu_compact.c | 459 src->header.opcode == BRW_OPCODE_ELSE || in brw_try_compact_instruction() 757 case BRW_OPCODE_ELSE: in brw_compact_instructions()
|
D | brw_disasm.c | 77 [BRW_OPCODE_ELSE] = { .name = "else", .nsrc = 2, .ndst = 0 }, 1115 } else if (gen == 7 && (inst->header.opcode == BRW_OPCODE_ELSE || in brw_disasm() 1120 inst->header.opcode == BRW_OPCODE_ELSE || in brw_disasm()
|
D | lex.l | 141 "else" { yylval.integer = BRW_OPCODE_ELSE; return ELSE; }
|
D | brw_eu_emit.c | 1258 assert(else_inst == NULL || else_inst->header.opcode == BRW_OPCODE_ELSE); in convert_IF_ELSE_to_ADD() 1313 assert(else_inst == NULL || else_inst->header.opcode == BRW_OPCODE_ELSE); in patch_IF_ELSE() 1381 insn = next_insn(p, BRW_OPCODE_ELSE); in brw_ELSE() 1444 if (tmp->header.opcode == BRW_OPCODE_ELSE) { in brw_ENDIF() 2395 case BRW_OPCODE_ELSE: in brw_find_next_block_end()
|
D | brw_defines.h | 661 BRW_OPCODE_ELSE = 36, enumerator
|
D | gen8_disasm.c | 903 opcode == BRW_OPCODE_ELSE || in gen8_disassemble()
|
12