Skip to content
  1. Jan 11, 2010
    • Ted Kremenek's avatar
      Switch RegionStore over to using <BaseRegion+raw offset> to store · be909b5e
      Ted Kremenek authored
      value bindings.  Along with a small change to OSAtomicChecker, this
      resolves <rdar://problem/7527292> and resolves some long-standing
      issues with how values can be bound to the same physical address by
      not have the same "key".  This change is only a beginning; logically
      RegionStore needs to better handle loads from addresses where the
      stored value is larger/smaller/different type than the loaded value.
      We handle these cases in an approximate fashion now (via
      CastRetrievedVal and help in SimpleSValuator), but it could be made
      much smarter.
      
      llvm-svn: 93137
      be909b5e
    • Ted Kremenek's avatar
      Preliminary reworking of value-binding logic in RegionStore: · 8e994a28
      Ted Kremenek authored
      (1) Introduce a new 'BindingKey' class to match 'BindingValue'.  This
      gives us the flexibility to change the current key value from 'const
      MemRegion*' to something more interesting.
      
      (2) Rework additions/removals/lookups from the store to use new
      'Remove', 'Add', 'Lookup' utility methods.
      
      No "real" functionality change; just prep work and abstraction.
      
      llvm-svn: 93136
      8e994a28
  2. Jan 05, 2010
  3. Dec 21, 2009
  4. Dec 17, 2009
  5. Dec 16, 2009
    • Zhongxing Xu's avatar
      Add a new kind of region: CXXObjectRegion. Currently it has only one · 6df9f54d
      Zhongxing Xu authored
      attribute: the object type. 
      Add initial support for visiting CXXThisExpr.
      Fix a bunch of 80-col violations.
      
      llvm-svn: 91535
      6df9f54d
    • Ted Kremenek's avatar
      Add (initial?) static analyzer support for handling C++ references. · 4cad5fc0
      Ted Kremenek authored
      This change was a lot bigger than I originally anticipated; among
      other things it requires us storing more information in the CFG to
      record what block-level expressions need to be evaluated as lvalues.
      
      The big change is that CFGBlocks no longer contain Stmt*'s by
      CFGElements.  Currently CFGElements just wrap Stmt*, but they also
      store a bit indicating whether the block-level expression should be
      evalauted as an lvalue.  DeclStmts involving the initialization of a
      reference require us treating the initialization expression as an
      lvalue, even though that information isn't recorded in the AST.
      Conceptually this change isn't that complicated, but it required
      bubbling up the data through the CFGBuilder, to GRCoreEngine, and
      eventually to GRExprEngine.
      
      The addition of CFGElement is also useful for when we want to handle
      more control-flow constructs or other data we want to keep in the CFG
      that isn't represented well with just a block of statements.
      
      In GRExprEngine, this patch introduces logic for evaluating the
      lvalues of references, which currently retrieves the internal "pointer
      value" that the reference represents.  EvalLoad does a two stage load
      to catch null dereferences involving an invalid reference (although
      this could possibly be caught earlier during the initialization of a
      reference).
      
      Symbols are currently symbolicated using the reference type, instead
      of a pointer type, and special handling is required creating
      ElementRegions that layer on SymbolicRegions (see the changes to
      RegionStoreManager).
      
      Along the way, the DeadStoresChecker also silences warnings involving
      dead stores to references.  This was the original change I introduced
      (which I wrote test cases for) that I realized caused GRExprEngine to
      crash.
      
      llvm-svn: 91501
      4cad5fc0
    • Ted Kremenek's avatar
      Remove ValueManager::getRegionValueSymbolValOrUnknown(). It was just extra... · 9158fb74
      Ted Kremenek authored
      Remove ValueManager::getRegionValueSymbolValOrUnknown().  It was just extra veneer on top of getRegionValueSymbolVal().
      
      llvm-svn: 91471
      9158fb74
  6. Dec 11, 2009
  7. Dec 07, 2009
    • Ted Kremenek's avatar
      Add analysis support for blocks. This includes a few key changes: · 04af9f20
      Ted Kremenek authored
      - Refactor the MemRegion hierarchy to distinguish between different StackSpaceRegions for locals and parameters.
      - VarRegions for "captured" variables now have the BlockDataRegion as their super region (except those passed by reference)
      - Add transfer function support to GRExprEngine for BlockDeclRefExprs.
      
      This change also supports analyzing blocks as an analysis entry point
      (top-of-the-stack), which required pushing more context-sensitivity
      around in the MemRegion hierarchy via the use of LocationContext
      objects.  Functionally almost everything is the same, except we track
      LocationContexts in a few more areas and StackSpaceRegions now refer
      to a StackFrameContext object.  In the future we will need to modify
      MemRegionManager to allow multiple StackSpaceRegions in flight at once
      (for the analysis of multiple stack frames).
      
      llvm-svn: 90809
      04af9f20
  8. Dec 04, 2009
  9. Dec 03, 2009
  10. Nov 28, 2009
  11. Nov 26, 2009
  12. Nov 25, 2009
  13. Nov 19, 2009
  14. Nov 16, 2009
    • Zhongxing Xu's avatar
      * Do the same thing to the basicstore as in r84163. · 731f4626
      Zhongxing Xu authored
      * Add a load type to GRExprEngine::EvalLoad().
      * When retrieve from 'theValue' of OSAtomic funcitions, use the type of the 
        region instead of the argument expression as the load type.
      * Then we can convert CastRetrievedSVal to a pure assertion. In the future
        we can let all Retrieve() methods simply return SVal.
      
      llvm-svn: 88888
      731f4626
  15. Nov 12, 2009
  16. Nov 10, 2009
  17. Nov 09, 2009
  18. Nov 04, 2009
  19. Oct 29, 2009
  20. Oct 20, 2009
  21. Oct 18, 2009
  22. Oct 17, 2009
  23. Oct 16, 2009
  24. Oct 15, 2009
    • Ted Kremenek's avatar
      Per an astute observation from Zhongxing Xu, remove a "special case" logic in · 3abc41f4
      Ted Kremenek authored
      RegionStoreManager::Retrieve() that was intended to handle conflated uses of pointers as integers.
      It turns out this isn't needed, and resulted in inconsistent behavior when creating symbolic values on the following test case in 'tests/Analysis/misc-ps.m':
      
        typedef struct _BStruct { void *grue; } BStruct;
        void testB_aux(void *ptr);
        void testB(BStruct *b) {
          {
            int *__gruep__ = ((int *)&((b)->grue));
            int __gruev__ = *__gruep__;
            testB_aux(__gruep__);
          }
          {
            int *__gruep__ = ((int *)&((b)->grue));
            int __gruev__ = *__gruep__;
            if (~0 != __gruev__) {}
          }
        }
      
      When the code was analyzed with '-arch x86_64', the value assigned to '__gruev__' be would be a
      symbolic integer, but for '-arch i386' the value assigned to '__gruev__' would be a symbolic region
      (a blob of memory). With this change the value created is always a symbolic integer.
      
      Since the code being removed was added to support analysis of code calling
      OSAtomicCompareAndSwapXXX(), I also modified 'test/Analysis/NSString.m' to analyze the code in both
      '-arch i386' and '-arch x86_64', and also added some complementary test cases to test the presence
      of leaks when using OSAtomicCompareAndSwap32Barrier()/OSAtomicCompareAndSwap64Barrier() instead of
      just their absence. This code change reveals that previously both RegionStore and BasicStore were
      handling these cases wrong, and would never cause the analyzer to emit a leak in these cases (false
      negatives). Now RegionStore gets it right, but BasicStore still gets it wrong (and hence it has been
      disabled temporarily for this test case).
      
      llvm-svn: 84163
      3abc41f4
  25. Oct 14, 2009
  26. Oct 13, 2009
  27. Oct 11, 2009
  28. Oct 09, 2009
Loading