Skip to content
  1. Dec 14, 2009
  2. Dec 04, 2009
  3. Sep 09, 2009
  4. Sep 02, 2009
    • Ted Kremenek's avatar
      Replace uses of ImmutableSet in SymbolReaper with DenseSet. This was · cf768cd2
      Ted Kremenek authored
      motivated from Shark profiles that shows that 'markLive' was very
      heavy when using --analyzer-store=region.  On my benchmark file, this
      reduces the analysis time for --analyzer-store=region from 19.5s to
      13.5s and for --analyzer-store=basic from 5.3s to 3.5s.  For the
      benchmark file, this is a reduction of about 30% analysis time for
      both analysis modes (a huge win).
      
      llvm-svn: 80765
      cf768cd2
  5. Aug 01, 2009
    • Ted Kremenek's avatar
      This is a fairly large patch, which resulted from a cascade of changes · 1f22aa74
      Ted Kremenek authored
      made to RegionStore (and related classes) in order to handle some
      analyzer failures involving casts and manipulation of symbolic memory.
      
      The root of the change is in StoreManager::CastRegion().  Instead of
      using ad hoc heuristics to decide when to layer an ElementRegion on a
      casted MemRegion, we now always layer an ElementRegion when the cast
      type is different than the original type of the region.  This carries
      the current cast information associated with a region around without
      resorting to the error prone recording of "casted types" in GRState.
      
      Along with this new policy of layering ElementRegions, I added a new
      algorithm to strip away existing ElementRegions when they simply
      represented casts of a base memory object.  This algorithm computes
      the raw "byte offset" that an ElementRegion represents from the base
      region, and allows the new ElementRegion to be based off that offset.
      The added benefit is that this naturally handles a series of casts of
      a MemRegion without building up a set of redundant ElementRegions
      (thus canonicalizing the region view).
      
      Other related changes that cascaded from this one (as tests were
      failing in RegionStore):
      
      - Revamped RegionStoreManager::InvalidateRegion() to completely remove
        all bindings and default values from a region and all subregions.
        Now invalidated fields are not bound directly to new symbolic
        values; instead the base region has a "default" symbol value from
        which "derived symbols" can be created.  The main advantage of this
        approach is that it allows us to invalidate a region hierarchy and
        then lazily instantiate new values no matter how deep the hierarchy
        went (i.e., regardless of the number of field accesses,
        e.g. x->f->y->z->...).  The previous approach did not do this.
      
      - Slightly reworked RegionStoreManager::RemoveDeadBindings() to also
        incorporate live symbols and live regions that do not have direct
        bindings but also have "default values" used for lazy instantiation.
        The changes to 'InvalidateRegion' revealed that these were necessary
        in order to achieve lazy instantiation of values in the region store
        with those bindings being removed too early.
      
      - The changes to InvalidateRegion() and RemoveDeadBindings() revealed
        a serious bug in 'getSubRegionMap()' where not all region -> subregion
        relationships involved in actually bindings (explicit and implicit)
        were being recorded.  This has been fixed by using a worklist algorithm
        to iteratively fill in the region map.
      
      - Added special support to RegionStoreManager::Bind()/Retrieve() to handle
        OSAtomicCompareAndSwap in light of the new 'CastRegion' changes and the
        layering of ElementRegions.
      
      - Fixed a bug in SymbolReaper::isLive() where derived symbols were not
        being marked live if the symbol they were derived from was also live.
        This fix was critical for getting lazy instantiation in RegionStore
        to work.
      
      - Tidied up the implementation of ValueManager::getXXXSymbolVal() methods
        to use SymbolManager::canSymbolicate() to decide whether or not a
        symbol should be symbolicated.
      
      - 'test/Analysis/misc-ps-xfail.m' now passes; that test case has been
        moved to 'test/Analysis/misc-ps.m'.
      
      - Tweaked some pretty-printing of MemRegions, and implemented
        'ElementRegion::getRawOffset()' for use with the CastRegion changes.
      
      llvm-svn: 77782
      1f22aa74
  6. Jul 29, 2009
  7. Jul 15, 2009
  8. Jul 14, 2009
  9. Jun 25, 2009
  10. Jun 19, 2009
  11. May 09, 2009
  12. Mar 26, 2009
    • Ted Kremenek's avatar
      analyzer infrastructure: make a bunch of changes to symbolic expressions that · 3e31c26f
      Ted Kremenek authored
      Zhongxing and I discussed by email.
      
      Main changes:
      - Removed SymIntConstraintVal and SymIntConstraint
      - Added SymExpr as a parent class to SymbolData, SymSymExpr, SymIntExpr
      - Added nonloc::SymExprVal to wrap SymExpr
      - SymbolRef is now just a typedef of 'const SymbolData*'
      - Bunch of minor code cleanups in how some methods were invoked (no functionality change)
      
      This changes are part of a long-term plan to have full symbolic expression
      trees. This will be useful for lazily evaluating complicated expressions.
      
      llvm-svn: 67731
      3e31c26f
  13. Mar 25, 2009
  14. Mar 23, 2009
  15. Mar 20, 2009
    • Ted Kremenek's avatar
      GRExprEngine: · 6b31533a
      Ted Kremenek authored
      - Conjure symbols at '--' and '++' unary operations
      - Add utility method SVal::GetConjuredSymbolVal() and constify some arguments
        along the way.
      
      llvm-svn: 67395
      6b31533a
  16. Mar 04, 2009
  17. Mar 03, 2009
  18. Feb 14, 2009
    • Ted Kremenek's avatar
      Added GRStateManager::scanReachableSymbols(), a method which scans the reachable · 4e9d4b5d
      Ted Kremenek authored
      symbols from an SVal.
      
      - Fixed a bug in EnvironmentManager::RemoveDeadBindings() where it did not mark
        live all the symbols reachable from a live block-level expression.
      
      - Fixed a bug in the retain/release checker where it did not stop tracking
        symbols that 'escaped' via compound literals being assigned to something the
        BasicStoreManager didn't reason about.
      
      llvm-svn: 64534
      4e9d4b5d
  19. Jan 22, 2009
    • Ted Kremenek's avatar
      SymbolReaper::isLive(SymbolRef) now always returns true for... · 2dd9c9cb
      Ted Kremenek authored
      SymbolReaper::isLive(SymbolRef) now always returns true for SymbolRegionRvalues because these represent the symbolic values for parameters/globals upon entry to the function.  These values are always ;live' because they represent constraints on the context of how the function was called.  This will be useful for both summary generation but is also necessary to get RegionStore's lazy-binding of locations to symbols to work in practice with RemoveDeadBindings.
      
      llvm-svn: 62771
      2dd9c9cb
    • Ted Kremenek's avatar
      Static analyzer: Remove a bunch of outdated SymbolData objects and · 74040833
      Ted Kremenek authored
      their associated APIs.  We no longer need separate SymbolData objects
      for fields, variables, etc.  Instead, we now associated symbols with
      the "rvalue" of a MemRegion (i.e., the value stored at that region).
      Now we only have two kinds of SymbolData objects: SymbolRegionRValue
      and SymbolConjured.
      
      This cleanup also makes the distinction between a SymbolicRegion and a
      symbolic value that is a location much clearer.  A SymbolicRegion
      represents a chunk of symbolic memory, while a symbolic location is
      just a "pointer" with different possible values.  Without any specific
      knowledge, a symbolic location resolves (i.e., via a dereference) to a
      SymbolicRegion.  In the future, when we do better alias reasoning, a
      symbolic location can become an alias for another location, thus
      merging the constraints on the referred SymbolicRegion with the other
      region.
      
      llvm-svn: 62769
      74040833
  20. Jan 21, 2009
  21. Jan 15, 2009
  22. Dec 20, 2008
    • Zhongxing Xu's avatar
      Lazy bingding for region-store manager. · af7415ff
      Zhongxing Xu authored
      * Now Bind() methods take and return GRState* because binding could
        also alter GDM.
      * No variables are initialized except those declared with initial
        values.
      * failed C test cases are due to bugs in RemoveDeadBindings(),
      which removes constraints that is still alive. This will be fixed in later
      patch.
      * default value of array and struct regions will be implemented in later patch.
      
      llvm-svn: 61274
      af7415ff
  23. Dec 05, 2008
  24. Nov 19, 2008
  25. Nov 12, 2008
  26. Oct 01, 2008
  27. Aug 13, 2008
  28. Mar 16, 2008
    • Chris Lattner's avatar
      Make a major restructuring of the clang tree: introduce a top-level · 7a51313d
      Chris Lattner authored
      lib dir and move all the libraries into it.  This follows the main
      llvm tree, and allows the libraries to be built in parallel.  The
      top level now enforces that all the libs are built before Driver,
      but we don't care what order the libs are built in.  This speeds
      up parallel builds, particularly incremental ones.
      
      llvm-svn: 48402
      7a51313d
  29. Mar 12, 2008
  30. Mar 06, 2008
  31. Feb 26, 2008
  32. Feb 19, 2008
  33. Feb 16, 2008
Loading