[analyzer] Aggressively cut back on the canonicalization in RegionStore.

Whenever we touch a single bindings cluster multiple times, we can delay
canonicalizing it until the final access. This has some interesting
implications, in particular that we shouldn't remove an /empty/ cluster
from the top-level map until canonicalization.

This is good for a 2% speedup or so on the test case in
<rdar://problem/12810842>

llvm-svn: 169523
This commit is contained in:
Jordan Rose 2012-12-06 18:58:06 +00:00
parent 047208027a
commit 5f28afc8a1
1 changed files with 37 additions and 31 deletions

View File

@ -217,7 +217,8 @@ public:
public: // Made public for helper classes. public: // Made public for helper classes.
RegionBindings removeSubRegionBindings(RegionBindings B, const SubRegion *R); RegionBindings removeSubRegionBindings(RegionBindings B, const SubRegion *R,
bool Canonicalize = true);
RegionBindings addBinding(RegionBindings B, BindingKey K, SVal V); RegionBindings addBinding(RegionBindings B, BindingKey K, SVal V);
@ -227,13 +228,17 @@ public: // Made public for helper classes.
const SVal *lookup(RegionBindings B, BindingKey K); const SVal *lookup(RegionBindings B, BindingKey K);
const SVal *lookup(RegionBindings B, const MemRegion *R, BindingKey::Kind k); const SVal *lookup(RegionBindings B, const MemRegion *R, BindingKey::Kind k);
RegionBindings removeBinding(RegionBindings B, BindingKey K); RegionBindings removeBinding(RegionBindings B, BindingKey K,
bool Canonicalize);
RegionBindings removeBinding(RegionBindings B, const MemRegion *R, RegionBindings removeBinding(RegionBindings B, const MemRegion *R,
BindingKey::Kind k); BindingKey::Kind k, bool Canonicalize = true) {
return removeBinding(B, BindingKey::Make(R, k), Canonicalize);
}
RegionBindings removeBinding(RegionBindings B, const MemRegion *R) { RegionBindings removeBinding(RegionBindings B, const MemRegion *R,
return removeBinding(removeBinding(B, R, BindingKey::Direct), R, bool Canonicalize = true) {
BindingKey::Default); return removeBinding(removeBinding(B, R, BindingKey::Direct, false),
R, BindingKey::Default, Canonicalize);
} }
RegionBindings removeCluster(RegionBindings B, const MemRegion *R); RegionBindings removeCluster(RegionBindings B, const MemRegion *R);
@ -564,12 +569,15 @@ static bool isCompatibleWithFields(BindingKey K, const FieldVector &Fields) {
} }
RegionBindings RegionStoreManager::removeSubRegionBindings(RegionBindings B, RegionBindings RegionStoreManager::removeSubRegionBindings(RegionBindings B,
const SubRegion *R) { const SubRegion *R,
bool Canonicalize) {
BindingKey SRKey = BindingKey::Make(R, BindingKey::Default); BindingKey SRKey = BindingKey::Make(R, BindingKey::Default);
const MemRegion *ClusterHead = SRKey.getBaseRegion(); const MemRegion *ClusterHead = SRKey.getBaseRegion();
if (R == ClusterHead) { if (R == ClusterHead) {
// We can remove an entire cluster's bindings all in one go. // We can remove an entire cluster's bindings all in one go.
return RBFactory.remove(B, R); if (Canonicalize)
return RBFactory.remove(B, R);
return RBFactory.add(B, R, CBFactory.getEmptyMap(), /*Canonicalize=*/false);
} }
FieldVector FieldsInSymbolicSubregions; FieldVector FieldsInSymbolicSubregions;
@ -614,7 +622,7 @@ RegionBindings RegionStoreManager::removeSubRegionBindings(RegionBindings B,
NextKey.getOffset() - SRKey.getOffset() < Length) { NextKey.getOffset() - SRKey.getOffset() < Length) {
// Case 1: The next binding is inside the region we're invalidating. // Case 1: The next binding is inside the region we're invalidating.
// Remove it. // Remove it.
Result = CBFactory.remove(Result, NextKey); Result = CBFactory.remove(Result, NextKey, /*Canonicalize=*/false);
} else if (NextKey.getOffset() == SRKey.getOffset()) { } else if (NextKey.getOffset() == SRKey.getOffset()) {
// Case 2: The next binding is at the same offset as the region we're // Case 2: The next binding is at the same offset as the region we're
@ -624,7 +632,7 @@ RegionBindings RegionStoreManager::removeSubRegionBindings(RegionBindings B,
// FIXME: This is probably incorrect; consider invalidating an outer // FIXME: This is probably incorrect; consider invalidating an outer
// struct whose first field is bound to a LazyCompoundVal. // struct whose first field is bound to a LazyCompoundVal.
if (NextKey.isDirect()) if (NextKey.isDirect())
Result = CBFactory.remove(Result, NextKey); Result = CBFactory.remove(Result, NextKey, /*Canonicalize=*/false);
} }
} else if (NextKey.hasSymbolicOffset()) { } else if (NextKey.hasSymbolicOffset()) {
@ -635,13 +643,13 @@ RegionBindings RegionStoreManager::removeSubRegionBindings(RegionBindings B,
// we'll be conservative and remove it. // we'll be conservative and remove it.
if (NextKey.isDirect()) if (NextKey.isDirect())
if (isCompatibleWithFields(NextKey, FieldsInSymbolicSubregions)) if (isCompatibleWithFields(NextKey, FieldsInSymbolicSubregions))
Result = CBFactory.remove(Result, NextKey); Result = CBFactory.remove(Result, NextKey, /*Canonicalize=*/false);
} else if (const SubRegion *BaseSR = dyn_cast<SubRegion>(Base)) { } else if (const SubRegion *BaseSR = dyn_cast<SubRegion>(Base)) {
// Case 4: The next key is symbolic, but we changed a known // Case 4: The next key is symbolic, but we changed a known
// super-region. In this case the binding is certainly no longer valid. // super-region. In this case the binding is certainly no longer valid.
if (R == Base || BaseSR->isSubRegionOf(R)) if (R == Base || BaseSR->isSubRegionOf(R))
if (isCompatibleWithFields(NextKey, FieldsInSymbolicSubregions)) if (isCompatibleWithFields(NextKey, FieldsInSymbolicSubregions))
Result = CBFactory.remove(Result, NextKey); Result = CBFactory.remove(Result, NextKey, /*Canonicalize=*/false);
} }
} }
} }
@ -650,11 +658,14 @@ RegionBindings RegionStoreManager::removeSubRegionBindings(RegionBindings B,
// we don't treat the base region as uninitialized anymore. // we don't treat the base region as uninitialized anymore.
// FIXME: This isn't very precise; see the example in the loop. // FIXME: This isn't very precise; see the example in the loop.
if (HasSymbolicOffset) if (HasSymbolicOffset)
Result = CBFactory.add(Result, SRKey, UnknownVal()); Result = CBFactory.add(Result, SRKey, UnknownVal(), /*Canonicalize=*/false);
if (Result.isEmpty()) if (Canonicalize) {
return RBFactory.remove(B, ClusterHead); if (Result.isEmpty())
return RBFactory.add(B, ClusterHead, Result); return RBFactory.remove(B, ClusterHead, Canonicalize);
Result = CBFactory.getCanonicalMap(Result);
}
return RBFactory.add(B, ClusterHead, Result, Canonicalize);
} }
namespace { namespace {
@ -829,7 +840,7 @@ RegionBindings RegionStoreManager::invalidateGlobalRegion(MemRegion::Kind K,
/* type does not matter */ Ctx.IntTy, /* type does not matter */ Ctx.IntTy,
Count); Count);
B = removeBinding(B, GS); B = removeBinding(B, GS, /*Canonicalize=*/false);
B = addBinding(B, BindingKey::Make(GS, BindingKey::Default), V); B = addBinding(B, BindingKey::Make(GS, BindingKey::Default), V);
// Even if there are no bindings in the global scope, we still need to // Even if there are no bindings in the global scope, we still need to
@ -1530,7 +1541,7 @@ StoreRef RegionStoreManager::Bind(Store store, Loc L, SVal V) {
// Perform the binding. // Perform the binding.
RegionBindings B = GetRegionBindings(store); RegionBindings B = GetRegionBindings(store);
B = removeSubRegionBindings(B, cast<SubRegion>(R)); B = removeSubRegionBindings(B, cast<SubRegion>(R), /*Canonicalize=*/false);
BindingKey Key = BindingKey::Make(R, BindingKey::Direct); BindingKey Key = BindingKey::Make(R, BindingKey::Direct);
return StoreRef(addBinding(B, Key, V).getRootWithoutRetain(), *this); return StoreRef(addBinding(B, Key, V).getRootWithoutRetain(), *this);
} }
@ -1738,7 +1749,7 @@ StoreRef RegionStoreManager::BindAggregate(Store store, const TypedRegion *R,
// we will invalidate. Then add the new binding. // we will invalidate. Then add the new binding.
RegionBindings B = GetRegionBindings(store); RegionBindings B = GetRegionBindings(store);
B = removeSubRegionBindings(B, R); B = removeSubRegionBindings(B, R, /*Canonicalize=*/false);
B = addBinding(B, R, BindingKey::Default, Val); B = addBinding(B, R, BindingKey::Default, Val);
return StoreRef(B.getRootWithoutRetain(), *this); return StoreRef(B.getRootWithoutRetain(), *this);
@ -1782,22 +1793,17 @@ const SVal *RegionStoreManager::lookup(RegionBindings B,
} }
RegionBindings RegionStoreManager::removeBinding(RegionBindings B, RegionBindings RegionStoreManager::removeBinding(RegionBindings B,
BindingKey K) { BindingKey K,
bool Canonicalize) {
const MemRegion *Base = K.getBaseRegion(); const MemRegion *Base = K.getBaseRegion();
const ClusterBindings *Cluster = B.lookup(Base); const ClusterBindings *Cluster = B.lookup(Base);
if (!Cluster) if (!Cluster)
return B; return B;
ClusterBindings NewCluster = CBFactory.remove(*Cluster, K); ClusterBindings NewCluster = CBFactory.remove(*Cluster, K, Canonicalize);
if (NewCluster.isEmpty()) if (Canonicalize && NewCluster.isEmpty())
return RBFactory.remove(B, Base); return RBFactory.remove(B, Base);
return RBFactory.add(B, Base, NewCluster); return RBFactory.add(B, Base, NewCluster, Canonicalize);
}
RegionBindings RegionStoreManager::removeBinding(RegionBindings B,
const MemRegion *R,
BindingKey::Kind k){
return removeBinding(B, BindingKey::Make(R, k));
} }
RegionBindings RegionStoreManager::removeCluster(RegionBindings B, RegionBindings RegionStoreManager::removeCluster(RegionBindings B,
@ -1970,7 +1976,7 @@ StoreRef RegionStoreManager::removeDeadBindings(Store store,
continue; continue;
// Remove the dead entry. // Remove the dead entry.
B = removeCluster(B, Base); B = RBFactory.remove(B, Base, /*Canonicalize=*/false);
if (const SymbolicRegion *SymR = dyn_cast<SymbolicRegion>(Base)) if (const SymbolicRegion *SymR = dyn_cast<SymbolicRegion>(Base))
SymReaper.maybeDead(SymR->getSymbol()); SymReaper.maybeDead(SymR->getSymbol());
@ -1986,7 +1992,7 @@ StoreRef RegionStoreManager::removeDeadBindings(Store store,
} }
} }
return StoreRef(B.getRootWithoutRetain(), *this); return StoreRef(RBFactory.getCanonicalMap(B).getRootWithoutRetain(), *this);
} }
//===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===//