Lines Matching defs:ALU_CASE
550 #define ALU_CASE(nir, _op) \
767 ALU_CASE(fadd, fadd);
768 ALU_CASE(fmul, fmul);
769 ALU_CASE(fmin, fmin);
770 ALU_CASE(fmax, fmax);
771 ALU_CASE(imin, imin);
772 ALU_CASE(imax, imax);
773 ALU_CASE(umin, umin);
774 ALU_CASE(umax, umax);
775 ALU_CASE(ffloor, ffloor);
776 ALU_CASE(fround_even, froundeven);
777 ALU_CASE(ftrunc, ftrunc);
778 ALU_CASE(fceil, fceil);
779 ALU_CASE(fdot3, fdot3);
780 ALU_CASE(fdot4, fdot4);
781 ALU_CASE(iadd, iadd);
782 ALU_CASE(isub, isub);
783 ALU_CASE(iadd_sat, iaddsat);
784 ALU_CASE(isub_sat, isubsat);
785 ALU_CASE(uadd_sat, uaddsat);
786 ALU_CASE(usub_sat, usubsat);
787 ALU_CASE(imul, imul);
788 ALU_CASE(imul_high, imul);
789 ALU_CASE(umul_high, imul);
790 ALU_CASE(uclz, iclz);
793 ALU_CASE(iabs, iabsdiff);
795 ALU_CASE(uabs_isub, iabsdiff);
796 ALU_CASE(uabs_usub, uabsdiff);
798 ALU_CASE(mov, imov);
829 ALU_CASE(frcp, frcp);
830 ALU_CASE(frsq, frsqrt);
831 ALU_CASE(fsqrt, fsqrt);
832 ALU_CASE(fexp2, fexp2);
833 ALU_CASE(flog2, flog2);
853 ALU_CASE(fsin, fsinpi);
854 ALU_CASE(fcos, fcospi);
858 ALU_CASE(inot, inor);
859 ALU_CASE(iand, iand);
860 ALU_CASE(ior, ior);
861 ALU_CASE(ixor, ixor);
862 ALU_CASE(ishl, ishl);
863 ALU_CASE(ishr, iasr);
864 ALU_CASE(ushr, ilsr);
883 ALU_CASE(fabs, fmov);
884 ALU_CASE(fneg, fmov);
885 ALU_CASE(fsat, fmov);
886 ALU_CASE(fsat_signed_mali, fmov);
887 ALU_CASE(fclamp_pos_mali, fmov);
1163 #undef ALU_CASE