Lines Matching refs:getValue

26   const APInt &LowCase = Clusters[First].Low->getValue();  in getJumpTableRange()
27 const APInt &HighCase = Clusters[Last].High->getValue(); in getJumpTableRange()
58 assert(Clusters[i - 1].High->getValue().slt(Clusters[i].Low->getValue())); in findJumpTables()
76 const APInt &Hi = Clusters[i].High->getValue(); in findJumpTables()
77 const APInt &Lo = Clusters[i].Low->getValue(); in findJumpTables()
211 const APInt &Low = Clusters[I].Low->getValue(); in buildJumpTable()
212 const APInt &High = Clusters[I].High->getValue(); in buildJumpTable()
216 const APInt &PreviousHigh = Clusters[I - 1].High->getValue(); in buildJumpTable()
230 Clusters[First].Low->getValue(), in buildJumpTable()
231 Clusters[Last].High->getValue(), *DL)) { in buildJumpTable()
257 JumpTableHeader JTH(Clusters[First].Low->getValue(), in buildJumpTable()
258 Clusters[Last].High->getValue(), SI->getCondition(), in buildJumpTable()
279 assert(Clusters[i-1].High->getValue().slt(Clusters[i].Low->getValue())); in findBitTestClusters()
318 if (!TLI->rangeFitsInWord(Clusters[i].Low->getValue(), in findBitTestClusters()
319 Clusters[j].High->getValue(), *DL)) in findBitTestClusters()
383 APInt Low = Clusters[First].Low->getValue(); in buildBitTests()
384 APInt High = Clusters[Last].High->getValue(); in buildBitTests()
401 if (Clusters[I].Low->getValue() != Clusters[I - 1].High->getValue() + 1) { in buildBitTests()
432 uint64_t Lo = (Clusters[i].Low->getValue() - LowBound).getZExtValue(); in buildBitTests()
433 uint64_t Hi = (Clusters[i].High->getValue() - LowBound).getZExtValue(); in buildBitTests()
473 return a.Low->getValue().slt(b.Low->getValue()); in sortAndRangeify()
485 (CaseVal->getValue() - Clusters[DstIndex - 1].High->getValue()) == 1) { in sortAndRangeify()
506 return X.Low->getValue().slt(CC.Low->getValue()); in caseClusterRank()