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. Nov 28, 2009
  3. Nov 11, 2009
  4. Sep 09, 2009
  5. Jun 25, 2009
  6. Jun 19, 2009
  7. Jun 18, 2009
  8. Apr 22, 2009
  9. Mar 02, 2009
  10. Feb 18, 2009
    • Ted Kremenek's avatar
      Revise comment. Comparing pointer values in 'Range' wasn't the performance... · ab89bc8c
      Ted Kremenek authored
      Revise comment. Comparing pointer values in 'Range' wasn't the performance issue I thought it was, but it is still worth ordering Range objects by their APSInt values.
      
      llvm-svn: 64921
      ab89bc8c
    • Ted Kremenek's avatar
      Fix performance bug in RangeConstraintManager (that I introduced): · c2c0bdb8
      Ted Kremenek authored
        When comparing if one Range is "less" than another, compare the actual APSInt
        numeric values instead of their pointer addresses. This ensures that the
        ImmutableSet in RangeSet always has a consistent ordering between Ranges. This
        is critical for generating the same digest/hash for the contents of the sets.
        This was a serious performance bug because it would often cause state caching
        to be disabled along complicated paths.
        
      Along the way:
       - Put Range and RangeSet in the "anonymous namespace" and mark them hidden
      
      llvm-svn: 64890
      c2c0bdb8
  11. Feb 17, 2009
    • Ted Kremenek's avatar
      Revised RangeConstraintManager based on several discussions with Ben Laurie and · 3189f495
      Ted Kremenek authored
      Zhongxing Xu. The resultant code is less than 1/2 the size of the original.
      
      Key highlights:
      
      - All CouldBeXXX methods have been removed. Checking for feasibility is now just
        done in the AddXXX methods.
      
      - RangeSets now represent "all possible values" explicitly as the range set {
        [min, max] } instead of the empty set. The empty set now represents "no
        feasible values". This change consolidated much of the core algorithm to only
        have one code path instead of alternate paths that considered the empty set to
        represent "all possible falues."
      
      llvm-svn: 64787
      3189f495
  12. Feb 16, 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