Skip to content
  1. Jan 05, 2010
    • Ted Kremenek's avatar
      Remove references to 'Checker' and 'GRTransferFuncs' from · de8e7447
      Ted Kremenek authored
      GRStateManager.  Having these references was an abstraction violation,
      as they really should only be known about GRExprEngine.
      
      This change required adding a new 'ProcessAssume' callback in
      GRSubEngine.  GRExprEngine implements this callback by calling
      'EvalAssume' on all registered Checker objects as well as the
      registered GRTransferFunc object.
      
      llvm-svn: 92549
      de8e7447
  2. Dec 31, 2009
  3. Sep 25, 2009
  4. Sep 12, 2009
    • Ted Kremenek's avatar
      Introduce "DefinedOrUnknownSVal" into the SVal class hierarchy, providing a way · 7020eae0
      Ted Kremenek authored
      to statically type various methods in SValuator/GRState as required either a
      defined value or a defined-but-possibly-unknown value. This leads to various
      logic cleanups in GRExprEngine, and lets the compiler enforce via type checking
      our assumptions about what symbolic values are possibly undefined and what are
      not.
      
      Along the way, clean up some of the static analyzer diagnostics regarding the uses of uninitialized values.
      
      llvm-svn: 81579
      7020eae0
  5. Sep 09, 2009
  6. Jun 19, 2009
  7. Apr 20, 2009
  8. Apr 10, 2009
  9. 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
  10. Mar 25, 2009
  11. Mar 23, 2009
  12. Mar 11, 2009
  13. Feb 14, 2009
    • Ted Kremenek's avatar
      Patch by Ben Laurie: · 7efe43db
      Ted Kremenek authored
      ConstraintManager:
      - constify getSymVal()
      
      BasicConstraintManager:
      - Pull out logic that would be common to ConstraintManagers of a similar nature
        and put them in a parent class called 'SimpleConstraintManager'.
      
      RangeConstraintManager:
      - Added a new prototype ConstraintManager to track ranges of variables! This
        ConstraintManager keeps tracks of ranges of concrete integers that a symbolic
        integer may have.
      
      AnalysisConsumer:
      - Add driver option to use RangeConstraintManager with GRExprEngine-based
        analyses.
      
      llvm-svn: 64558
      7efe43db
Loading