Home | History | Annotate | Download | only in SelectionDAG

Lines Matching refs:Low

66 /// LimitFloatPrecision - Generate low-precision inline sequences for
72 cl::desc("Generate low-precision inline sequences "
1671 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1682 VT, CmpOp, DAG.getConstant(Low, VT));
1684 DAG.getConstant(High-Low, VT), ISD::SETULE);
2098 if (Small.Low == Small.High && Big.Low == Big.High && Small.BB == Big.BB) {
2099 const APInt& SmallValue = cast<ConstantInt>(Small.Low)->getValue();
2100 const APInt& BigValue = cast<ConstantInt>(Big.Low)->getValue();
2189 if (I->High == I->Low) {
2195 LHS = I->Low; MHS = SV; RHS = I->High;
2241 const APInt &First = cast<ConstantInt>(FrontCase.Low)->getValue();
2292 const APInt &Low = cast<ConstantInt>(I->Low)->getValue();
2295 if (Low.sle(TEI) && TEI.sle(High)) {
2367 const APInt &First = cast<ConstantInt>(FrontCase.Low)->getValue();
2387 const APInt &RBegin = cast<ConstantInt>(J->Low)->getValue();
2426 const Constant *C = Pivot->Low;
2454 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
2506 numCmps += (I->Low == I->High ? 1 : 2);
2522 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
2527 << "Low bound: " << minValue << '\n'
2563 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
2640 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2657 if (I->Low != I->High)
3070 unsigned Pos, unsigned Size, int Low) {
3071 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3072 if (Mask[i] >= 0 && Mask[i] != Low)
3102 // First check for Src1 in low and Src2 in high
3110 // Then check for Src2 in low and Src1 in high
3443 // Mask out the low bits for alignment purposes.