Skip to content
  1. Jul 26, 2019
  2. Jul 25, 2019
    • Matthias Gehre's avatar
      Add lifetime categories attributes · d293cbd5
      Matthias Gehre authored
      Summary:
      This is the first part of work announced in
      "[RFC] Adding lifetime analysis to clang" [0],
      i.e. the addition of the [[gsl::Owner(T)]] and
      [[gsl::Pointer(T)]] attributes, which
      will enable user-defined types to participate in
      the lifetime analysis (which will be part of the
      next PR).
      The type `T` here is called "DerefType" in the paper,
      and denotes the type that an Owner owns and a Pointer
      points to. E.g. `std::vector<int>` should be annotated
      with `[[gsl::Owner(int)]]` and
      a `std::vector<int>::iterator` with `[[gsl::Pointer(int)]]`.
      
      [0] http://lists.llvm.org/pipermail/cfe-dev/2018-November/060355.html
      
      Reviewers: gribozavr
      
      Subscribers: xazax.hun, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D63954
      
      llvm-svn: 367040
      d293cbd5
    • JF Bastien's avatar
      Allow prefetching from non-zero address spaces · dbc0a5df
      JF Bastien authored
      Summary:
      This is useful for targets which have prefetch instructions for non-default address spaces.
      
      <rdar://problem/42662136>
      
      Subscribers: nemanjai, javed.absar, hiraditya, kbarton, jkorous, dexonsmith, cfe-commits, llvm-commits, RKSimon, hfinkel, t.p.northover, craig.topper, anemet
      
      Tags: #clang, #llvm
      
      Differential Revision: https://reviews.llvm.org/D65254
      
      llvm-svn: 367032
      dbc0a5df
    • Erich Keane's avatar
      Implement P1771 · 46441fdb
      Erich Keane authored
      As passed in the Cologne meeting and treated by Core as a DR,
      [[nodiscard]] was applied to constructors so that they can be diagnosed
      in cases where the user forgets a variable name for a type.
      
      The intent is to enable the library to start using this on the
      constructors of scope_guard/lock_guard.
      
      Differential Revision: https://reviews.llvm.org/D64914
      
      llvm-svn: 367027
      46441fdb
    • Sjoerd Meijer's avatar
      [Clang] New loop pragma vectorize_predicate · a48f58c9
      Sjoerd Meijer authored
      This adds a new vectorize predication loop hint:
      
        #pragma clang loop vectorize_predicate(enable)
      
      that can be used to indicate to the vectoriser that all (load/store)
      instructions should be predicated (masked). This allows, for example, folding
      of the remainder loop into the main loop.
      
      This patch will be followed up with D64916 and D65197. The former is a
      refactoring in the loopvectorizer and the groundwork to make tail loop folding
      a more general concept, and in the latter the actual tail loop folding
      transformation will be implemented.
      
      Differential Revision: https://reviews.llvm.org/D64744
      
      llvm-svn: 366989
      a48f58c9
    • Petr Hosek's avatar
      Revert "[Sema] Enable -Wimplicit-float-conversion for integral to floating point precision loss" · f55f51b7
      Petr Hosek authored
      This reverts commit r366972 which broke the following tests:
      
        Clang :: CXX/dcl.decl/dcl.init/dcl.init.list/p7-0x.cpp
        Clang :: CXX/dcl.decl/dcl.init/dcl.init.list/p7-cxx11-nowarn.cpp
      
      llvm-svn: 366979
      f55f51b7
    • Ziang Wan's avatar
      [Sema] Enable -Wimplicit-float-conversion for integral to floating point precision loss · 2028d97d
      Ziang Wan authored
      Issue an warning when the code tries to do an implicit int -> float
      conversion, where the float type ha a narrower significant than the
      float type.
      
      The new warning is controlled by flag -Wimplicit-int-float-conversion,
      under -Wimplicit-float-conversion and -Wconversion.
      
      Differential Revision: https://reviews.llvm.org/D64666
      
      llvm-svn: 366972
      2028d97d
  3. Jul 23, 2019
  4. Jul 22, 2019
  5. Jul 20, 2019
  6. Jul 19, 2019
  7. Jul 18, 2019
    • Alexey Bataev's avatar
      [OPENMP]Fix sharing of threadprivate variables with TLS support. · 0c99d194
      Alexey Bataev authored
      If the threadprivate variable is used in the copyin clause on inner
      parallel directive with TLS support, we capture this variable in all
      outer OpenMP scopes. It leads to the fact that in all scopes we're
      working with the original variable, not the threadprivate copies.
      
      llvm-svn: 366483
      0c99d194
    • Alexey Bataev's avatar
      [OPENMP]Provide correct data sharing attributes for loop control · 05be1da2
      Alexey Bataev authored
      variables.
      
      Loop control variables are private in loop-based constructs and we shall
      take this into account when generate the code for inner constructs.
      Currently, those variables are reported as shared in many cases. Moved
      the analysis of the data-sharing attributes of the loop control variable
      to an early semantic stage to correctly handle their attributes.
      
      llvm-svn: 366474
      05be1da2
    • Ilya Biryukov's avatar
      Revert r366422: [OpenCL] Improve destructor support in C++ for OpenCL · 4f8dc16f
      Ilya Biryukov authored
      Reason: this commit causes crashes in the clang compiler when building
      LLVM Support with libc++, see https://bugs.llvm.org/show_bug.cgi?id=42665
      for details.
      
      llvm-svn: 366429
      4f8dc16f
    • Marco Antognini's avatar
      [OpenCL] Improve destructor support in C++ for OpenCL · 83748cc5
      Marco Antognini authored
      Summary:
      This patch does mainly three things:
       1. It fixes a false positive error detection in Sema that is similar to
          D62156. The error happens when explicitly calling an overloaded
          destructor for different address spaces.
       2. It selects the correct destructor when multiple overloads for
          address spaces are available.
       3. It inserts the expected address space cast when invoking a
          destructor, if needed, and therefore fixes a crash due to the unmet
          assertion in llvm::CastInst::Create.
      
      The following is a reproducer of the three issues:
      
          struct MyType {
            ~MyType() {}
            ~MyType() __constant {}
          };
      
          __constant MyType myGlobal{};
      
          kernel void foo() {
            myGlobal.~MyType(); // 1 and 2.
            // 1. error: cannot initialize object parameter of type
            //    '__generic MyType' with an expression of type '__constant MyType'
            // 2. error: no matching member function for call to '~MyType'
          }
      
          kernel void bar() {
            // 3. The implicit call to the destructor crashes due to:
            //    Assertion `castIsValid(op, S, Ty) && "Invalid cast!"' failed.
            //    in llvm::CastInst::Create.
            MyType myLocal;
          }
      
      The added test depends on D62413 and covers a few more things than the
      above reproducer.
      
      Subscribers: yaxunl, Anastasia, cfe-commits
      
      Tags: #clang
      
      Differential Revision: https://reviews.llvm.org/D64569
      
      llvm-svn: 366422
      83748cc5
    • Anastasia Stulova's avatar
      [OpenCL] Update comments/diagnostics to refer to C++ for OpenCL · 46b55fa5
      Anastasia Stulova authored
      Clang doesn't implement OpenCL C++, change the comments to
      reflect that.
      
      Differential Revision: https://reviews.llvm.org/D64867
      
      llvm-svn: 366421
      46b55fa5
    • Anastasia Stulova's avatar
      [OpenCL][PR42033] Fix addr space deduction with template parameters · 36d9e835
      Anastasia Stulova authored
      If dependent types appear in pointers or references we allow addr
      space deduction because the addr space in template argument will
      belong to the pointee and not the pointer or reference itself.
      
      We also don't diagnose addr space on a function return type after
      template instantiation. If any addr space for the return type was
      provided on a template parameter this will be diagnosed during the
      parsing of template definition.
      
      Differential Revision: https://reviews.llvm.org/D62584
      
      llvm-svn: 366417
      36d9e835
    • Sam McCall's avatar
      [CodeComplete] Fix ASTUnit cached completion of macros from preamble, broken in r342528 · 36082e39
      Sam McCall authored
      Summary:
      The problem is the default LoadExternal with no completer, which happens when
      loading global results.
      
      Reviewers: ilya-biryukov, nik
      
      Subscribers: arphaman, llvm-commits
      
      Tags: #llvm
      
      Differential Revision: https://reviews.llvm.org/D64864
      
      llvm-svn: 366409
      36082e39
  8. Jul 17, 2019
  9. Jul 16, 2019
  10. Jul 15, 2019
  11. Jul 14, 2019
  12. Jul 13, 2019
  13. Jul 12, 2019
    • Ulrich Weigand's avatar
      [SystemZ] Add support for new cpu architecture - arch13 · b98bf60e
      Ulrich Weigand authored
      This patch series adds support for the next-generation arch13
      CPU architecture to the SystemZ backend.
      
      This includes:
      - Basic support for the new processor and its features.
      - Support for low-level builtins mapped to new LLVM intrinsics.
      - New high-level intrinsics in vecintrin.h.
      - Indicate support by defining  __VEC__ == 10303.
      
      Note: No currently available Z system supports the arch13
      architecture.  Once new systems become available, the
      official system name will be added as supported -march name.
      
      llvm-svn: 365933
      b98bf60e
    • Fangrui Song's avatar
      Delete dead stores · 90e95bb2
      Fangrui Song authored
      llvm-svn: 365901
      90e95bb2
  14. Jul 11, 2019
  15. Jul 10, 2019
    • Saar Raz's avatar
      [Concepts] Concept definitions (D40381) · d7aae33a
      Saar Raz authored
      First in a series of patches to land C++2a Concepts support.
      This patch adds AST and parsing support for concept-declarations.
      
      llvm-svn: 365699
      d7aae33a
    • Sjoerd Meijer's avatar
      Loop pragma parsing. NFC. · 6b615199
      Sjoerd Meijer authored
      I would like to add some pragma handling here, but couldn't resist a little NFC
      and tidy up first.
      
      Differential Revision: https://reviews.llvm.org/D64471
      
      llvm-svn: 365629
      6b615199
    • Reid Kleckner's avatar
      [MS] Treat ignored explicit calling conventions as an explicit __cdecl · 4586a19d
      Reid Kleckner authored
      The CCCR_Ignore action is only used for Microsoft calling conventions,
      mainly because MSVC does not warn when a calling convention would be
      ignored by the current target. This behavior is actually somewhat
      important, since windows.h uses WINAPI (which expands to __stdcall)
      widely. This distinction didn't matter much before the introduction of
      __vectorcall to x64 and the ability to make that the default calling
      convention with /Gv. Now, we can't just ignore __stdcall for x64, we
      have to treat it as an explicit __cdecl annotation.
      
      Fixes PR42531
      
      llvm-svn: 365579
      4586a19d
  16. Jul 09, 2019
Loading