Skip to content
  1. Sep 09, 2009
  2. Aug 06, 2009
    • Ted Kremenek's avatar
      Implement lazy "copying" of structures and arrays in RegionStore. While · fa41714d
      Ted Kremenek authored
      RegionStore already lazily abstracted the contents of arrays and structs, when
      doing an assignment from one array/struct to another we did an explicit
      element-wise copy, which resulted in a loss of laziness and huge performance
      problem when analyzing many code bases.
      
      Now RegionStoreManager handles such assignments using a new SVal could
      'LazyCompoundSVal', which basically means the value of a given struct or array
      (a MemRegion*) in a specific state (GRState). When we do a load from a field
      whose encompassing struct binds to a LazyCompoundSVal, we essentially do a field
      lookup in the original structure. This means we have essentially zero copying of
      data for structs/arrays and everything stays lazy.
      
      llvm-svn: 78268
      fa41714d
  3. 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
  4. Mar 11, 2009
  5. Dec 05, 2008
  6. Nov 22, 2008
  7. Oct 30, 2008
  8. Oct 21, 2008
    • Zhongxing Xu's avatar
      Rename: · 7ff32d09
      Zhongxing Xu authored
        RValues.h/cpp => SVals.h/cpp
      
      llvm-svn: 57893
      7ff32d09
  9. Oct 17, 2008
  10. Sep 19, 2008
  11. Apr 30, 2008
  12. Apr 22, 2008
  13. 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
  14. Mar 07, 2008
  15. Mar 06, 2008
  16. Mar 05, 2008
  17. Feb 28, 2008
  18. Feb 19, 2008
  19. Feb 16, 2008
Loading