Skip to content
  1. Feb 01, 2019
    • Brian Gesiak's avatar
      [SemaCXX] Param diagnostic matches overload logic · 3aba9fd6
      Brian Gesiak authored
      Summary:
      Given the following test program:
      
      ```
      class C {
      public:
        int A(int a, int& b);
      };
      
      int C::A(const int a, int b) {
        return a * b;
      }
      ```
      
      Clang would produce an error message that correctly diagnosed the
      redeclaration of `C::A` to not match the original declaration (the
      parameters to the two declarations do not match -- the original takes an
      `int &` as its 2nd parameter, but the redeclaration takes an `int`). However,
      it also produced a note diagnostic that inaccurately pointed to the
      first parameter, claiming that `const int` in the redeclaration did not
      match the unqualified `int` in the original. The diagnostic is
      misleading because it has nothing to do with why the program does not
      compile.
      
      The logic for checking for a function overload, in
      `Sema::FunctionParamTypesAreEqual`, discards cv-qualifiers before
      checking whether the types are equal. Do the same when producing the
      overload diagnostic.
      
      Reviewers: rsmith
      
      Reviewed By: rsmith
      
      Subscribers: cpplearner, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D57032
      
      llvm-svn: 352831
      3aba9fd6
  2. Jan 29, 2019
  3. Jan 27, 2019
    • Nicolas Lesser's avatar
      [SemaCXX] Fix ICE with structure bindings to members of template · 0276d124
      Nicolas Lesser authored
      
      
      Summary:
      Trying to use structure binding with a structure that doesn't implement
      std::tuple_size, should unpack the data members. When the struct is a
      template though, clang might hit an assertion (if the type has not been
      completed before), because CXXRecordDecl::DefinitionData is nullptr.
      
      This commit fixes the problem by completing the type while trying to
      decompose the structured binding.
      
      The ICE happens in real world code, for example, when trying to iterate
      a protobuf generated map with a range-based for loop and structure
      bindings (because google::protobuf::MapPair is a template and doesn't
      support std::tuple_size).
      
      Reported-by: default avatar <nicholas.sun@nlsun.com>
      
      Patch by Daniele Di Proietto
      
      Reviewers: #clang, rsmith
      
      Reviewed By: #clang, rsmith
      
      Subscribers: cpplearner, Rakete1111, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D56974
      
      llvm-svn: 352323
      0276d124
    • Bill Wendling's avatar
      Remove Expr sugar decorating the CXXUuidofExpr node. · ff57307b
      Bill Wendling authored
      Summary: Sugar, like ConstantExpr, causes an infinite expansion of the template object.
      
      Reviewers: rsmith, aaron.ballman
      
      Reviewed By: aaron.ballman
      
      Subscribers: riccibruno, aaron.ballman, cfe-commits, tzik, rnk
      
      Differential Revision: https://reviews.llvm.org/D57114
      
      llvm-svn: 352307
      ff57307b
  4. Jan 25, 2019
    • Erich Keane's avatar
      Remove F16 literal support based on Float16 support. · e3f289c9
      Erich Keane authored
      Float16 support was disabled recently on many platforms, however that
      commit still allowed literals of Float16 type to work.  This commit
      removes those based on the same logic as Float16 disable.
      
      Change-Id: I72243048ae2db3dc47bd3d699843e3edf9c395ea
      llvm-svn: 352229
      e3f289c9
    • Erich Keane's avatar
      Allow 'static' storage specifier on an out-of-line member function template · 3e7fda22
      Erich Keane authored
      declaration in MSVCCompat mode
      
      Microsoft compiler permits the use of 'static' storage specifier outside
      of a class definition if it's on an out-of-line member function template
      declaration.
      
      This patch allows 'static' storage specifier on an out-of-line member
      function template declaration with a warning in Clang (To be compatible
      with Microsoft).
      
      Intel C/C++ compiler allows the 'static' keyword with a warning in
      Microsoft mode. GCC allows this with -fpermissive.
      
      Patch By: Manna
      
      Differential Revision: https://reviews.llvm.org/D56473
      
      Change-Id: I97b2d9e9d57cecbcd545d17e2523142a85ca2702
      llvm-svn: 352219
      3e7fda22
  5. Jan 24, 2019
  6. Jan 19, 2019
    • Johannes Doerfert's avatar
      Emit !callback metadata and introduce the callback attribute · ac991bbb
      Johannes Doerfert authored
        With commit r351627, LLVM gained the ability to apply (existing) IPO
        optimizations on indirections through callbacks, or transitive calls.
        The general idea is that we use an abstraction to hide the middle man
        and represent the callback call in the context of the initial caller.
        It is described in more detail in the commit message of the LLVM patch
        r351627, the llvm::AbstractCallSite class description, and the
        language reference section on callback-metadata.
      
        This commit enables clang to emit !callback metadata that is
        understood by LLVM. It does so in three different cases:
          1) For known broker functions declarations that are directly
             generated, e.g., __kmpc_fork_call for the OpenMP pragma parallel.
          2) For known broker functions that are identified by their name and
             source location through the builtin detection, e.g.,
             pthread_create from the POSIX thread API.
          3) For user annotated functions that carry the "callback(callee, ...)"
             attribute. The attribute has to include the name, or index, of
             the callback callee and how the passed arguments can be
             identified (as many as the callback callee has). See the callback
             attribute documentation for detailed information.
      
      Differential Revision: https://reviews.llvm.org/D55483
      
      llvm-svn: 351629
      ac991bbb
  7. Jan 18, 2019
    • Zola Bridges's avatar
      [clang][slh] add Clang attr no_speculative_load_hardening · 826ef595
      Zola Bridges authored
      Summary:
      This attribute will allow users to opt specific functions out of
      speculative load hardening. This compliments the Clang attribute
      named speculative_load_hardening. When this attribute or the attribute
      speculative_load_hardening is used in combination with the flags
      -mno-speculative-load-hardening or -mspeculative-load-hardening,
      the function level attribute will override the default during LLVM IR
      generation. For example, in the case, where the flag opposes the
      function attribute, the function attribute will take precendence.
      The sticky inlining behavior of the speculative_load_hardening attribute
      may cause a function with the no_speculative_load_hardening attribute
      to be tagged with the speculative_load_hardening tag in
      subsequent compiler phases which is desired behavior since the
      speculative_load_hardening LLVM attribute is designed to be maximally
      conservative.
      
      If both attributes are specified for a function, then an error will be
      thrown.
      
      Reviewers: chandlerc, echristo, kristof.beyls, aaron.ballman
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D54909
      
      llvm-svn: 351565
      826ef595
    • Erich Keane's avatar
      Fix test failure from r351495 · 63efa3bd
      Erich Keane authored
      The test has problems due to some platforms having a different type for
      ptrdiff_t, so the error message is different.  The error message doesn't
      matter to the test for anything other than an incompatible intger to
      pointer conversion, so this patch removes the integral type from the
      expected message.
      
      Change-Id: I80e786f9b80268163813774bbf25a9ca25b6c60c
      llvm-svn: 351550
      63efa3bd
    • Erich Keane's avatar
      Make integral-o-pointer conversions in SFINAE illegal. · 26e4cef0
      Erich Keane authored
      As reported in PR40362, allowing the conversion from an integral to a
      pointer type (despite being illegal in the C++ standard) will cause
      surprsing results when testing for certain behaviors in SFINAE.  This
      patch converts the error to a SFINAE Error and adds a test to ensure
      that it is still a warning in non-SFINAE but an error in it.
      
      Change-Id: I1f475637fa4d83217ae37dc6b5dbf653e118fae4
      llvm-svn: 351495
      26e4cef0
  8. Jan 17, 2019
    • Eric Fiselier's avatar
      Add -Wctad-maybe-unsupported to diagnose CTAD on types with no user defined deduction guides. · 73b51ae1
      Eric Fiselier authored
      Summary:
      Some style guides want to allow using CTAD only on types that "opt-in"; i.e. on types that are designed to support it and not just types that *happen* to work with it.
      
      This patch implements the `-Wctad-maybe-unsupported` warning, which is off by default, which warns when CTAD is used on a type that does not define any deduction guides.
      
      The following pattern can be used to suppress the warning in cases where the type intentionally doesn't define any deduction guides:
      
      ```
      struct allow_ctad_t;
      
      template <class T>
      struct TestSuppression {
        TestSuppression(T) {}
      };
      TestSuppression(allow_ctad_t)->TestSuppression<void>; // guides with incomplete parameter types are never considered.
      ```
      
      Reviewers: rsmith, james.dennett, gromer
      
      Reviewed By: rsmith
      
      Subscribers: jdennett, Quuxplusone, lebedev.ri, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D56731
      
      llvm-svn: 351484
      73b51ae1
  9. Jan 16, 2019
    • Richard Smith's avatar
      PR40329: [adl] Fix determination of associated classes when searching a · 58bd01fc
      Richard Smith authored
      member enum and then its enclosing class.
      
      There are situations where ADL will collect a class but not the complete
      set of associated classes / namespaces of that class. When that
      happened, and we later tried to collect those associated classes /
      namespaces, we would previously short-circuit the lookup and not find
      them. Eg, for:
      
        struct A : B { enum E; };
      
      if we first looked for associated classes/namespaces of A::E, we'd find
      only A. But if we then tried to also collect associated
      classes/namespaces of A (which should include the base class B), we
      would not add B because we had already visited A.
      
      This also fixes a minor issue where we would fail to collect associated
      classes from an overloaded class member access expression naming a
      static member function.
      
      llvm-svn: 351382
      58bd01fc
    • Eric Fiselier's avatar
      [SemaCXX] Unconfuse Clang when std::align_val_t is unscoped in C++03 · 8e920507
      Eric Fiselier authored
      When -faligned-allocation is specified in C++03 libc++ defines
      std::align_val_t as an unscoped enumeration type (because Clang didn't
      provide scoped enumerations as an extension until 8.0).
      Unfortunately Clang confuses the `align_val_t` overloads of delete with
      the sized deallocation overloads which aren't enabled. This caused Clang
      to call the aligned deallocation function as if it were the sized
      deallocation overload.
      
      For example: https://godbolt.org/z/xXJELh
      
      This patch fixes the confusion.
      
      llvm-svn: 351294
      8e920507
  10. Jan 10, 2019
  11. Jan 08, 2019
  12. Jan 07, 2019
    • Richard Smith's avatar
      DR674, PR38883, PR40238: Qualified friend lookup should look for a · 8ce732b4
      Richard Smith authored
      template specialization if there is no matching non-template function.
      
      This exposed a couple of related bugs:
       - we would sometimes substitute into a friend template instead of a
         suitable non-friend declaration; this would now crash because we'd
         decide the specialization of the friend is a redeclaration of itself
       - ADL failed to properly handle the case where an invisible local
         extern declaration redeclares an invisible friend
      
      Both are fixed herein: in particular, we now never make invisible
      friends or local extern declarations visible to name lookup unless
      they are the only declaration of the entity. (We already mostly did
      this for local extern declarations.)
      
      llvm-svn: 350505
      8ce732b4
    • Brian Gesiak's avatar
      [SemaCXX] Fix ICE for unexpanded parameter pack · 7dda73a2
      Brian Gesiak authored
      
      
      Summary:
      The documentation for RecursiveASTVisitor::TraverseDecl states that the
      Decl being traversed may be null. In fact, this is the case when a
      CXXCatchStmt with no exception decl is traversed. Because the visitor
      for diagnosing unexpanded parameter packs does not check for null, it
      ends up crashing when it attempts to call the Decl::isParameterPack
      method on a null Decl pointer.
      
      Add a null check to prevent an ICE, and a test case that would crash
      otherwise. Also, because the test requires C++ exceptions and C++14,
      change the test parameters for the entire test file. (Alternatively, I
      thought about adding a new test file, but went with this approach for my
      own convenience.)
      
      Co-authored-by: default avatarAndreas Molzer <andreas.molzer@gmx.de>
      Co-authored-by: default avatarMara Bos <m-ou.se@m-ou.se>
      
      Reviewers: rsmith
      
      Reviewed By: rsmith
      
      Subscribers: cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D56271
      
      llvm-svn: 350501
      7dda73a2
  13. Jan 04, 2019
    • Aaron Ballman's avatar
      Refactor the way we handle diagnosing unused expression results. · fb6deeb9
      Aaron Ballman authored
      Rather than sprinkle calls to DiagnoseUnusedExprResult() around in places where we want diagnostics, we now diagnose unused expression statements and full expressions in a more generic way when acting on the final expression statement. This results in more appropriate diagnostics for [[nodiscard]] where we were previously lacking them, such as when the body of a for loop is not a compound statement.
      
      This patch fixes PR39837.
      
      llvm-svn: 350404
      fb6deeb9
    • Anastasia Stulova's avatar
      [Basic] Extend DiagnosticEngine to store and format Qualifiers. · 4cebc9db
      Anastasia Stulova authored
       
      Qualifiers can now be streamed into the DiagnosticEngine using
      regular << operator. If Qualifiers are empty 'unqualified' will
      be printed in the diagnostic otherwise regular qual syntax is
      used.
      
      Differential Revision: https://reviews.llvm.org/D56198
      
      llvm-svn: 350386
      4cebc9db
  14. Jan 03, 2019
  15. Dec 21, 2018
  16. Dec 20, 2018
  17. Dec 18, 2018
  18. Dec 16, 2018
    • Aaron Puchert's avatar
      Thread safety analysis: Allow scoped releasing of capabilities · 6a68efc9
      Aaron Puchert authored
      Summary:
      The pattern is problematic with C++ exceptions, and not as widespread as
      scoped locks, but it's still used by some, for example Chromium.
      
      We are a bit stricter here at join points, patterns that are allowed for
      scoped locks aren't allowed here. That could still be changed in the
      future, but I'd argue we should only relax this if people ask for it.
      
      Fixes PR36162.
      
      Reviewers: aaron.ballman, delesley, pwnall
      
      Reviewed By: delesley, pwnall
      
      Subscribers: pwnall, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D52578
      
      llvm-svn: 349300
      6a68efc9
  19. Dec 14, 2018
    • Erich Keane's avatar
      Revert "Add extension to always default-initialize nullptr_t." · 1b9c7460
      Erich Keane authored
      This reverts commit 46efdf2ccc2a80aefebf8433dbf9c7c959f6e629.
      
      Richard Smith commented just after I submitted this that this is the
      wrong solution.  Reverting so that I can fix differently.
      
      llvm-svn: 349206
      1b9c7460
    • Erich Keane's avatar
      Add extension to always default-initialize nullptr_t. · 07325c80
      Erich Keane authored
      Core issue 1013 suggests that having an uninitialied std::nullptr_t be
      UB is a bit foolish, since there is only a single valid value. This DR
      reports that DR616 fixes it, which does so by making lvalue-to-rvalue
      conversions from nullptr_t be equal to nullptr.
      
      However, just implementing that results in warnings/etc in many places.
      In order to fix all situations where nullptr_t would seem uninitialized,
      this patch instead (as an otherwise transparent extension) default
      initializes uninitialized VarDecls of nullptr_t.
      
      Differential Revision: https://reviews.llvm.org/D53713
      
      Change-Id: I84d72a9290054fa55341e8cbdac43c8e7f25b885
      llvm-svn: 349201
      07325c80
    • Eric Fiselier's avatar
      [Clang] Add __builtin_launder · 26187505
      Eric Fiselier authored
      Summary:
      This patch adds `__builtin_launder`, which is required to implement `std::launder`. Additionally GCC provides `__builtin_launder`, so thing brings Clang in-line with GCC.
      
      I'm not exactly sure what magic `__builtin_launder` requires, but  based on previous discussions this patch applies a `@llvm.invariant.group.barrier`. As noted in previous discussions, this may not be enough to correctly handle vtables.
      
      Reviewers: rnk, majnemer, rsmith
      
      Reviewed By: rsmith
      
      Subscribers: kristina, Romain-Geissler-1A, erichkeane, amharc, jroelofs, cfe-commits, Prazek
      
      Differential Revision: https://reviews.llvm.org/D40218
      
      llvm-svn: 349195
      26187505
    • Adam Nemet's avatar
      Revert "Make -Wstring-plus-int warns even if when the result is not out of bounds" · cbb8aa19
      Adam Nemet authored
      This reverts commit r349054.
      
      It's causing:
      
      FAILED: tools/clang/bindings/python/tests/CMakeFiles/check-clang-python
      FAIL: test_diagnostic_range (tests.cindex.test_diagnostics.TestDiagnostics)
      ----------------------------------------------------------------------
      Traceback (most recent call last):
        File
        "/Users/buildslave/jenkins/workspace/clang-stage1-configure-RA/llvm/tools/clang/bindings/python/tests/cindex/test_diagnostics.py",
        line 55, in test_diagnostic_range
            self.assertEqual(len(tu.diagnostics), 1)
            AssertionError: 2 != 1
      
      ======================================================================
      FAIL: test_diagnostic_warning (tests.cindex.test_diagnostics.TestDiagnostics)
      ----------------------------------------------------------------------
      Traceback (most recent call last):
        File
        "/Users/buildslave/jenkins/workspace/clang-stage1-configure-RA/llvm/tools/clang/bindings/python/tests/cindex/test_diagnostics.py",
        line 18, in test_diagnostic_warning
            self.assertEqual(len(tu.diagnostics), 2)
            AssertionError: 1 != 2
      
      llvm-svn: 349117
      cbb8aa19
  20. Dec 13, 2018
  21. Dec 12, 2018
    • Hubert Tong's avatar
      [ExprConstant] Improve memchr/memcmp for type mismatch and multibyte element types · 147b7436
      Hubert Tong authored
      Summary:
      `memchr` and `memcmp` operate upon the character units of the object
      representation; that is, the `size_t` parameter expresses the number of
      character units. The constant folding implementation is updated in this
      patch to account for multibyte element types in the arrays passed to
      `memchr`/`memcmp` and, in the case of `memcmp`, to account for the
      possibility that the arrays may have differing element types (even when
      they are byte-sized).
      
      Actual inspection of the object representation is not implemented.
      Comparisons are done only between elements with the same object size;
      that is, `memchr` will fail when inspecting at least one character unit
      of a multibyte element. The integer types are assumed to have two's
      complement representation with 0 for `false`, 1 for `true`, and no
      padding bits.
      
      `memcmp` on multibyte elements will only be able to fold in cases where
      enough elements are equal for the answer to be 0.
      
      Various tests are added to guard against incorrect folding for cases
      that miscompile on some system or other prior to this patch. At the same
      time, the unsigned 32-bit `wchar_t` testing in
      `test/SemaCXX/constexpr-string.cpp` is restored.
      
      Reviewers: rsmith, aaron.ballman, hfinkel
      
      Reviewed By: rsmith
      
      Subscribers: cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D55510
      
      llvm-svn: 348938
      147b7436
Loading