Skip to content
Snippets Groups Projects
  1. Mar 09, 2017
    • Anna Zaks's avatar
      [analyzer] Improve usability of ExprInspectionChecker · 5a343ec2
      Anna Zaks authored
      Some of the magic functions take arguments of arbitrary type. However,
      for semantic correctness, the compiler still requires a declaration
      of these functions with the correct type. Since C does not have
      argument-type-overloaded function, this made those functions hard to
      use in C code. Improve this situation by allowing arbitrary suffixes
      in the affected magic functions' names, thus allowing the user to
      create different declarations for different types.
      
      A patch by Keno Fischer!
      
      Differential Revision: https://reviews.llvm.org/D30589
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@297325 91177308-0d34-0410-b5e6-96231b3b80d8
      5a343ec2
  2. Jan 12, 2017
  3. Nov 30, 2016
    • Artem Dergachev's avatar
      [analyzer] Minor fixes and improvements to debug.ExprInspection · aa1bd55b
      Artem Dergachev authored
      - Fix the bug with transition handling in ExprInspectionChecker's
        checkDeadSymbols implementation.
      
      - Test this bug by adding a new function clang_analyzer_numTimesReached() to
        catch number of passes through the code, which should be handy for testing
        against unintended state splits.
      
      - Add two more functions should help debugging issues quickly without running
        the debugger or dumping exploded graphs - clang_analyzer_dump() which dump()s
        an SVal argument to a warning message, and clang_analyzer_printState(), which
        dump()s the current program state to stderr.
      
      Differential Revision: https://reviews.llvm.org/D26835
      
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@288257 91177308-0d34-0410-b5e6-96231b3b80d8
      aa1bd55b
  4. Aug 28, 2016
  5. Jul 18, 2016
  6. Mar 31, 2016
  7. Jan 26, 2016
  8. Jan 15, 2016
  9. Jan 13, 2016
  10. Dec 10, 2015
  11. Aug 27, 2015
  12. Jan 01, 2014
  13. Oct 03, 2013
    • Jordan Rose's avatar
      [analyzer] Add new debug helper clang_analyzer_warnIfReached. · d000b852
      Jordan Rose authored
      This will emit a warning if a call to clang_analyzer_warnIfReached is
      executed, printing REACHABLE. This is a more explicit way to declare
      expected reachability than using clang_analyzer_eval or triggering
      a bug (divide-by-zero or null dereference), and unlike the former will
      work the same in inlined functions and top-level functions. Like the
      other debug helpers, it is part of the debug.ExprInspection checker.
      
      Patch by Jared Grubb!
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@191909 91177308-0d34-0410-b5e6-96231b3b80d8
      d000b852
  14. Sep 13, 2013
  15. Jun 24, 2013
  16. May 07, 2013
  17. Apr 05, 2013
    • Jordan Rose's avatar
      [analyzer] Enable destructor inlining by default (c++-inlining=destructors). · b11a9086
      Jordan Rose authored
      This turns on not only destructor inlining, but inlining of constructors
      for types with non-trivial destructors. Per r178516, we will still not
      inline the constructor or destructor of anything that looks like a
      container unless the analyzer-config option 'c++-container-inlining' is
      set to 'true'.
      
      In addition to the more precise path-sensitive model, this allows us to
      catch simple smart pointer issues:
      
        #include <memory>
      
        void test() {
          std::auto_ptr<int> releaser(new int[4]);
        } // memory allocated with 'new[]' should not be deleted with 'delete'
      
      <rdar://problem/12295363>
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@178805 91177308-0d34-0410-b5e6-96231b3b80d8
      b11a9086
  18. Feb 27, 2013
  19. Feb 05, 2013
  20. Jan 30, 2013
  21. Jan 07, 2013
  22. Jan 03, 2013
    • Sean Silva's avatar
      analyzer: add initial Sphinx configuration · 0f48f9d5
      Sean Silva authored
      This is just the output of sphinx-quickstart. Now all that is needed
      to begin converting the analyzer docs to reST is the server-side setup.
      
      The analyzer folks have asked me to keep this segregated from the other
      clang docs since the analyzer is a logically separate project (and has
      its own separate web page) even though it resides in the clang tree.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@171425 91177308-0d34-0410-b5e6-96231b3b80d8
      0f48f9d5
  23. Dec 18, 2012
  24. Dec 15, 2012
  25. Sep 10, 2012
  26. Aug 31, 2012
  27. Aug 27, 2012
  28. Aug 22, 2012
  29. Aug 21, 2012
    • Jordan Rose's avatar
      [analyzer] Set the default IPA mode to 'basic-inlining', which excludes C++. · c568e2f8
      Jordan Rose authored
      Under -analyzer-ipa=basic-inlining, only C functions, blocks, and C++ static
      member functions are inlined -- essentially, the calls that behave like simple
      C function calls. This is essentially the behavior in Xcode 4.4.
      
      C++ support still has some rough edges, and we don't want users to be worried
      about them if they download and run their own checker. (In particular, the
      massive number of false positives for analyzing LLVM comes from inlining
      defensively-written code in contexts where more aggressive assumptions are
      implicitly made. This problem is not unique to C++, but it is exacerbated by
      the higher proportion of code that lives in header files in C++.)
      
      The eventual goal is to be comfortable enough with C++ support (and simple
      Objective-C support) to advance to -analyzer-ipa=inlining as the default
      behavior. See the IPA design notes for more details.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162318 91177308-0d34-0410-b5e6-96231b3b80d8
      c568e2f8
  30. Aug 17, 2012
Loading