Home
last modified time | relevance | path

Searched refs:RejectReason (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/polly/include/polly/
H A DScopDetectionDiagnostic.h118 class RejectReason {
126 RejectReason(RejectReasonKind K);
128 virtual ~RejectReason() = default;
195 class ReportCFG : public RejectReason {
201 static bool classof(const RejectReason *RR);
216 static bool classof(const RejectReason *RR);
240 static bool classof(const RejectReason *RR);
266 static bool classof(const RejectReason *RR);
292 static bool classof(const RejectReason *RR);
310 class ReportAffFunc : public RejectReason {
[all …]
/llvm-project-15.0.7/polly/lib/Analysis/
H A DScopDetectionDiagnostic.cpp170 RejectReason::RejectReason(RejectReasonKind K) : Kind(K) { in RejectReason() function in polly::RejectReason
174 const DebugLoc RejectReason::Unknown = DebugLoc();
176 const DebugLoc &RejectReason::getDebugLoc() const { in getDebugLoc()
193 bool ReportCFG::classof(const RejectReason *RR) { in classof()
303 : RejectReason(K), Inst(Inst) {} in ReportAffFunc()
305 bool ReportAffFunc::classof(const RejectReason *RR) { in classof()
321 bool ReportUndefCond::classof(const RejectReason *RR) { in classof()
691 bool ReportAlias::classof(const RejectReason *RR) { in classof()
704 bool ReportOther::classof(const RejectReason *RR) { in classof()
750 bool ReportAlloca::classof(const RejectReason *RR) { in classof()
[all …]
H A DScopDetection.cpp402 std::shared_ptr<RR> RejectReason = std::make_shared<RR>(Arguments...); in invalid() local
405 Log.report(RejectReason); in invalid()
407 LLVM_DEBUG(dbgs() << RejectReason->getMessage()); in invalid()