reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
486 for (size_t Index = 0; Index < BFI.Freqs.size(); ++Index) { 486 for (size_t Index = 0; Index < BFI.Freqs.size(); ++Index) { 487 Scaled64 Scaled = BFI.Freqs[Index].Scaled * ScalingFactor; 488 BFI.Freqs[Index].Integer = std::max(UINT64_C(1), Scaled.toInt<uint64_t>()); 489 LLVM_DEBUG(dbgs() << " - " << BFI.getBlockName(Index) << ": float = " 490 << BFI.Freqs[Index].Scaled << ", scaled = " << Scaled 491 << ", int = " << BFI.Freqs[Index].Integer << "\n");