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
  2. Nov 28, 2009
  3. Oct 17, 2009
  4. Oct 16, 2009
  5. Oct 06, 2009
  6. Sep 25, 2009
  7. 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
  8. Sep 09, 2009
  9. Jul 21, 2009
    • Ted Kremenek's avatar
      Fix PR 4594 by refactoring almost all casting logic from GRExprEngine::VisitCast · ac7c7240
      Ted Kremenek authored
      to SValuator::EvalCast. In the process, the StoreManagers now use this new cast
      machinery, and the hack in GRExprEngine::EvalBind to handle implicit casts
      involving OSAtomicCompareAndSwap and friends has been removed (and replaced with
      logic closer to the logic specific to those functions).
      
      llvm-svn: 76641
      ac7c7240
    • Ted Kremenek's avatar
      RegionStore: · fe12f889
      Ted Kremenek authored
      -refactor logic for retrieving bindings from VarDecls into
       RegionStoreManager::RetrieveVar()
      - improve RegionStoreManager::CastRetrievedVal() and SimpleSValuate::EvalCastNL
        to better handle casts of values of the same canonical type as well as
        casts of LocAsInteger values.
      
      llvm-svn: 76516
      fe12f889
  10. Jul 20, 2009
  11. Jul 16, 2009
    • Ted Kremenek's avatar
      Move RegionStoreManager over to using new · c7b1dade
      Ted Kremenek authored
      ValueManager::makeArrayIndex()/convertArrayIndex() methods.  This
      handles yet another crash case when reasoning about array indices of
      different bitwidth and signedness.
      
      llvm-svn: 75884
      c7b1dade
  12. Jul 13, 2009
    • Ted Kremenek's avatar
      Enhance SimpleSValuator::EvalBinOpNN to recognize the trivial case · b63f7152
      Ted Kremenek authored
      where we are comparing a symbolic value against itself, regardless of
      the nature of that symbolic value.
      
      This enhancement identified a case where RegionStoreManager is not
      correctly symbolicating the values of the pointees of parameters.  The
      failing test is now in 'test/Analysis/misc-ps-region-store.m', with
      that test file now (temporarily) marked XFAIL.
      
      llvm-svn: 75521
      b63f7152
  13. Jun 26, 2009
Loading