Lines Matching defs:High
27 const APInt &HighCase = Clusters[Last].High->getValue();
58 assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue()));
76 const APInt &Hi = Clusters[i].High->getValue();
213 const APInt &High = Clusters[I].High->getValue();
214 NumCmps += (Low == High) ? 1 : 2;
217 const APInt &PreviousHigh = Clusters[I - 1].High->getValue();
223 uint64_t ClusterSize = (High - Low).getLimitedValue() + 1;
232 Clusters[Last].High->getValue(), *DL)) {
259 Clusters[Last].High->getValue(), SI->getCondition(),
263 JTCluster = CaseCluster::jumpTable(Clusters[First].Low, Clusters[Last].High,
280 assert(Clusters[i-1].High->getValue().slt(Clusters[i].Low->getValue()));
320 Clusters[j].High->getValue(), *DL))
380 NumCmps += (Clusters[I].Low == Clusters[I].High) ? 1 : 2;
385 APInt High = Clusters[Last].High->getValue();
386 assert(Low.slt(High));
388 if (!TLI->isSuitableForBitTests(NumDests, NumCmps, Low, High, *DL))
395 assert(TLI->rangeFitsInWord(Low, High, *DL) &&
402 if (Clusters[I].Low->getValue() != Clusters[I - 1].High->getValue() + 1) {
408 if (Low.isStrictlyPositive() && High.slt(BitWidth)) {
412 CmpRange = High;
416 CmpRange = High - Low;
434 uint64_t Hi = (Clusters[i].High->getValue() - LowBound).getZExtValue();
462 BTCluster = CaseCluster::bitTests(Clusters[First].Low, Clusters[Last].High,
470 assert(CC.Low == CC.High && "Input clusters must be single-case");
486 (CaseVal->getValue() - Clusters[DstIndex - 1].High->getValue()) == 1) {
489 Clusters[DstIndex - 1].High = CaseVal;