Home
last modified time | relevance | path

Searched refs:Recognizers (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMultiHazardRecognizer.cpp25 Recognizers.push_back(std::move(R)); in AddHazardRecognizer()
29 return llvm::any_of(Recognizers, in atIssueLimit()
35 for (auto &R : Recognizers) { in getHazardType()
44 for (auto &R : Recognizers) in Reset()
49 for (auto &R : Recognizers) in EmitInstruction()
54 for (auto &R : Recognizers) in EmitInstruction()
62 return std::accumulate(Recognizers.begin(), Recognizers.end(), 0u, MN); in PreEmitNoops()
69 return std::accumulate(Recognizers.begin(), Recognizers.end(), 0u, MN); in PreEmitNoops()
76 return llvm::any_of(Recognizers, SPA); in ShouldPreferAnother()
80 for (auto &R : Recognizers) in AdvanceCycle()
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMultiHazardRecognizer.h26 SmallVector<std::unique_ptr<ScheduleHazardRecognizer>, 4> Recognizers; variable