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()
212 const APInt &Low = Clusters[I].Low->getValue(); in buildJumpTable()
213 const APInt &High = Clusters[I].High->getValue(); in buildJumpTable()
217 const APInt &PreviousHigh = Clusters[I - 1].High->getValue(); in buildJumpTable()
231 Clusters[First].Low->getValue(), in buildJumpTable()
232 Clusters[Last].High->getValue(), *DL)) { in buildJumpTable()
258 JumpTableHeader JTH(Clusters[First].Low->getValue(), in buildJumpTable()
259 Clusters[Last].High->getValue(), SI->getCondition(), in buildJumpTable()
280 assert(Clusters[i-1].High->getValue().slt(Clusters[i].Low->getValue())); in findBitTestClusters()
319 if (!TLI->rangeFitsInWord(Clusters[i].Low->getValue(), in findBitTestClusters()
320 Clusters[j].High->getValue(), *DL)) in findBitTestClusters()
384 APInt Low = Clusters[First].Low->getValue(); in buildBitTests()
385 APInt High = Clusters[Last].High->getValue(); in buildBitTests()
402 if (Clusters[I].Low->getValue() != Clusters[I - 1].High->getValue() + 1) { in buildBitTests()
433 uint64_t Lo = (Clusters[i].Low->getValue() - LowBound).getZExtValue(); in buildBitTests()
434 uint64_t Hi = (Clusters[i].High->getValue() - LowBound).getZExtValue(); in buildBitTests()
474 return a.Low->getValue().slt(b.Low->getValue()); in sortAndRangeify()
486 (CaseVal->getValue() - Clusters[DstIndex - 1].High->getValue()) == 1) { in sortAndRangeify()
507 return X.Low->getValue().slt(CC.Low->getValue()); in caseClusterRank()