reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/CodeGen/SwitchLoweringUtils.cpp
  134     for (int64_t j = N - 1; j > i; j--) {
  134     for (int64_t j = N - 1; j > i; j--) {
  136       Range = getJumpTableRange(Clusters, i, j);
  137       NumCases = getJumpTableNumCases(TotalCases, i, j);
  142         unsigned NumPartitions = 1 + (j == N - 1 ? 0 : MinPartitions[j + 1]);
  142         unsigned NumPartitions = 1 + (j == N - 1 ? 0 : MinPartitions[j + 1]);
  143         unsigned Score = j == N - 1 ? 0 : PartitionsScore[j + 1];
  143         unsigned Score = j == N - 1 ? 0 : PartitionsScore[j + 1];
  144         int64_t NumEntries = j - i + 1;
  158           LastElement[i] = j;