Home
last modified time | relevance | path

Searched refs:TotalCases (Results 1 – 4 of 4) sorted by relevance

/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h308 bool isDense(const CaseClusterVector &Clusters, unsigned *TotalCases,
DSelectionDAGBuilder.cpp8206 unsigned *TotalCases, unsigned First, in isDense() argument
8210 assert(TotalCases[Last] >= TotalCases[First]); in isDense()
8224 TotalCases[Last] - (First == 0 ? 0 : TotalCases[First - 1]); in isDense()
8338 SmallVector<unsigned, 8> TotalCases(N); in findJumpTables() local
8343 TotalCases[i] = (Hi - Lo).getLimitedValue() + 1; in findJumpTables()
8345 TotalCases[i] += TotalCases[i - 1]; in findJumpTables()
8352 && isDense(Clusters, &TotalCases[0], 0, N - 1, MinDensity)) { in findJumpTables()
8397 if (isDense(Clusters, &TotalCases[0], i, j, MinDensity)) { in findJumpTables()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h330 uint64_t getJumpTableNumCases(const SmallVectorImpl<unsigned> &TotalCases,
DSelectionDAGBuilder.cpp9343 const SmallVectorImpl<unsigned> &TotalCases, unsigned First, in getJumpTableNumCases() argument
9346 assert(TotalCases[Last] >= TotalCases[First]); in getJumpTableNumCases()
9348 TotalCases[Last] - (First == 0 ? 0 : TotalCases[First - 1]); in getJumpTableNumCases()
9452 SmallVector<unsigned, 8> TotalCases(N); in findJumpTables() local
9456 TotalCases[i] = (Hi - Lo).getLimitedValue() + 1; in findJumpTables()
9458 TotalCases[i] += TotalCases[i - 1]; in findJumpTables()
9463 uint64_t NumCases = getJumpTableNumCases(TotalCases, 0, N - 1); in findJumpTables()
9520 uint64_t NumCases = getJumpTableNumCases(TotalCases, i, j); in findJumpTables()