Home
last modified time | relevance | path

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

/external/llvm-project/polly/include/polly/
DScopDetectionDiagnostic.h275 class ReportAffFunc : public RejectReason {
281 ReportAffFunc(const RejectReasonKind K, const Instruction *Inst);
296 class ReportUndefCond : public ReportAffFunc {
302 : ReportAffFunc(RejectReasonKind::UndefCond, Inst), BB(BB) {} in ReportUndefCond()
321 class ReportInvalidCond : public ReportAffFunc {
327 : ReportAffFunc(RejectReasonKind::InvalidCond, Inst), BB(BB) {} in ReportInvalidCond()
344 class ReportUndefOperand : public ReportAffFunc {
350 : ReportAffFunc(RejectReasonKind::UndefOperand, Inst), BB(BB) {} in ReportUndefOperand()
367 class ReportNonAffBranch : public ReportAffFunc {
380 : ReportAffFunc(RejectReasonKind::NonAffBranch, Inst), BB(BB), LHS(LHS), in ReportNonAffBranch()
[all …]
/external/llvm-project/polly/lib/Analysis/
DScopDetectionDiagnostic.cpp270 ReportAffFunc::ReportAffFunc(const RejectReasonKind K, const Instruction *Inst) in ReportAffFunc() function in polly::ReportAffFunc
273 bool ReportAffFunc::classof(const RejectReason *RR) { in classof()