Home
last modified time | relevance | path

Searched refs:BRW_CONDITIONAL_GE (Results 1 – 20 of 20) sorted by relevance

/third_party/mesa3d/src/intel/compiler/
Dtest_vec4_cmod_propagation.cpp166 bld.CMP(dest_null, src_reg(dest), zero, BRW_CONDITIONAL_GE); in TEST_F()
188 EXPECT_EQ(BRW_CONDITIONAL_GE, instruction(block0, 0)->conditional_mod); in TEST_F()
201 bld.CMP(dest_null, src_reg(dest), zero, BRW_CONDITIONAL_GE); in TEST_F()
225 EXPECT_EQ(BRW_CONDITIONAL_GE, instruction(block0, 1)->conditional_mod); in TEST_F()
271 bld.CMP(bld.null_reg_ud(), src_reg(dest), zero, BRW_CONDITIONAL_GE); in TEST_F()
294 EXPECT_EQ(BRW_CONDITIONAL_GE, instruction(block0, 1)->conditional_mod); in TEST_F()
306 bld.CMP(bld.null_reg_f(), src2, zero, BRW_CONDITIONAL_GE); in TEST_F()
307 bld.CMP(bld.null_reg_f(), src_reg(dest), zero, BRW_CONDITIONAL_GE); in TEST_F()
331 EXPECT_EQ(BRW_CONDITIONAL_GE, instruction(block0, 1)->conditional_mod); in TEST_F()
333 EXPECT_EQ(BRW_CONDITIONAL_GE, instruction(block0, 2)->conditional_mod); in TEST_F()
[all …]
Dtest_fs_cmod_propagation.cpp131 bld.CMP(bld.null_reg_f(), dest, zero, BRW_CONDITIONAL_GE); in TEST_F()
152 EXPECT_EQ(BRW_CONDITIONAL_GE, instruction(block0, 0)->conditional_mod); in TEST_F()
163 bld.CMP(bld.null_reg_f(), dest, zero, BRW_CONDITIONAL_GE) in TEST_F()
186 EXPECT_EQ(BRW_CONDITIONAL_GE, instruction(block0, 0)->conditional_mod); in TEST_F()
197 bld.CMP(bld.null_reg_f(), dest, nonzero, BRW_CONDITIONAL_GE); in TEST_F()
219 EXPECT_EQ(BRW_CONDITIONAL_GE, instruction(block0, 1)->conditional_mod); in TEST_F()
229 bld.CMP(bld.null_reg_ud(), dest, zero, BRW_CONDITIONAL_GE); in TEST_F()
251 EXPECT_EQ(BRW_CONDITIONAL_GE, instruction(block0, 1)->conditional_mod); in TEST_F()
295 bld.CMP(bld.null_reg_f(), src2, zero, BRW_CONDITIONAL_GE); in TEST_F()
296 bld.CMP(bld.null_reg_f(), dest, zero, BRW_CONDITIONAL_GE); in TEST_F()
[all …]
Dtest_fs_copy_propagation.cpp167 { BRW_CONDITIONAL_GE , 0.1f, true }, in TEST_F()
169 { BRW_CONDITIONAL_GE , 0.5f, true }, in TEST_F()
171 { BRW_CONDITIONAL_GE , 0.9f, true }, in TEST_F()
173 { BRW_CONDITIONAL_GE , -1.5f, false }, in TEST_F()
175 { BRW_CONDITIONAL_GE , 1.5f, false }, in TEST_F()
Dbrw_clip_unfilled.c102 conditional = BRW_CONDITIONAL_GE; in cull_direction()
139 conditional = BRW_CONDITIONAL_GE; in copy_bfc()
206 BRW_CONDITIONAL_GE, in compute_offset()
219 c->key.offset_clamp < 0 ? BRW_CONDITIONAL_GE : BRW_CONDITIONAL_L, in compute_offset()
435 BRW_CONDITIONAL_GE, in emit_unfilled_primitives()
Dbrw_eu.c54 case BRW_CONDITIONAL_GE: in brw_negate_cmod()
57 return BRW_CONDITIONAL_GE; in brw_negate_cmod()
77 case BRW_CONDITIONAL_GE: in brw_swap_cmod()
82 return BRW_CONDITIONAL_GE; in brw_swap_cmod()
Dbrw_fs_builder.h392 assert(mod == BRW_CONDITIONAL_GE || mod == BRW_CONDITIONAL_L); in emit_minmax()
461 assert(mod == BRW_CONDITIONAL_L || mod == BRW_CONDITIONAL_GE); in emit_scan_step()
462 if (mod == BRW_CONDITIONAL_GE) in emit_scan_step()
Dbrw_shader.cpp91 return BRW_CONDITIONAL_GE; in brw_conditional_for_comparison()
874 if (conditional_mod == BRW_CONDITIONAL_GE || in is_commutative()
Dbrw_clip_tri.c319 load_clip_distance(c, vtx, c->reg.dp, hpos_offset, BRW_CONDITIONAL_GE); in brw_clip_tri()
430 BRW_CONDITIONAL_GE, in brw_clip_tri()
Dbrw_vec4_builder.h338 assert(mod == BRW_CONDITIONAL_GE || mod == BRW_CONDITIONAL_L); in emit_minmax()
Dbrw_fs_copy_propagation.cpp655 if ((inst->conditional_mod != BRW_CONDITIONAL_GE && in try_copy_propagate()
917 inst->conditional_mod == BRW_CONDITIONAL_GE || in try_constant_propagate()
Dgfx6_gs_visitor.cpp382 emit(CMP(dst_null_d(), vertex, this->vertex_count, BRW_CONDITIONAL_GE)); in emit_thread_end()
Dbrw_vec4_visitor.cpp515 emit_minmax(BRW_CONDITIONAL_GE, max, src_reg(scaled), brw_imm_f(-1.0f)); in emit_unpack_snorm_4x8()
543 emit_minmax(BRW_CONDITIONAL_GE, max, src0, brw_imm_f(-1.0f)); in emit_pack_snorm_4x8()
Dbrw_eu_defines.h106 BRW_CONDITIONAL_GE = 4, enumerator
Dbrw_vec4_nir.cpp1436 inst = emit_minmax(BRW_CONDITIONAL_GE, dst, op[0], op[1]); in nir_emit_alu()
2277 emit_minmax(BRW_CONDITIONAL_GE, writemask(inst->dst, WRITEMASK_Z), in nir_emit_texture()
Dbrw_fs_visitor.cpp569 return BRW_CONDITIONAL_GE; in cond_for_alpha_func()
Dbrw_fs_nir.cpp1695 inst = bld.emit_minmax(result, op[0], op[1], BRW_CONDITIONAL_GE); in nir_emit_alu()
4114 case nir_op_imax: return BRW_CONDITIONAL_GE; in brw_cond_mod_for_nir_reduction_op()
4115 case nir_op_umax: return BRW_CONDITIONAL_GE; in brw_cond_mod_for_nir_reduction_op()
4116 case nir_op_fmax: return BRW_CONDITIONAL_GE; in brw_cond_mod_for_nir_reduction_op()
6544 bld.emit_minmax(nir_dest[2], depth, brw_imm_d(1), BRW_CONDITIONAL_GE); in nir_emit_texture()
Dbrw_nir.c1459 return BRW_CONDITIONAL_GE; in brw_cmod_for_nir_comparison()
Dbrw_disasm.c107 [BRW_CONDITIONAL_GE] = ".ge",
Dbrw_fs.cpp2729 case BRW_CONDITIONAL_GE: in opt_algebraic()
/third_party/mesa3d/src/intel/tools/
Di965_lex.l359 ".ge" { yylval.integer = BRW_CONDITIONAL_GE; return GREATER_EQUAL; }