1 //===- ScopDetectionDiagnostic.cpp - Error diagnostics --------------------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // Small set of diagnostic helper classes to encapsulate any errors occurred
10 // during the detection of Scops.
12 // The ScopDetection defines a set of error classes (via Statistic variables)
13 // that groups a number of individual errors into a group, e.g. non-affinity
15 // On error we generate an object that carries enough additional information
16 // to diagnose the error and generate a helpful error message.
18 //===----------------------------------------------------------------------===//
20 #include "polly/ScopDetectionDiagnostic.h"
21 #include "llvm/ADT/SmallPtrSet.h"
22 #include "llvm/ADT/SmallVector.h"
23 #include "llvm/ADT/Statistic.h"
24 #include "llvm/ADT/StringRef.h"
25 #include "llvm/ADT/Twine.h"
26 #include "llvm/Analysis/AliasSetTracker.h"
27 #include "llvm/Analysis/LoopInfo.h"
28 #include "llvm/Analysis/OptimizationRemarkEmitter.h"
29 #include "llvm/Analysis/RegionInfo.h"
30 #include "llvm/Analysis/ScalarEvolution.h"
31 #include "llvm/IR/BasicBlock.h"
32 #include "llvm/IR/CFG.h"
33 #include "llvm/IR/DebugLoc.h"
34 #include "llvm/IR/DiagnosticInfo.h"
35 #include "llvm/IR/Instruction.h"
36 #include "llvm/IR/Value.h"
37 #include "llvm/Support/raw_ostream.h"
45 #define DEBUG_TYPE "polly-detect"
47 #define SCOP_STAT(NAME, DESC) \
48 {"polly-detect", "NAME", "Number of rejected regions: " DESC}
50 static Statistic RejectStatistics
[] = {
52 SCOP_STAT(InvalidTerminator
, "Unsupported terminator instruction"),
53 SCOP_STAT(IrreducibleRegion
, "Irreducible loops"),
54 SCOP_STAT(UnreachableInExit
, "Unreachable in exit block"),
55 SCOP_STAT(IndirectPredecessor
, "Branch from indirect terminator"),
56 SCOP_STAT(LastCFG
, ""),
57 SCOP_STAT(AffFunc
, ""),
58 SCOP_STAT(UndefCond
, "Undefined branch condition"),
59 SCOP_STAT(InvalidCond
, "Non-integer branch condition"),
60 SCOP_STAT(UndefOperand
, "Undefined operands in comparison"),
61 SCOP_STAT(NonAffBranch
, "Non-affine branch condition"),
62 SCOP_STAT(NoBasePtr
, "No base pointer"),
63 SCOP_STAT(UndefBasePtr
, "Undefined base pointer"),
64 SCOP_STAT(VariantBasePtr
, "Variant base pointer"),
65 SCOP_STAT(NonAffineAccess
, "Non-affine memory accesses"),
66 SCOP_STAT(DifferentElementSize
, "Accesses with differing sizes"),
67 SCOP_STAT(LastAffFunc
, ""),
68 SCOP_STAT(LoopBound
, "Uncomputable loop bounds"),
69 SCOP_STAT(LoopHasNoExit
, "Loop without exit"),
70 SCOP_STAT(LoopHasMultipleExits
, "Loop with multiple exits"),
71 SCOP_STAT(LoopOnlySomeLatches
, "Not all loop latches in scop"),
72 SCOP_STAT(FuncCall
, "Function call with side effects"),
73 SCOP_STAT(NonSimpleMemoryAccess
,
74 "Compilated access semantics (volatile or atomic)"),
75 SCOP_STAT(Alias
, "Base address aliasing"),
77 SCOP_STAT(IntToPtr
, "Integer to pointer conversions"),
78 SCOP_STAT(Alloca
, "Stack allocations"),
79 SCOP_STAT(UnknownInst
, "Unknown Instructions"),
80 SCOP_STAT(Entry
, "Contains entry block"),
81 SCOP_STAT(Unprofitable
, "Assumed to be unprofitable"),
82 SCOP_STAT(LastOther
, ""),
87 /// Small string conversion via raw_string_stream.
88 template <typename T
> std::string
operator+(Twine LHS
, const T
&RHS
) {
90 raw_string_ostream
fmt(Buf
);
94 return LHS
.concat(Buf
).str();
100 // Lexicographic order on (line, col) of our debug locations.
101 static bool operator<(const DebugLoc
&LHS
, const DebugLoc
&RHS
) {
102 return LHS
.getLine() < RHS
.getLine() ||
103 (LHS
.getLine() == RHS
.getLine() && LHS
.getCol() < RHS
.getCol());
109 BBPair
getBBPairForRegion(const Region
*R
) {
110 return std::make_pair(R
->getEntry(), R
->getExit());
113 void getDebugLocations(const BBPair
&P
, DebugLoc
&Begin
, DebugLoc
&End
) {
114 SmallPtrSet
<BasicBlock
*, 32> Seen
;
115 SmallVector
<BasicBlock
*, 32> Todo
;
116 Todo
.push_back(P
.first
);
117 while (!Todo
.empty()) {
118 auto *BB
= Todo
.pop_back_val();
121 if (!Seen
.insert(BB
).second
)
123 Todo
.append(succ_begin(BB
), succ_end(BB
));
124 for (const Instruction
&Inst
: *BB
) {
125 DebugLoc DL
= Inst
.getStableDebugLoc();
129 Begin
= Begin
? std::min(Begin
, DL
) : DL
;
130 End
= End
? std::max(End
, DL
) : DL
;
135 void emitRejectionRemarks(const BBPair
&P
, const RejectLog
&Log
,
136 OptimizationRemarkEmitter
&ORE
) {
138 getDebugLocations(P
, Begin
, End
);
141 OptimizationRemarkMissed(DEBUG_TYPE
, "RejectionErrors", Begin
, P
.first
)
142 << "The following errors keep this region from being a Scop.");
144 for (RejectReasonPtr RR
: Log
) {
146 if (const DebugLoc
&Loc
= RR
->getDebugLoc())
147 ORE
.emit(OptimizationRemarkMissed(DEBUG_TYPE
, RR
->getRemarkName(), Loc
,
149 << RR
->getEndUserMessage());
151 ORE
.emit(OptimizationRemarkMissed(DEBUG_TYPE
, RR
->getRemarkName(), Begin
,
153 << RR
->getEndUserMessage());
156 /* Check to see if Region is a top level region, getExit = NULL*/
159 OptimizationRemarkMissed(DEBUG_TYPE
, "InvalidScopEnd", End
, P
.second
)
160 << "Invalid Scop candidate ends here.");
163 OptimizationRemarkMissed(DEBUG_TYPE
, "InvalidScopEnd", End
, P
.first
)
164 << "Invalid Scop candidate ends here.");
167 //===----------------------------------------------------------------------===//
170 RejectReason::RejectReason(RejectReasonKind K
) : Kind(K
) {
171 RejectStatistics
[static_cast<int>(K
)]++;
174 const DebugLoc
RejectReason::Unknown
= DebugLoc();
176 const DebugLoc
&RejectReason::getDebugLoc() const {
177 // Allocate an empty DebugLoc and return it a reference to it.
182 void RejectLog::print(raw_ostream
&OS
, int level
) const {
184 for (auto Reason
: ErrorReports
)
185 OS
.indent(level
) << "[" << j
++ << "] " << Reason
->getMessage() << "\n";
188 //===----------------------------------------------------------------------===//
191 ReportCFG::ReportCFG(const RejectReasonKind K
) : RejectReason(K
) {}
193 bool ReportCFG::classof(const RejectReason
*RR
) {
194 return RR
->getKind() >= RejectReasonKind::CFG
&&
195 RR
->getKind() <= RejectReasonKind::LastCFG
;
198 //===----------------------------------------------------------------------===//
199 // ReportInvalidTerminator.
201 std::string
ReportInvalidTerminator::getRemarkName() const {
202 return "InvalidTerminator";
205 const Value
*ReportInvalidTerminator::getRemarkBB() const { return BB
; }
207 std::string
ReportInvalidTerminator::getMessage() const {
208 return ("Invalid instruction terminates BB: " + BB
->getName()).str();
211 const DebugLoc
&ReportInvalidTerminator::getDebugLoc() const {
212 return BB
->getTerminator()->getDebugLoc();
215 bool ReportInvalidTerminator::classof(const RejectReason
*RR
) {
216 return RR
->getKind() == RejectReasonKind::InvalidTerminator
;
219 //===----------------------------------------------------------------------===//
220 // UnreachableInExit.
222 std::string
ReportUnreachableInExit::getRemarkName() const {
223 return "UnreachableInExit";
226 const Value
*ReportUnreachableInExit::getRemarkBB() const { return BB
; }
228 std::string
ReportUnreachableInExit::getMessage() const {
229 std::string BBName
= BB
->getName().str();
230 return "Unreachable in exit block" + BBName
;
233 const DebugLoc
&ReportUnreachableInExit::getDebugLoc() const { return DbgLoc
; }
235 std::string
ReportUnreachableInExit::getEndUserMessage() const {
236 return "Unreachable in exit block.";
239 bool ReportUnreachableInExit::classof(const RejectReason
*RR
) {
240 return RR
->getKind() == RejectReasonKind::UnreachableInExit
;
243 //===----------------------------------------------------------------------===//
244 // IndirectPredecessor.
246 std::string
ReportIndirectPredecessor::getRemarkName() const {
247 return "IndirectPredecessor";
250 const Value
*ReportIndirectPredecessor::getRemarkBB() const {
252 return Inst
->getParent();
256 std::string
ReportIndirectPredecessor::getMessage() const {
258 return "Branch from indirect terminator: " + *Inst
;
259 return getEndUserMessage();
262 const DebugLoc
&ReportIndirectPredecessor::getDebugLoc() const {
266 std::string
ReportIndirectPredecessor::getEndUserMessage() const {
267 return "Branch from indirect terminator.";
270 bool ReportIndirectPredecessor::classof(const RejectReason
*RR
) {
271 return RR
->getKind() == RejectReasonKind::IndirectPredecessor
;
274 //===----------------------------------------------------------------------===//
275 // ReportIrreducibleRegion.
277 std::string
ReportIrreducibleRegion::getRemarkName() const {
278 return "IrreducibleRegion";
281 const Value
*ReportIrreducibleRegion::getRemarkBB() const {
282 return R
->getEntry();
285 std::string
ReportIrreducibleRegion::getMessage() const {
286 return "Irreducible region encountered: " + R
->getNameStr();
289 const DebugLoc
&ReportIrreducibleRegion::getDebugLoc() const { return DbgLoc
; }
291 std::string
ReportIrreducibleRegion::getEndUserMessage() const {
292 return "Irreducible region encountered in control flow.";
295 bool ReportIrreducibleRegion::classof(const RejectReason
*RR
) {
296 return RR
->getKind() == RejectReasonKind::IrreducibleRegion
;
299 //===----------------------------------------------------------------------===//
302 ReportAffFunc::ReportAffFunc(const RejectReasonKind K
, const Instruction
*Inst
)
303 : RejectReason(K
), Inst(Inst
) {}
305 bool ReportAffFunc::classof(const RejectReason
*RR
) {
306 return RR
->getKind() >= RejectReasonKind::AffFunc
&&
307 RR
->getKind() <= RejectReasonKind::LastAffFunc
;
310 //===----------------------------------------------------------------------===//
313 std::string
ReportUndefCond::getRemarkName() const { return "UndefCond"; }
315 const Value
*ReportUndefCond::getRemarkBB() const { return BB
; }
317 std::string
ReportUndefCond::getMessage() const {
318 return ("Condition based on 'undef' value in BB: " + BB
->getName()).str();
321 bool ReportUndefCond::classof(const RejectReason
*RR
) {
322 return RR
->getKind() == RejectReasonKind::UndefCond
;
325 //===----------------------------------------------------------------------===//
326 // ReportInvalidCond.
328 std::string
ReportInvalidCond::getRemarkName() const { return "InvalidCond"; }
330 const Value
*ReportInvalidCond::getRemarkBB() const { return BB
; }
332 std::string
ReportInvalidCond::getMessage() const {
333 return ("Condition in BB '" + BB
->getName()).str() +
334 "' neither constant nor an icmp instruction";
337 bool ReportInvalidCond::classof(const RejectReason
*RR
) {
338 return RR
->getKind() == RejectReasonKind::InvalidCond
;
341 //===----------------------------------------------------------------------===//
342 // ReportUndefOperand.
344 std::string
ReportUndefOperand::getRemarkName() const { return "UndefOperand"; }
346 const Value
*ReportUndefOperand::getRemarkBB() const { return BB
; }
348 std::string
ReportUndefOperand::getMessage() const {
349 return ("undef operand in branch at BB: " + BB
->getName()).str();
352 bool ReportUndefOperand::classof(const RejectReason
*RR
) {
353 return RR
->getKind() == RejectReasonKind::UndefOperand
;
356 //===----------------------------------------------------------------------===//
357 // ReportNonAffBranch.
359 std::string
ReportNonAffBranch::getRemarkName() const { return "NonAffBranch"; }
361 const Value
*ReportNonAffBranch::getRemarkBB() const { return BB
; }
363 std::string
ReportNonAffBranch::getMessage() const {
364 return ("Non affine branch in BB '" + BB
->getName()).str() +
365 "' with LHS: " + *LHS
+ " and RHS: " + *RHS
;
368 bool ReportNonAffBranch::classof(const RejectReason
*RR
) {
369 return RR
->getKind() == RejectReasonKind::NonAffBranch
;
372 //===----------------------------------------------------------------------===//
375 std::string
ReportNoBasePtr::getRemarkName() const { return "NoBasePtr"; }
377 const Value
*ReportNoBasePtr::getRemarkBB() const { return Inst
->getParent(); }
379 std::string
ReportNoBasePtr::getMessage() const { return "No base pointer"; }
381 bool ReportNoBasePtr::classof(const RejectReason
*RR
) {
382 return RR
->getKind() == RejectReasonKind::NoBasePtr
;
385 //===----------------------------------------------------------------------===//
386 // ReportUndefBasePtr.
388 std::string
ReportUndefBasePtr::getRemarkName() const { return "UndefBasePtr"; }
390 const Value
*ReportUndefBasePtr::getRemarkBB() const {
391 return Inst
->getParent();
394 std::string
ReportUndefBasePtr::getMessage() const {
395 return "Undefined base pointer";
398 bool ReportUndefBasePtr::classof(const RejectReason
*RR
) {
399 return RR
->getKind() == RejectReasonKind::UndefBasePtr
;
402 //===----------------------------------------------------------------------===//
403 // ReportVariantBasePtr.
405 std::string
ReportVariantBasePtr::getRemarkName() const {
406 return "VariantBasePtr";
409 const Value
*ReportVariantBasePtr::getRemarkBB() const {
410 return Inst
->getParent();
413 std::string
ReportVariantBasePtr::getMessage() const {
414 return "Base address not invariant in current region:" + *BaseValue
;
417 std::string
ReportVariantBasePtr::getEndUserMessage() const {
418 return "The base address of this array is not invariant inside the loop";
421 bool ReportVariantBasePtr::classof(const RejectReason
*RR
) {
422 return RR
->getKind() == RejectReasonKind::VariantBasePtr
;
425 //===----------------------------------------------------------------------===//
426 // ReportDifferentArrayElementSize
428 std::string
ReportDifferentArrayElementSize::getRemarkName() const {
429 return "DifferentArrayElementSize";
432 const Value
*ReportDifferentArrayElementSize::getRemarkBB() const {
433 return Inst
->getParent();
436 std::string
ReportDifferentArrayElementSize::getMessage() const {
437 return "Access to one array through data types of different size";
440 bool ReportDifferentArrayElementSize::classof(const RejectReason
*RR
) {
441 return RR
->getKind() == RejectReasonKind::DifferentElementSize
;
444 std::string
ReportDifferentArrayElementSize::getEndUserMessage() const {
445 StringRef BaseName
= BaseValue
->getName();
446 std::string Name
= BaseName
.empty() ? "UNKNOWN" : BaseName
.str();
447 return "The array \"" + Name
+
448 "\" is accessed through elements that differ "
452 //===----------------------------------------------------------------------===//
453 // ReportNonAffineAccess.
455 std::string
ReportNonAffineAccess::getRemarkName() const {
456 return "NonAffineAccess";
459 const Value
*ReportNonAffineAccess::getRemarkBB() const {
460 return Inst
->getParent();
463 std::string
ReportNonAffineAccess::getMessage() const {
464 return "Non affine access function: " + *AccessFunction
;
467 bool ReportNonAffineAccess::classof(const RejectReason
*RR
) {
468 return RR
->getKind() == RejectReasonKind::NonAffineAccess
;
471 std::string
ReportNonAffineAccess::getEndUserMessage() const {
472 StringRef BaseName
= BaseValue
->getName();
473 std::string Name
= BaseName
.empty() ? "UNKNOWN" : BaseName
.str();
474 return "The array subscript of \"" + Name
+ "\" is not affine";
477 //===----------------------------------------------------------------------===//
480 ReportLoopBound::ReportLoopBound(Loop
*L
, const SCEV
*LoopCount
)
481 : RejectReason(RejectReasonKind::LoopBound
), L(L
), LoopCount(LoopCount
),
482 Loc(L
->getStartLoc()) {}
484 std::string
ReportLoopBound::getRemarkName() const { return "LoopBound"; }
486 const Value
*ReportLoopBound::getRemarkBB() const { return L
->getHeader(); }
488 std::string
ReportLoopBound::getMessage() const {
489 return "Non affine loop bound '" + *LoopCount
+
490 "' in loop: " + L
->getHeader()->getName();
493 const DebugLoc
&ReportLoopBound::getDebugLoc() const { return Loc
; }
495 bool ReportLoopBound::classof(const RejectReason
*RR
) {
496 return RR
->getKind() == RejectReasonKind::LoopBound
;
499 std::string
ReportLoopBound::getEndUserMessage() const {
500 return "Failed to derive an affine function from the loop bounds.";
503 //===----------------------------------------------------------------------===//
504 // ReportLoopHasNoExit.
506 std::string
ReportLoopHasNoExit::getRemarkName() const {
507 return "LoopHasNoExit";
510 const Value
*ReportLoopHasNoExit::getRemarkBB() const { return L
->getHeader(); }
512 std::string
ReportLoopHasNoExit::getMessage() const {
513 return "Loop " + L
->getHeader()->getName() + " has no exit.";
516 bool ReportLoopHasNoExit::classof(const RejectReason
*RR
) {
517 return RR
->getKind() == RejectReasonKind::LoopHasNoExit
;
520 const DebugLoc
&ReportLoopHasNoExit::getDebugLoc() const { return Loc
; }
522 std::string
ReportLoopHasNoExit::getEndUserMessage() const {
523 return "Loop cannot be handled because it has no exit.";
526 //===----------------------------------------------------------------------===//
527 // ReportLoopHasMultipleExits.
529 std::string
ReportLoopHasMultipleExits::getRemarkName() const {
530 return "ReportLoopHasMultipleExits";
533 const Value
*ReportLoopHasMultipleExits::getRemarkBB() const {
534 return L
->getHeader();
537 std::string
ReportLoopHasMultipleExits::getMessage() const {
538 return "Loop " + L
->getHeader()->getName() + " has multiple exits.";
541 bool ReportLoopHasMultipleExits::classof(const RejectReason
*RR
) {
542 return RR
->getKind() == RejectReasonKind::LoopHasMultipleExits
;
545 const DebugLoc
&ReportLoopHasMultipleExits::getDebugLoc() const { return Loc
; }
547 std::string
ReportLoopHasMultipleExits::getEndUserMessage() const {
548 return "Loop cannot be handled because it has multiple exits.";
551 //===----------------------------------------------------------------------===//
552 // ReportLoopOnlySomeLatches
554 std::string
ReportLoopOnlySomeLatches::getRemarkName() const {
555 return "LoopHasNoExit";
558 const Value
*ReportLoopOnlySomeLatches::getRemarkBB() const {
559 return L
->getHeader();
562 std::string
ReportLoopOnlySomeLatches::getMessage() const {
563 return "Not all latches of loop " + L
->getHeader()->getName() +
567 bool ReportLoopOnlySomeLatches::classof(const RejectReason
*RR
) {
568 return RR
->getKind() == RejectReasonKind::LoopHasNoExit
;
571 const DebugLoc
&ReportLoopOnlySomeLatches::getDebugLoc() const { return Loc
; }
573 std::string
ReportLoopOnlySomeLatches::getEndUserMessage() const {
574 return "Loop cannot be handled because not all latches are part of loop "
578 //===----------------------------------------------------------------------===//
581 ReportFuncCall::ReportFuncCall(Instruction
*Inst
)
582 : RejectReason(RejectReasonKind::FuncCall
), Inst(Inst
) {}
584 std::string
ReportFuncCall::getRemarkName() const { return "FuncCall"; }
586 const Value
*ReportFuncCall::getRemarkBB() const { return Inst
->getParent(); }
588 std::string
ReportFuncCall::getMessage() const {
589 return "Call instruction: " + *Inst
;
592 const DebugLoc
&ReportFuncCall::getDebugLoc() const {
593 return Inst
->getDebugLoc();
596 std::string
ReportFuncCall::getEndUserMessage() const {
597 return "This function call cannot be handled. "
601 bool ReportFuncCall::classof(const RejectReason
*RR
) {
602 return RR
->getKind() == RejectReasonKind::FuncCall
;
605 //===----------------------------------------------------------------------===//
606 // ReportNonSimpleMemoryAccess
608 ReportNonSimpleMemoryAccess::ReportNonSimpleMemoryAccess(Instruction
*Inst
)
609 : ReportOther(RejectReasonKind::NonSimpleMemoryAccess
), Inst(Inst
) {}
611 std::string
ReportNonSimpleMemoryAccess::getRemarkName() const {
612 return "NonSimpleMemoryAccess";
615 const Value
*ReportNonSimpleMemoryAccess::getRemarkBB() const {
616 return Inst
->getParent();
619 std::string
ReportNonSimpleMemoryAccess::getMessage() const {
620 return "Non-simple memory access: " + *Inst
;
623 const DebugLoc
&ReportNonSimpleMemoryAccess::getDebugLoc() const {
624 return Inst
->getDebugLoc();
627 std::string
ReportNonSimpleMemoryAccess::getEndUserMessage() const {
628 return "Volatile memory accesses or memory accesses for atomic types "
629 "are not supported.";
632 bool ReportNonSimpleMemoryAccess::classof(const RejectReason
*RR
) {
633 return RR
->getKind() == RejectReasonKind::NonSimpleMemoryAccess
;
636 //===----------------------------------------------------------------------===//
639 ReportAlias::ReportAlias(Instruction
*Inst
, AliasSet
&AS
)
640 : RejectReason(RejectReasonKind::Alias
), Inst(Inst
) {
641 append_range(Pointers
, AS
.getPointers());
644 std::string
ReportAlias::formatInvalidAlias(std::string Prefix
,
645 std::string Suffix
) const {
647 raw_string_ostream
OS(Message
);
651 for (PointerSnapshotTy::const_iterator PI
= Pointers
.begin(),
654 const Value
*V
= *PI
;
655 assert(V
&& "Diagnostic info does not match found LLVM-IR anymore.");
657 if (V
->getName().empty())
658 OS
<< "\" <unknown> \"";
660 OS
<< "\"" << V
->getName() << "\"";
675 std::string
ReportAlias::getRemarkName() const { return "Alias"; }
677 const Value
*ReportAlias::getRemarkBB() const { return Inst
->getParent(); }
679 std::string
ReportAlias::getMessage() const {
680 return formatInvalidAlias("Possible aliasing: ");
683 std::string
ReportAlias::getEndUserMessage() const {
684 return formatInvalidAlias("Accesses to the arrays ",
685 " may access the same memory.");
688 const DebugLoc
&ReportAlias::getDebugLoc() const { return Inst
->getDebugLoc(); }
690 bool ReportAlias::classof(const RejectReason
*RR
) {
691 return RR
->getKind() == RejectReasonKind::Alias
;
694 //===----------------------------------------------------------------------===//
697 std::string
ReportOther::getRemarkName() const { return "UnknownRejectReason"; }
699 std::string
ReportOther::getMessage() const { return "Unknown reject reason"; }
701 ReportOther::ReportOther(const RejectReasonKind K
) : RejectReason(K
) {}
703 bool ReportOther::classof(const RejectReason
*RR
) {
704 return RR
->getKind() >= RejectReasonKind::Other
&&
705 RR
->getKind() <= RejectReasonKind::LastOther
;
708 //===----------------------------------------------------------------------===//
710 ReportIntToPtr::ReportIntToPtr(Instruction
*BaseValue
)
711 : ReportOther(RejectReasonKind::IntToPtr
), BaseValue(BaseValue
) {}
713 std::string
ReportIntToPtr::getRemarkName() const { return "IntToPtr"; }
715 const Value
*ReportIntToPtr::getRemarkBB() const {
716 return BaseValue
->getParent();
719 std::string
ReportIntToPtr::getMessage() const {
720 return "Find bad intToptr prt: " + *BaseValue
;
723 const DebugLoc
&ReportIntToPtr::getDebugLoc() const {
724 return BaseValue
->getDebugLoc();
727 bool ReportIntToPtr::classof(const RejectReason
*RR
) {
728 return RR
->getKind() == RejectReasonKind::IntToPtr
;
731 //===----------------------------------------------------------------------===//
734 ReportAlloca::ReportAlloca(Instruction
*Inst
)
735 : ReportOther(RejectReasonKind::Alloca
), Inst(Inst
) {}
737 std::string
ReportAlloca::getRemarkName() const { return "Alloca"; }
739 const Value
*ReportAlloca::getRemarkBB() const { return Inst
->getParent(); }
741 std::string
ReportAlloca::getMessage() const {
742 return "Alloca instruction: " + *Inst
;
745 const DebugLoc
&ReportAlloca::getDebugLoc() const {
746 return Inst
->getDebugLoc();
749 bool ReportAlloca::classof(const RejectReason
*RR
) {
750 return RR
->getKind() == RejectReasonKind::Alloca
;
753 //===----------------------------------------------------------------------===//
754 // ReportUnknownInst.
756 ReportUnknownInst::ReportUnknownInst(Instruction
*Inst
)
757 : ReportOther(RejectReasonKind::UnknownInst
), Inst(Inst
) {}
759 std::string
ReportUnknownInst::getRemarkName() const { return "UnknownInst"; }
761 const Value
*ReportUnknownInst::getRemarkBB() const {
762 return Inst
->getParent();
765 std::string
ReportUnknownInst::getMessage() const {
766 return "Unknown instruction: " + *Inst
;
769 const DebugLoc
&ReportUnknownInst::getDebugLoc() const {
770 return Inst
->getDebugLoc();
773 bool ReportUnknownInst::classof(const RejectReason
*RR
) {
774 return RR
->getKind() == RejectReasonKind::UnknownInst
;
777 //===----------------------------------------------------------------------===//
780 ReportEntry::ReportEntry(BasicBlock
*BB
)
781 : ReportOther(RejectReasonKind::Entry
), BB(BB
) {}
783 std::string
ReportEntry::getRemarkName() const { return "Entry"; }
785 const Value
*ReportEntry::getRemarkBB() const { return BB
; }
787 std::string
ReportEntry::getMessage() const {
788 return "Region containing entry block of function is invalid!";
791 std::string
ReportEntry::getEndUserMessage() const {
792 return "Scop contains function entry (not yet supported).";
795 const DebugLoc
&ReportEntry::getDebugLoc() const {
796 return BB
->getTerminator()->getDebugLoc();
799 bool ReportEntry::classof(const RejectReason
*RR
) {
800 return RR
->getKind() == RejectReasonKind::Entry
;
803 //===----------------------------------------------------------------------===//
804 // ReportUnprofitable.
806 ReportUnprofitable::ReportUnprofitable(Region
*R
)
807 : ReportOther(RejectReasonKind::Unprofitable
), R(R
) {}
809 std::string
ReportUnprofitable::getRemarkName() const { return "Unprofitable"; }
811 const Value
*ReportUnprofitable::getRemarkBB() const { return R
->getEntry(); }
813 std::string
ReportUnprofitable::getMessage() const {
814 return "Region can not profitably be optimized!";
817 std::string
ReportUnprofitable::getEndUserMessage() const {
818 return "No profitable polyhedral optimization found";
821 const DebugLoc
&ReportUnprofitable::getDebugLoc() const {
822 for (const BasicBlock
*BB
: R
->blocks())
823 for (const Instruction
&Inst
: *BB
)
824 if (const DebugLoc
&DL
= Inst
.getStableDebugLoc())
827 return R
->getEntry()->getTerminator()->getDebugLoc();
830 bool ReportUnprofitable::classof(const RejectReason
*RR
) {
831 return RR
->getKind() == RejectReasonKind::Unprofitable
;