Skip to content
Snippets Groups Projects
  1. Dec 01, 2016
  2. Nov 11, 2016
  3. Oct 31, 2016
  4. Sep 27, 2016
  5. Sep 26, 2016
  6. Aug 28, 2016
  7. Aug 18, 2016
  8. Aug 17, 2016
  9. Aug 09, 2016
  10. Aug 04, 2016
  11. Jul 29, 2016
  12. Jul 12, 2016
  13. Jul 06, 2016
  14. Jul 05, 2016
  15. Jun 30, 2016
  16. Jun 28, 2016
  17. Jun 24, 2016
  18. Jun 11, 2016
  19. Jun 10, 2016
  20. Jun 07, 2016
  21. Jun 06, 2016
  22. May 30, 2016
    • Etienne Bergeron's avatar
      [ASTMatchers] Add support of hasCondition for SwitchStmt. · c33ca9eb
      Etienne Bergeron authored
      Summary:
      The switch statement could be added to the hasCondition matcher.
      
      Example:
      ```
      clang-query> match switchStmt(hasCondition(ignoringImpCasts(declRefExpr())))
      ```
      
      Output:
      ```
      Match #1:
      
      Binding for "root":
      SwitchStmt 0x2f9b528 </usr/local/google/home/etienneb/examples/enum.cc:35:3, line:38:3>
      |-<<<NULL>>>
      |-ImplicitCastExpr 0x2f9b510 <line:35:11> 'int' <IntegralCast>
      | `-ImplicitCastExpr 0x2f9b4f8 <col:11> 'enum Color' <LValueToRValue>
      |   `-DeclRefExpr 0x2f9b4d0 <col:11> 'enum Color' lvalue Var 0x2f9a118 'C' 'enum Color'
      `-CompoundStmt 0x2f9b610 <col:14, line:38:3>
        |-CaseStmt 0x2f9b578 <line:36:3, col:22>
        | |-ImplicitCastExpr 0x2f9b638 <col:8> 'int' <IntegralCast>
        | | `-DeclRefExpr 0x2f9b550 <col:8> 'enum Size' EnumConstant 0x2f99e40 'Small' 'enum Size'
        | |-<<<NULL>>>
        | `-ReturnStmt 0x2f9b5d0 <col:15, col:22>
        |   `-IntegerLiteral 0x2f9b5b0 <col:22> 'int' 1
        `-DefaultStmt 0x2f9b5f0 <line:37:3, col:12>
          `-BreakStmt 0x2f9b5e8 <col:12>
      
      1 match.
      ```
      
      Reviewers: aaron.ballman, sbenza, klimek
      
      Subscribers: klimek, cfe-commits
      
      Differential Revision: http://reviews.llvm.org/D20767
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@271208 91177308-0d34-0410-b5e6-96231b3b80d8
      c33ca9eb
  23. May 18, 2016
  24. May 16, 2016
  25. May 13, 2016
  26. May 12, 2016
  27. May 04, 2016
    • Samuel Benzaquen's avatar
      Fix the doc extraction script to work with hasAnyName and with equalsNode. · dfe2be47
      Samuel Benzaquen authored
      The change from llvm::VariadicFunction to internal::VariadicFunction
      broke the extraction of hasAnyName().
      equalsNode was broken because the argument type is 'const XXXX*' and
      the internal space caused a failure on the regex.
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@268548 91177308-0d34-0410-b5e6-96231b3b80d8
      dfe2be47
    • Gabor Horvath's avatar
      [ASTMatchers] New matcher forFunction · 0820d774
      Gabor Horvath authored
      Summary: Matcher proposed in the review of checker misc-assign-operator (name pending). Its goal is to find the direct enclosing function declaration of a statement and run the inner matcher on it. Two version is attached in this patch (thus it will not compile), to be decided which approach to take. The second one always chooses one single parent while the first one does a depth-first search upwards (thus a height-first search) and returns the first positive match of the inner matcher (thus it always returns zero or one matches, not more). Further questions: is it enough to implement it in-place, or ASTMatchersInternals or maybe ASTMatchFinder should be involved?
      
      Reviewers: sbenza
      
      Subscribers: aaron.ballman, klimek, o.gyorgy, xazax.hun, cfe-commits
      
      Differential Revision: http://reviews.llvm.org/D19357
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@268490 91177308-0d34-0410-b5e6-96231b3b80d8
      0820d774
  28. Apr 14, 2016
  29. Apr 13, 2016
  30. Mar 30, 2016
    • Gabor Horvath's avatar
      [ASTMatchers] Existing matcher hasAnyArgument fixed · 222b56d7
      Gabor Horvath authored
      Summary: A checker (will be uploaded after this patch) needs to check implicit casts. The checker needs matcher hasAnyArgument but it ignores implicit casts and parenthesized expressions which disables checking of implicit casts for arguments in the checker. However the documentation of the matcher contains a FIXME that this should be removed once separate matchers for ignoring implicit casts and parenthesized expressions are ready. Since these matchers were already there the fix could be executed. Only one Clang checker was affected which was also fixed (ignoreParenImpCasts added) and is separately uploaded. Third party checkers (not in the Clang repository) may be affected by this fix so the fix must be emphasized in the release notes.
      
      Reviewers: klimek, sbenza, alexfh
      
      Subscribers: alexfh, klimek, xazax.hun, cfe-commits
      
      Differential Revision: http://reviews.llvm.org/D18243
      
      git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@264855 91177308-0d34-0410-b5e6-96231b3b80d8
      222b56d7
  31. Mar 22, 2016
  32. Mar 09, 2016
  33. Feb 22, 2016
  34. Feb 18, 2016
  35. Feb 16, 2016
  36. Feb 01, 2016
  37. Jan 29, 2016
Loading