Skip to content
  1. Dec 24, 2009
  2. Dec 12, 2009
  3. Dec 11, 2009
  4. 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
  5. Dec 04, 2009
  6. Nov 26, 2009
    • Ted Kremenek's avatar
      Enhance LiveVariables to understand that blocks can extend the liveness of a... · 0f5e6f88
      Ted Kremenek authored
      Enhance LiveVariables to understand that blocks can extend the liveness of a variable by "capturing" them in a BlockExpr.
      
      This required two changes:
      
      1) Added 'getReferencedgetReferencedBlockVars()' to AnalysisContext so
      that clients can iterate over the "captured" variables in a block.
      
      2) Modified LiveVariables to take an AnalysisContext& in its
      constructor and to call getReferencedgetReferencedBlockVars() when it
      processes a BlockExpr*.
      
      llvm-svn: 89924
      0f5e6f88
  7. Oct 20, 2009
  8. Sep 09, 2009
  9. Aug 22, 2009
  10. Aug 03, 2009
  11. Jul 31, 2009
  12. Jul 30, 2009
Loading