Home | History | Annotate | Download | only in SelectionDAG

Lines Matching defs:Low

61 /// LimitFloatPrecision - Generate low-precision inline sequences for
67 cl::desc("Generate low-precision inline sequences "
1583 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1594 VT, CmpOp, DAG.getConstant(Low, VT));
1596 DAG.getConstant(High-Low, VT), ISD::SETULE);
1932 if (Small.Low == Small.High && Big.Low == Big.High && Small.BB == Big.BB) {
1933 const APInt& SmallValue = cast<ConstantInt>(Small.Low)->getValue();
1934 const APInt& BigValue = cast<ConstantInt>(Big.Low)->getValue();
2004 if (I->High == I->Low) {
2010 LHS = I->Low; MHS = SV; RHS = I->High;
2054 const APInt &First = cast<ConstantInt>(FrontCase.Low)->getValue();
2104 const APInt &Low = cast<ConstantInt>(I->Low)->getValue();
2107 if (Low.sle(TEI) && TEI.sle(High)) {
2164 const APInt &First = cast<ConstantInt>(FrontCase.Low)->getValue();
2184 const APInt &RBegin = cast<ConstantInt>(J->Low)->getValue();
2221 const Constant *C = Pivot->Low;
2249 cast<ConstantInt>(RHSR.first->Low)->getValue() ==
2300 numCmps += (I->Low == I->High ? 1 : 2);
2316 const APInt& minValue = cast<ConstantInt>(FrontCase.Low)->getValue();
2321 << "Low bound: " << minValue << '\n'
2357 const APInt& lowValue = cast<ConstantInt>(I->Low)->getValue();
2432 const APInt& nextValue = cast<ConstantInt>(J->Low)->getValue();
2458 if (I->Low != I->High)
2810 unsigned Pos, unsigned Size, int Low) {
2811 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
2812 if (Mask[i] >= 0 && Mask[i] != Low)
2841 // First check for Src1 in low and Src2 in high
2849 // Then check for Src2 in low and Src1 in high
3181 // Mask out the low bits for alignment purposes.