r175714 - [analyzer] Tidy up a few uses of Optional in RegionStore.
Jordan Rose
jordan_rose at apple.com
Wed Feb 20 19:12:21 PST 2013
Author: jrose
Date: Wed Feb 20 21:12:21 2013
New Revision: 175714
URL: http://llvm.org/viewvc/llvm-project?rev=175714&view=rev
Log:
[analyzer] Tidy up a few uses of Optional in RegionStore.
Some that I just added needed conversion to use 'None', others looked
better using Optional<SVal>::create.
No functionality change.
Modified:
cfe/trunk/lib/StaticAnalyzer/Core/RegionStore.cpp
Modified: cfe/trunk/lib/StaticAnalyzer/Core/RegionStore.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/lib/StaticAnalyzer/Core/RegionStore.cpp?rev=175714&r1=175713&r2=175714&view=diff
==============================================================================
--- cfe/trunk/lib/StaticAnalyzer/Core/RegionStore.cpp (original)
+++ cfe/trunk/lib/StaticAnalyzer/Core/RegionStore.cpp Wed Feb 20 21:12:21 2013
@@ -225,9 +225,7 @@ public:
typedef const RegionBindingsRef& RegionBindingsConstRef;
Optional<SVal> RegionBindingsRef::getDirectBinding(const MemRegion *R) const {
- if (const SVal *V = lookup(R, BindingKey::Direct))
- return *V;
- return None;
+ return Optional<SVal>::create(lookup(R, BindingKey::Direct));
}
Optional<SVal> RegionBindingsRef::getDefaultBinding(const MemRegion *R) const {
@@ -235,9 +233,8 @@ Optional<SVal> RegionBindingsRef::getDef
if (const TypedValueRegion *TR = dyn_cast<TypedValueRegion>(R))
if (TR->getValueType()->isUnionType())
return UnknownVal();
- if (const SVal *V = lookup(R, BindingKey::Default))
- return *V;
- return None;
+
+ return Optional<SVal>::create(lookup(R, BindingKey::Default));
}
RegionBindingsRef RegionBindingsRef::addBinding(BindingKey K, SVal V) const {
@@ -1267,11 +1264,11 @@ getExistingLazyBinding(SValBuilder &SVB,
const SubRegion *R, bool AllowSubregionBindings) {
Optional<SVal> V = B.getDefaultBinding(R);
if (!V)
- return Optional<nonloc::LazyCompoundVal>();
+ return None;
Optional<nonloc::LazyCompoundVal> LCV = V->getAs<nonloc::LazyCompoundVal>();
if (!LCV)
- return Optional<nonloc::LazyCompoundVal>();
+ return None;
// If the LCV is for a subregion, the types won't match, and we shouldn't
// reuse the binding. Unfortuately we can only check this if the destination
@@ -1280,7 +1277,7 @@ getExistingLazyBinding(SValBuilder &SVB,
QualType RegionTy = TVR->getValueType();
QualType SourceRegionTy = LCV->getRegion()->getValueType();
if (!SVB.getContext().hasSameUnqualifiedType(RegionTy, SourceRegionTy))
- return Optional<nonloc::LazyCompoundVal>();
+ return None;
}
if (!AllowSubregionBindings) {
@@ -1290,7 +1287,7 @@ getExistingLazyBinding(SValBuilder &SVB,
collectSubRegionKeys(Keys, SVB, *B.lookup(R->getBaseRegion()), R,
/*IncludeAllDefaultBindings=*/true);
if (Keys.size() > 1)
- return Optional<nonloc::LazyCompoundVal>();
+ return None;
}
return *LCV;
More information about the cfe-commits
mailing list