Skip to content
  1. Aug 06, 2018
  2. Aug 05, 2018
    • David Bolvansky's avatar
      Fix tests for changed opt remarks format · eb3aad99
      David Bolvansky authored
      Summary:
      Optimization remark format is slightly changed by LLVM patch D49412.
      Two tests are fixed with expected messages changed.
      Frankly speaking I have not tested this change yet. I will test when manage to setup the project.
      
      Reviewers: xbolva00
      
      Reviewed By: xbolva00
      
      Subscribers: mehdi_amini, eraman, steven_wu, dexonsmith
      
      Differential Revision: https://reviews.llvm.org/D50241
      
      llvm-svn: 338971
      eb3aad99
  3. Aug 04, 2018
    • Richard Smith's avatar
      Avoid creating conditional cleanup blocks that contain only @llvm.lifetime.end calls · aa140bf1
      Richard Smith authored
      When a non-extended temporary object is created in a conditional branch, the
      lifetime of that temporary ends outside the conditional (at the end of the
      full-expression). If we're inserting lifetime markers, this means we could end
      up generating
      
        if (some_cond) {
          lifetime.start(&tmp);
          Tmp::Tmp(&tmp);
        }
        // ...
        if (some_cond) {
          lifetime.end(&tmp);
        }
      
      ... for a full-expression containing a subexpression of the form `some_cond ?
      Tmp().x : 0`. This patch moves the lifetime start for such a temporary out of
      the conditional branch so that we don't need to generate an additional basic
      block to hold the lifetime end marker.
      
      This is disabled if we want precise lifetime markers (for asan's
      stack-use-after-scope checks) or of the temporary has a non-trivial destructor
      (in which case we'd generate an extra basic block anyway to hold the destructor
      call).
      
      Differential Revision: https://reviews.llvm.org/D50286
      
      llvm-svn: 338945
      aa140bf1
    • Richard Smith's avatar
      [constexpr] Support for constant evaluation of __builtin_memcpy and · 06f71b5b
      Richard Smith authored
      __builtin_memmove (in non-type-punning cases).
      
      This is intended to permit libc++ to make std::copy etc constexpr
      without sacrificing the optimization that uses memcpy on
      trivially-copyable types.
      
      __builtin_strcpy and __builtin_wcscpy are not handled by this change.
      They'd be straightforward to add, but we haven't encountered a need for
      them just yet.
      
      This reinstates r338455, reverted in r338602, with a fix to avoid trying
      to constant-evaluate a memcpy call if either pointer operand has an
      invalid designator.
      
      llvm-svn: 338941
      06f71b5b
    • George Karpenkov's avatar
      [analyzer] Do not crash in NoStoreFuncVisitor notes if an unexpected region is found. · 09c31b1c
      George Karpenkov authored
      Just do not generate the note at all in that case.
      
      llvm-svn: 338935
      09c31b1c
    • Volodymyr Sapsai's avatar
      [Preprocessor] Allow libc++ to detect when aligned allocation is unavailable. · e5015abf
      Volodymyr Sapsai authored
      Libc++ needs to know when aligned allocation is supported by clang, but is
      otherwise unavailable at link time. Otherwise, libc++ will incorrectly end up
      generating calls to `__builtin_operator_new`/`__builtin_operator_delete` with
      alignment arguments.
      
      This patch implements the following changes:
      
      * The `__cpp_aligned_new` feature test macro to no longer be defined when
        aligned allocation is otherwise enabled but unavailable.
      
      * The Darwin driver no longer passes `-faligned-alloc-unavailable` when the
        user manually specifies `-faligned-allocation` or `-fno-aligned-allocation`.
      
      * Instead of a warning Clang now generates a hard error when an aligned
        allocation or deallocation function is referenced but unavailable.
      
      Patch by Eric Fiselier.
      
      Reviewers: rsmith, vsapsai, erik.pilkington, ahatanak, dexonsmith
      
      Reviewed By: rsmith
      
      Subscribers: Quuxplusone, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D45015
      
      llvm-svn: 338934
      e5015abf
    • Eli Friedman's avatar
      Diagnose invalid cv-qualifiers for friend decls. · 7499610e
      Eli Friedman authored
      Differential Revision: https://reviews.llvm.org/D45712
      
      llvm-svn: 338931
      7499610e
  4. Aug 03, 2018
  5. Aug 02, 2018
    • Heejin Ahn's avatar
      [WebAssembly] Support for atomic.wait / atomic.wake builtins · 00aa81b4
      Heejin Ahn authored
      Summary:
      Add support for atomic.wait / atomic.wake builtins based on the Wasm
      thread proposal.
      
      Reviewers: dschuff
      
      Subscribers: sbc100, jgravelle-google, sunfish, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D49396
      
      llvm-svn: 338771
      00aa81b4
    • Richard Smith's avatar
      Fix assertion failure when emitting code for a merged lambda. · 2425338b
      Richard Smith authored
      llvm-svn: 338766
      2425338b
    • George Karpenkov's avatar
      [analyzer] Fix tests. · 61ac05c5
      George Karpenkov authored
      llvm-svn: 338756
      61ac05c5
    • Matt Arsenault's avatar
      AMDGPU: Fix missing declaration of queue ptr builtin · e3d81572
      Matt Arsenault authored
      llvm-svn: 338754
      e3d81572
    • JF Bastien's avatar
      __c11_atomic_load's _Atomic can be const · b4b1f598
      JF Bastien authored
      Summary:
      C++11 onwards specs the non-member functions atomic_load and atomic_load_explicit as taking the atomic<T> by const (potentially volatile) pointer. C11, in its infinite wisdom, decided to drop the const, and C17 will fix this with DR459 (the current draft forgot to fix B.16, but that’s not the normative part).
      
      clang’s lib/Headers/stdatomic.h implements these as #define to the __c11_* equivalent, which are builtins with custom typecheck. Fix the typecheck.
      
      D47613 takes care of the libc++ side.
      
      Discussion: http://lists.llvm.org/pipermail/cfe-dev/2018-May/058129.html
      
      <rdar://problem/27426936>
      
      Reviewers: rsmith
      
      Subscribers: cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D47618
      
      llvm-svn: 338743
      b4b1f598
    • Matt Arsenault's avatar
      Try to make builtin address space declarations not useless · c65f966d
      Matt Arsenault authored
      The way address space declarations for builtins currently work
      is nearly useless. The code assumes the address spaces used for
      builtins is a confusingly named "target address space" from user
      code using __attribute__((address_space(N))) that matches
      the builtin declaration. There's no way to use this to declare
      a builtin that returns a language specific address space.
      The terminology used is highly cofusing since it has nothing
      to do with the the address space selected by the target to use
      for a language address space.
      
      This feature is essentially unused as-is. AMDGPU and NVPTX
      are the only in-tree targets attempting to use this. The AMDGPU
      builtins certainly do not behave as intended (i.e. all of the
      builtins returning pointers can never compile because the numbered
      address space never matches the expected named address space).
      
      The NVPTX builtins are missing tests for some, and the others
      seem to rely on an implicit addrspacecast.
      
      Change the used address space for builtins based on a target
      hook to allow using a language address space for a builtin.
      This allows the same builtin declaration to be used for multiple
      languages with similarly purposed address spaces (e.g. the same
      AMDGPU builtin can be used in OpenCL and CUDA even though the
      constant address spaces are arbitarily different).
      
      This breaks the possibility of using arbitrary numbered
      address spaces alongside the named address spaces for builtins.
      If this is an issue we probably need to introduce another builtin
      declaration character to distinguish language address spaces from
      so-called "target address spaces".
      
      llvm-svn: 338707
      c65f966d
    • George Karpenkov's avatar
      [analyzer] Extend NoStoreFuncVisitor to follow fields. · 1d08c51e
      George Karpenkov authored
      rdar://39701823
      
      Differential Revision: https://reviews.llvm.org/D49901
      
      llvm-svn: 338667
      1d08c51e
    • Akira Hatanaka's avatar
      Pass triple to RUN line to fix failing bots. · 06baa7e0
      Akira Hatanaka authored
      This is a follow-up to r338656.
      
      llvm-svn: 338664
      06baa7e0
    • Akira Hatanaka's avatar
      Serialize DoesNotEscape. · db49a1f7
      Akira Hatanaka authored
      I forgot to commit this in r326530.
      
      llvm-svn: 338656
      db49a1f7
  6. Aug 01, 2018
Loading