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

References

lib/CodeGen/SwitchLoweringUtils.cpp
  299   for (int64_t i = N - 2; i >= 0; --i) {
  299   for (int64_t i = N - 2; i >= 0; --i) {
  302     MinPartitions[i] = MinPartitions[i + 1] + 1;
  302     MinPartitions[i] = MinPartitions[i + 1] + 1;
  303     LastElement[i] = i;
  303     LastElement[i] = i;
  307     for (int64_t j = std::min(N - 1, i + BitWidth - 1); j > i; --j) {
  307     for (int64_t j = std::min(N - 1, i + BitWidth - 1); j > i; --j) {
  311       if (!TLI->rangeFitsInWord(Clusters[i].Low->getValue(),
  319       for (int64_t k = i; k <= j; k++) {
  331       if (NumPartitions < MinPartitions[i]) {
  333         MinPartitions[i] = NumPartitions;
  334         LastElement[i] = j;