Searched refs:BRW_OPCODE_IF (Results 1 – 25 of 26) sorted by relevance
12
/third_party/mesa3d/src/intel/compiler/ |
D | brw_dead_control_flow.cpp | 65 prev_inst->opcode == BRW_OPCODE_IF) { in dead_control_flow_eliminate() 102 prev_inst->opcode == BRW_OPCODE_IF) { in dead_control_flow_eliminate()
|
D | test_fs_scoreboard.cpp | 586 bld.emit(BRW_OPCODE_IF); in TEST_F() 619 bld.emit(BRW_OPCODE_IF); in TEST_F() 649 bld.emit(BRW_OPCODE_IF); in TEST_F() 682 bld.emit(BRW_OPCODE_IF); in TEST_F() 715 bld.emit(BRW_OPCODE_IF); in TEST_F() 753 bld.emit(BRW_OPCODE_IF); in TEST_F() 798 bld.emit(BRW_OPCODE_IF); in TEST_F() 848 bld.emit(BRW_OPCODE_IF); in TEST_F()
|
D | brw_cfg.cpp | 112 return op == BRW_OPCODE_IF || in ends_block() 198 case BRW_OPCODE_IF: in cfg_t() 254 assert(cur_if->end()->opcode == BRW_OPCODE_IF); in cfg_t()
|
D | brw_vec4_builder.h | 503 return set_predicate(predicate, emit(BRW_OPCODE_IF)); in IF() 515 emit(BRW_OPCODE_IF, in IF()
|
D | brw_predicated_break.cpp | 134 if (if_inst->opcode != BRW_OPCODE_IF) in opt_predicated_break()
|
D | brw_fs_sel_peephole.cpp | 137 if (if_inst->opcode != BRW_OPCODE_IF) in opt_peephole_sel()
|
D | brw_disasm.c | 41 return opcode == BRW_OPCODE_IF || in brw_has_jip() 56 return (devinfo->ver >= 7 && opcode == BRW_OPCODE_IF) || in brw_has_uip() 69 return opcode == BRW_OPCODE_IF || in has_branch_ctrl() 1947 opcode != BRW_OPCODE_IF && in brw_disassemble_inst() 1992 } else if (devinfo->ver < 6 && (opcode == BRW_OPCODE_IF || in brw_disassemble_inst()
|
D | brw_cfg.h | 200 return op == BRW_OPCODE_IF || in bblock_ends_with_control_flow()
|
D | brw_ir_vec4.h | 337 opcode != BRW_OPCODE_IF && in writes_flag()
|
D | brw_vec4_visitor.cpp | 198 inst = new(mem_ctx) vec4_instruction(BRW_OPCODE_IF); in ALU1() 216 inst = new(mem_ctx) vec4_instruction(BRW_OPCODE_IF, dst_null_d(), in IF()
|
D | brw_fs_lower_regioning.cpp | 355 inst->opcode == BRW_OPCODE_IF || in has_inconsistent_cmod()
|
D | brw_eu_emit.c | 1427 insn = next_insn(p, BRW_OPCODE_IF); in brw_IF() 1476 insn = next_insn(p, BRW_OPCODE_IF); in gfx6_IF() 1505 assert(if_inst != NULL && brw_inst_opcode(p->isa, if_inst) == BRW_OPCODE_IF); in convert_IF_ELSE_to_ADD() 1557 assert(if_inst != NULL && brw_inst_opcode(p->isa, if_inst) == BRW_OPCODE_IF); in patch_IF_ELSE() 2919 case BRW_OPCODE_IF: in brw_find_next_block_end()
|
D | brw_eu_defines.h | 206 BRW_OPCODE_IF, enumerator
|
D | brw_eu.c | 646 { BRW_OPCODE_IF, 34, "if", 0, 0, GFX_ALL },
|
D | brw_fs_builder.h | 713 return set_predicate(predicate, emit(BRW_OPCODE_IF)); in IF()
|
D | brw_shader.cpp | 932 case BRW_OPCODE_IF: in is_control_flow()
|
D | brw_fs.cpp | 1046 opcode != BRW_OPCODE_IF && in flags_written() 2979 if (inst->opcode == BRW_OPCODE_IF || inst->opcode == BRW_OPCODE_DO) { in opt_register_renaming() 3299 case BRW_OPCODE_IF: in eliminate_find_live_channel() 4878 case BRW_OPCODE_IF: in get_lowered_simd_width() 5668 inst->opcode != BRW_OPCODE_IF && in dump_instruction() 6398 case BRW_OPCODE_IF: in fixup_nomask_control_flow()
|
D | brw_vec4.cpp | 1201 case BRW_OPCODE_IF: in eliminate_find_live_channel() 1333 inst->opcode != BRW_OPCODE_IF && in dump_instruction()
|
D | brw_fs_reg_allocate.cpp | 920 case BRW_OPCODE_IF: in set_spill_costs()
|
D | brw_fs_copy_propagation.cpp | 890 case BRW_OPCODE_IF: in try_constant_propagate()
|
D | brw_ir_performance.cpp | 599 case BRW_OPCODE_IF: in instruction_desc()
|
D | brw_eu_compact.c | 2588 case BRW_OPCODE_IF: in brw_compact_instructions()
|
D | brw_vec4_generator.cpp | 1728 case BRW_OPCODE_IF: in generate_code()
|
/third_party/mesa3d/src/intel/tools/ |
D | i965_asm.c | 149 case BRW_OPCODE_IF: in i965_postprocess_labels() 170 case BRW_OPCODE_IF: in i965_postprocess_labels()
|
D | i965_lex.l | 89 if { yylval.integer = BRW_OPCODE_IF; return IF; }
|
12