Home
last modified time | relevance | path

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

/llvm-project-15.0.7/polly/include/polly/
H A DScopDetectionDiagnostic.h195 class ReportCFG : public RejectReason {
197 ReportCFG(const RejectReasonKind K);
207 class ReportInvalidTerminator final : public ReportCFG {
212 : ReportCFG(RejectReasonKind::InvalidTerminator), BB(BB) {} in ReportInvalidTerminator()
230 class ReportIrreducibleRegion final : public ReportCFG {
236 : ReportCFG(RejectReasonKind::IrreducibleRegion), R(R), DbgLoc(DbgLoc) {} in ReportIrreducibleRegion()
255 class ReportUnreachableInExit final : public ReportCFG {
261 : ReportCFG(RejectReasonKind::UnreachableInExit), BB(BB), DbgLoc(DbgLoc) { in ReportUnreachableInExit()
281 class ReportIndirectPredecessor final : public ReportCFG {
287 : ReportCFG(RejectReasonKind::IndirectPredecessor), Inst(Inst), in ReportIndirectPredecessor()
/llvm-project-15.0.7/polly/lib/Analysis/
H A DScopDetectionDiagnostic.cpp191 ReportCFG::ReportCFG(const RejectReasonKind K) : RejectReason(K) {} in ReportCFG() function in polly::ReportCFG
193 bool ReportCFG::classof(const RejectReason *RR) { in classof()