/// @return True if R is a Scop, false otherwise.
bool isValidRegion(DetectionContext &Context) const;
- /// @brief Check if a region is a Scop.
- ///
- /// @param Context The context of scop detection.
- ///
- /// @return True if R is a Scop, false otherwise.
- bool isValidRegion(Region &R) const;
-
/// @brief Check if a call instruction can be part of a Scop.
///
/// @param CI The call instruction to check.
if (!ValidRegions.count(&R))
return false;
- if (Verify)
- return isValidRegion(const_cast<Region &>(R));
+ if (Verify) {
+ DetectionContext Context(const_cast<Region &>(R), *AA, false /*verifying*/);
+ return isValidRegion(Context);
+ }
return true;
}
if (!DetectRegionsWithoutLoops && regionWithoutLoops(R, LI))
return;
- bool IsValidRegion = isValidRegion(R);
- bool HasErrors = RejectLogs.count(&R) > 0;
+ DetectionContext Context(R, *AA, false /*verifying*/);
+ bool RegionIsValid = isValidRegion(Context);
+ bool HasErrors = !RegionIsValid || Context.Log.size() > 0;
- if (IsValidRegion && !HasErrors) {
+ if (PollyTrackFailures && HasErrors)
+ RejectLogs.insert(std::make_pair(&R, Context.Log));
+
+ if (!HasErrors) {
++ValidRegion;
ValidRegions.insert(&R);
return;
return true;
}
-bool ScopDetection::isValidRegion(Region &R) const {
- DetectionContext Context(R, *AA, false /*verifying*/);
-
- bool RegionIsValid = isValidRegion(Context);
- bool HasErrors = !RegionIsValid || Context.Log.size() > 0;
-
- if (PollyTrackFailures && HasErrors)
- RejectLogs.insert(std::make_pair(&R, Context.Log));
-
- return RegionIsValid;
-}
-
bool ScopDetection::isValidRegion(DetectionContext &Context) const {
Region &R = Context.CurRegion;