Lines Matching refs:opCMP
9777 IROp opCMP = isGE ? (isD ? Iop_CmpLE64Fx2 : Iop_CmpLE32Fx4)
9780 assign(res, isGE ? binop(opCMP, getQReg128(mm), getQReg128(nn)) // swapd
9781 : binop(opCMP, getQReg128(nn), getQReg128(mm)));
9793 IROp opCMP = isD ? Iop_CmpLT64Fx2 : Iop_CmpLT32Fx4;
9795 assign(res, binop(opCMP, getQReg128(mm), getQReg128(nn))); // swapd
9809 IROp opCMP = isGT ? (isD ? Iop_CmpLT64Fx2 : Iop_CmpLT32Fx4)
9813 assign(res, binop(opCMP, unop(opABS, getQReg128(mm)),
9980 IROp opCmp = Iop_INVALID;
9984 case 1: nm = "fcmgt"; opCmp = opCmpLT; swap = True; break;
9985 case 2: nm = "fcmeq"; opCmp = opCmpEQ; break;
9986 case 3: nm = "fcmlt"; opCmp = opCmpLT; break;
9987 case 4: nm = "fcmge"; opCmp = opCmpLE; swap = True; break;
9988 case 5: nm = "fcmle"; opCmp = opCmpLE; break;
9993 assign(res, swap ? binop(opCmp, zero, getQReg128(nn))
9994 : binop(opCmp, getQReg128(nn), zero));
11676 IROp opCMP = isGE ? (isD ? Iop_CmpLE64Fx2 : Iop_CmpLE32Fx4)
11679 assign(t1, isGE ? binop(opCMP, getQReg128(mm), getQReg128(nn)) // swapd
11680 : binop(opCMP, getQReg128(nn), getQReg128(mm)));
11692 IROp opCMP = isD ? Iop_CmpLT64Fx2 : Iop_CmpLT32Fx4;
11694 assign(t1, binop(opCMP, getQReg128(mm), getQReg128(nn))); // swapd
11708 IROp opCMP = isGT ? (isD ? Iop_CmpLT64Fx2 : Iop_CmpLT32Fx4)
11712 assign(t1, binop(opCMP, unop(opABS, getQReg128(mm)),
12094 IROp opCmp = Iop_INVALID;
12098 case 1: nm = "fcmgt"; opCmp = opCmpLT; swap = True; break;
12099 case 2: nm = "fcmeq"; opCmp = opCmpEQ; break;
12100 case 3: nm = "fcmlt"; opCmp = opCmpLT; break;
12101 case 4: nm = "fcmge"; opCmp = opCmpLE; swap = True; break;
12102 case 5: nm = "fcmle"; opCmp = opCmpLE; break;
12107 assign(res, swap ? binop(opCmp, zero, getQReg128(nn))
12108 : binop(opCmp, getQReg128(nn), zero));