Lines Matching defs:lb
443 Operand lb, ub;
478 //! cfg: @match_func(min max med3 lb ub)
482 aco_print_operand(&cfg.lb, output);
489 //! v1: %res0 = @med3 @ub, @lb, %a
492 bld.vop2(cfg.max, bld.def(v1), cfg.lb, inputs[0])));
494 //! v1: %res1 = @med3 @lb, @ub, %a
496 writeout(1, bld.vop2(cfg.max, bld.def(v1), cfg.lb,
500 //! v1: %res2_tmp = @min @lb, %a
504 bld.vop2(cfg.min, bld.def(v1), cfg.lb, inputs[0])));
507 //! v1: %res3 = @min @lb, %res3_tmp
509 writeout(3, bld.vop2(cfg.min, bld.def(v1), cfg.lb,
514 //! v1: %res4_tmp = @max @lb, %a
518 bld.vop2(cfg.max, bld.def(v1), cfg.lb, inputs[0])));
534 //~f(16|32)! v1: %res7 = @med3 @ub, @lb, %a
536 Builder::Result max = bld.vop2(cfg.max, bld.def(v1), cfg.lb, inputs[0]);
543 //~f(16|32)! v1: %res8 = @max @lb, %res8_tmp
547 writeout(8, bld.vop2(cfg.max, bld.def(v1), cfg.lb, min));