Skip to content
  1. Jan 05, 2010
  2. Dec 23, 2009
  3. Nov 16, 2009
    • Douglas Gregor's avatar
      First part of changes to eliminate problems with cv-qualifiers and · 1b8fe5b7
      Douglas Gregor authored
      sugared types. The basic problem is that our qualifier accessors
      (getQualifiers, getCVRQualifiers, isConstQualified, etc.) only look at
      the current QualType and not at any qualifiers that come from sugared
      types, meaning that we won't see these qualifiers through, e.g.,
      typedefs:
      
        typedef const int CInt;
        typedef CInt Self;
      
      Self.isConstQualified() currently returns false!
      
      Various bugs (e.g., PR5383) have cropped up all over the front end due
      to such problems. I'm addressing this problem by splitting each
      qualifier accessor into two versions: 
      
        - the "local" version only returns qualifiers on this particular
          QualType instance
        - the "normal" version that will eventually combine qualifiers from this
          QualType instance with the qualifiers on the canonical type to
          produce the full set of qualifiers.
      
      This commit adds the local versions and switches a few callers from
      the "normal" version (e.g., isConstQualified) over to the "local"
      version (e.g., isLocalConstQualified) when that is the right thing to
      do, e.g., because we're printing or serializing the qualifiers. Also,
      switch a bunch of
        
        Context.getCanonicalType(T1).getUnqualifiedType() == Context.getCanonicalType(T2).getQualifiedType()
      
      expressions over to 
      
        Context.hasSameUnqualifiedType(T1, T2)
      
      llvm-svn: 88969
      1b8fe5b7
  4. Oct 14, 2009
  5. Oct 06, 2009
    • Ted Kremenek's avatar
      Fix: <rdar://problem/7275774> Static analyzer warns about NULL pointer when · 8ec5771d
      Ted Kremenek authored
                                    adding assert
      
      This fix required a few changes:
      
      SimpleSValuator:
      - Eagerly replace a symbolic value with its constant value in EvalBinOpNN
        when it is constrained to a constant.  This allows us to better constant fold
        values along a path.
      - Handle trivial case of '<', '>' comparison of pointers when the two pointers
        are exactly the same.
      
      RegionStoreManager:
      
      llvm-svn: 83358
      8ec5771d
  6. 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
  7. Sep 09, 2009
  8. Aug 25, 2009
  9. Jul 29, 2009
  10. Jul 25, 2009
  11. Jul 21, 2009
Loading