Searched refs:Stalls (Results 1 - 13 of 13) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMHazardRecognizer.cpp34 ARMHazardRecognizer::getHazardType(SUnit *SU, int Stalls) { argument
35 assert(Stalls == 0 && "ARM hazards don't support scoreboard lookahead");
72 return ScoreboardHazardRecognizer::getHazardType(SU, Stalls);
H A DARMHazardRecognizer.h38 HazardType getHazardType(SUnit *SU, int Stalls) override;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCHazardRecognizers.h39 HazardType getHazardType(SUnit *SU, int Stalls) override;
78 HazardType getHazardType(SUnit *SU, int Stalls) override;
H A DPPCHazardRecognizers.cpp139 PPCDispatchGroupSBHazardRecognizer::getHazardType(SUnit *SU, int Stalls) { argument
140 if (Stalls == 0 && isLoadAfterStore(SU))
143 return ScoreboardHazardRecognizer::getHazardType(SU, Stalls);
325 getHazardType(SUnit *SU, int Stalls) { argument
326 assert(Stalls == 0 && "PPC hazards don't support scoreboard lookahead");
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DScheduleHazardRecognizer.h60 virtual HazardType getHazardType(SUnit *m, int Stalls = 0) {
H A DScoreboardHazardRecognizer.h116 // Stalls provides an cycle offset at which SU will be scheduled. It will be
118 HazardType getHazardType(SUnit *SU, int Stalls) override;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DScoreboardHazardRecognizer.cpp113 ScoreboardHazardRecognizer::getHazardType(SUnit *SU, int Stalls) { argument
118 int cycle = Stalls;
140 assert((StageCycle - Stalls) < (int)RequiredScoreboard.getDepth() &&
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZHazardRecognizer.h116 HazardType getHazardType(SUnit *m, int Stalls = 0) override;
H A DSystemZHazardRecognizer.cpp77 getHazardType(SUnit *m, int Stalls) { argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DGCNRegBankReassign.cpp658 BankStall(unsigned b, unsigned s) : Bank(b), Stalls(s) {};
660 if (Stalls == RHS.Stalls)
662 return Stalls > RHS.Stalls;
665 unsigned Stalls;
672 unsigned Stalls = computeStallCycles(C.Reg, C.Reg, Bank);
673 if (Stalls < OrigStalls) {
675 << Stalls << '\n');
676 BankStalls.push_back(BankStall((unsigned)Bank, Stalls));
[all...]
H A DGCNHazardRecognizer.h106 HazardType getHazardType(SUnit *SU, int Stalls) override;
H A DGCNHazardRecognizer.cpp132 GCNHazardRecognizer::getHazardType(SUnit *SU, int Stalls) { argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DScheduleDAGRRList.cpp678 int Stalls = 0; local
681 HazardRec->getHazardType(SU, -Stalls);
686 ++Stalls;
688 AdvanceToCycle(CurCycle + Stalls);

Completed in 133 milliseconds