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

References

lib/Target/AMDGPU/SIMachineScheduler.cpp
 1640   Cand.Block = nullptr;
 1660       if (!tryCandidateRegUsage(Cand, TryCand) &&
 1662         tryCandidateLatency(Cand, TryCand);
 1664       if (!tryCandidateLatency(Cand, TryCand))
 1665         tryCandidateRegUsage(Cand, TryCand);
 1668       Cand.setBest(TryCand);
 1670       LLVM_DEBUG(dbgs() << "Best Current Choice: " << Cand.Block->getID() << ' '
 1671                         << getReasonStr(Cand.Reason) << '\n');
 1675   LLVM_DEBUG(dbgs() << "Picking: " << Cand.Block->getID() << '\n';
 1677                     << (Cand.IsHighLatency ? "yes\n" : "no\n");
 1679                     << Cand.LastPosHighLatParentScheduled << '\n';
 1680              dbgs() << "VGPRUsageDiff: " << Cand.VGPRUsageDiff << '\n';
 1683   Block = Cand.Block;