Home
last modified time | relevance | path

Searched refs:BRW_CONDITIONAL_Z (Results 1 – 23 of 23) sorted by relevance

/external/mesa3d/src/intel/compiler/
Dbrw_fs_cmod_propagation.cpp176 if (cond != BRW_CONDITIONAL_Z && cond != BRW_CONDITIONAL_NZ) in cmod_propagate_not()
326 inst->conditional_mod != BRW_CONDITIONAL_Z && in opt_cmod_propagation_local()
475 if (cond != BRW_CONDITIONAL_Z && in opt_cmod_propagation_local()
490 if (cond == BRW_CONDITIONAL_Z) in opt_cmod_propagation_local()
Dtest_fs_cmod_propagation.cpp747 bld.CMP(bld.null_reg_f(), dst0, zero, BRW_CONDITIONAL_Z); in TEST_F()
764 EXPECT_EQ(BRW_CONDITIONAL_Z, instruction(block0, 0)->conditional_mod); in TEST_F()
778 bld.CMP(bld.null_reg_f(), dst0, zero, BRW_CONDITIONAL_Z); in TEST_F()
800 EXPECT_EQ(BRW_CONDITIONAL_Z, instruction(block0, 2)->conditional_mod); in TEST_F()
933 set_condmod(BRW_CONDITIONAL_Z, in TEST_F()
1641 test_positive_float_saturate_prop(BRW_CONDITIONAL_Z, BRW_CONDITIONAL_LE, in TEST_F()
1660 test_negative_float_saturate_prop(BRW_CONDITIONAL_Z, BRW_OPCODE_MOV); in TEST_F()
1662 test_positive_float_saturate_prop(BRW_CONDITIONAL_Z, BRW_CONDITIONAL_LE, in TEST_F()
1847 test_negative_int_saturate_prop(BRW_CONDITIONAL_Z, BRW_OPCODE_CMP); in TEST_F()
1863 test_negative_int_saturate_prop(BRW_CONDITIONAL_Z, BRW_OPCODE_MOV); in TEST_F()
[all …]
Dbrw_eu.cpp48 case BRW_CONDITIONAL_Z: in brw_negate_cmod()
51 return BRW_CONDITIONAL_Z; in brw_negate_cmod()
72 case BRW_CONDITIONAL_Z: in brw_swap_cmod()
Dbrw_compile_sf.c777 brw_inst_set_cond_modifier(p->devinfo, brw_last_inst, BRW_CONDITIONAL_Z); in brw_emit_anyprim_setup()
788 brw_inst_set_cond_modifier(p->devinfo, brw_last_inst, BRW_CONDITIONAL_Z); in brw_emit_anyprim_setup()
794 brw_inst_set_cond_modifier(p->devinfo, brw_last_inst, BRW_CONDITIONAL_Z); in brw_emit_anyprim_setup()
Dtest_fs_copy_propagation.cpp167 { BRW_CONDITIONAL_Z , 0.5f, false }, in TEST_F()
Dbrw_clip_util.c445 brw_inst_set_cond_modifier(p->devinfo, brw_last_inst, BRW_CONDITIONAL_Z); in brw_clip_ff_sync()
Dbrw_vec4_tcs.cpp128 set_condmod(BRW_CONDITIONAL_Z, in emit_thread_end()
Dgen6_gs_visitor.cpp327 emit(CMP(dst_null_ud(), this->first_vertex, brw_imm_ud(0u), BRW_CONDITIONAL_Z)); in emit_thread_end()
Dbrw_eu_defines.h123 BRW_CONDITIONAL_Z = 1, enumerator
Dbrw_vec4_gs_visitor.cpp468 inst->conditional_mod = BRW_CONDITIONAL_Z; in gs_emit_vertex()
Dbrw_shader.cpp93 return BRW_CONDITIONAL_Z; in brw_conditional_for_comparison()
Dtest_vec4_cmod_propagation.cpp225 set_condmod(BRW_CONDITIONAL_Z, in TEST_F()
Dbrw_nir.c1313 return BRW_CONDITIONAL_Z; in brw_cmod_for_nir_comparison()
Dbrw_fs_nir.cpp2370 inst->conditional_mod = BRW_CONDITIONAL_Z; in emit_gs_vertex()
3466 cmp->conditional_mod = BRW_CONDITIONAL_Z; in nir_emit_fs_intrinsic()
3480 brw_imm_d(0), BRW_CONDITIONAL_Z); in nir_emit_fs_intrinsic()
5071 bld.CMP(bld.null_reg_d(), value, uniformized, BRW_CONDITIONAL_Z); in nir_emit_intrinsic()
Dbrw_disasm.c104 [BRW_CONDITIONAL_Z] = ".z",
Dbrw_vec4.cpp1938 test->conditional_mod = BRW_CONDITIONAL_Z; in emit_shader_time_end()
Dbrw_fs.cpp628 set_condmod(BRW_CONDITIONAL_Z, in emit_shader_time_end()
2661 if ((inst->conditional_mod == BRW_CONDITIONAL_Z || in opt_algebraic()
2757 if ((inst->conditional_mod == BRW_CONDITIONAL_Z || in opt_algebraic()
Dbrw_eu_emit.c3330 brw_inst_set_cond_modifier(devinfo, inst, BRW_CONDITIONAL_Z); in brw_find_live_channel()
/external/igt-gpu-tools/assembler/
Dlex.l436 ".z" { yylval.integer = BRW_CONDITIONAL_Z; return ZERO; }
437 ".e" { yylval.integer = BRW_CONDITIONAL_Z; return EQUAL; }
Dbrw_eu.c48 case BRW_CONDITIONAL_Z: in brw_swap_cmod()
Dbrw_defines.h573 #define BRW_CONDITIONAL_Z 1 macro
Dbrw_disasm.c93 [BRW_CONDITIONAL_Z] = ".e",
/external/mesa3d/src/intel/tools/
Di965_lex.l356 ".e" { yylval.integer = BRW_CONDITIONAL_Z; return EQUAL; }
366 ".z" { yylval.integer = BRW_CONDITIONAL_Z; return ZERO; }