Skip to content
  1. Nov 10, 2009
  2. Oct 07, 2009
    • Ted Kremenek's avatar
      Change ExplodedNode to have its NodeGroups all BumpPtrAllocated, avoiding... · c3661dec
      Ted Kremenek authored
      Change ExplodedNode to have its NodeGroups all BumpPtrAllocated, avoiding malloc() traffic when adding successors/predecessors to a node.  This was done by introducing BumpVector, which is essentially SmallVector with all memory being BumpPtrAllocated (this can certainly be cleaned up or moved into llvm/ADT).
      
      This change yields a 1.8% speed increase when running the analyzer (with -analyzer-store=region) on a small benchmark file.
      
      llvm-svn: 83439
      c3661dec
  3. Sep 09, 2009
  4. Aug 06, 2009
  5. Mar 13, 2009
    • Ted Kremenek's avatar
      Use the correct data structures! · e413a760
      Ted Kremenek authored
      ExplodedGraph::TrimGraph:
      - Just do a DFS both ways instead of BFS-DFS. We're just determining what subset
        of the nodes are reachable from the root and reverse-reachable from the bug
        nodes.  DFS is more efficient for this task.
        
      BugReporter:
      - MakeReportGraph: Do a reverse-BFS instead of a reverse-DFS to determine the
        approximate shortest path through the simulation graph. We were seeing some
        weird cases where too many loops were being reported for simple bugs. Possibly
        we will need to replace this with actually computing the shortest path in
        terms of line numbers.
      
      llvm-svn: 66842
      e413a760
  6. Feb 20, 2009
  7. Feb 18, 2009
    • Ted Kremenek's avatar
      Hooked up the necessary machinery to allow the retain/release checker reference · 48d16451
      Ted Kremenek authored
      back to the summary used when evaluating the statement associated with a
      simulation node. This is now being used to help improve the checker's
      diagnostics. To get things started, the checker now emits a path diagnostic
      indicating that 'autorelease' is a no-op in GC mode.
      
      Some of these changes are exposing further grossness in the interface between
      BugReporter and the ExplodedGraph::Trim facilities. These really need to be
      cleaned up one day.
      
      llvm-svn: 64881
      48d16451
  8. Feb 05, 2009
    • Ted Kremenek's avatar
      Overhaul BugReporter interface and implementation. The new interface cleans up · fc5d067e
      Ted Kremenek authored
      the ownership of BugTypes and BugReports. Now BugReports are owned by BugTypes,
      and BugTypes are owned by the BugReporter object.
      
      The major functionality change in this patch is that reports are not immediately
      emitted by a call to BugReporter::EmitWarning (now called EmitReport), but
      instead of queued up in report "equivalence classes". When
      BugReporter::FlushReports() is called, it emits one diagnostic per report
      equivalence class. This provides a nice cleanup with the caching of reports as
      well as enables the BugReporter engine to select the "best" path for reporting a
      path-sensitive bug based on all the locations in the ExplodedGraph that the same
      bug could occur.
      
      Along with this patch, Leaks are now coalesced into a common equivalence class
      by their allocation site, and the "summary" diagnostic for leaks now reports the
      allocation site as the location of the bug (this may later be augmented to also
      provide an example location where the leak occurs).
      
      llvm-svn: 63796
      fc5d067e
  9. Jan 24, 2009
    • Ted Kremenek's avatar
      More hacking on static analyzer diagnostics. When emitting summary... · f08ac278
      Ted Kremenek authored
      More hacking on static analyzer diagnostics.  When emitting summary diagnostics the code paths for diagnostics involving paths or single locations are now unified.  This patch also constifies many arguments/methods that are touched by this logic, leading to a nice overall code cleanup.
      
      llvm-svn: 62903
      f08ac278
  10. Aug 27, 2008
  11. Apr 22, 2008
  12. Apr 21, 2008
  13. Apr 16, 2008
  14. Mar 16, 2008
    • Chris Lattner's avatar
      Make a major restructuring of the clang tree: introduce a top-level · 7a51313d
      Chris Lattner authored
      lib dir and move all the libraries into it.  This follows the main
      llvm tree, and allows the libraries to be built in parallel.  The
      top level now enforces that all the libs are built before Driver,
      but we don't care what order the libs are built in.  This speeds
      up parallel builds, particularly incremental ones.
      
      llvm-svn: 48402
      7a51313d
  15. Mar 12, 2008
  16. Mar 07, 2008
    • Ted Kremenek's avatar
      Added --trim-path-graph to the driver to trim paths from the ExplodedGraph · 2bdd7769
      Ted Kremenek authored
      that are not related to error nodes.
      
      Fixed bug where we did not detect some NULL dereferences.
      
      Added "ExplodedGraph::Trim" to trim all nodes that cannot transitively reach
      a set of provided nodes.
      
      Fixed subtle bug in ExplodedNodeImpl where we could create predecessor
      iterators that included the mangled "sink" bit.  The better fix is to integrate
      this bit into the void* for the wrapped State, not the NodeGroups representing
      a node's predecessors and successors.
      
      llvm-svn: 48036
      2bdd7769
  17. Mar 05, 2008
  18. Mar 03, 2008
  19. Feb 15, 2008
    • Ted Kremenek's avatar
      Simplified transfer function logic for ++/-- operators. · e81734b0
      Ted Kremenek authored
      Added more boilerplate transfer function support for pointer arithmetic.
      Added more pretty-printing support for symbolic constraints.
      Added transfer function support for handling enum values.
      Minor pointer types cleanup in ExplodedGraphImpl.
      
      llvm-svn: 47183
      e81734b0
  20. Jan 30, 2008
  21. Jan 16, 2008
  22. Jan 13, 2008
Loading