Skip to content
  1. Apr 02, 2018
    • Brian Gesiak's avatar
      [Coroutines] Schedule coro-split before asan · 91a4b5af
      Brian Gesiak authored
      Summary:
      The docs for the LLVM coroutines intrinsic `@llvm.coro.id` state that
      "The second argument, if not null, designates a particular alloca instruction
      to be a coroutine promise."
      
      However, if the address sanitizer pass is run before the `@llvm.coro.id`
      intrinsic is lowered, the `alloca` instruction passed to the intrinsic as its
      second argument is converted, as per the
      https://github.com/google/sanitizers/wiki/AddressSanitizerAlgorithm docs, to
      an `inttoptr` instruction that accesses the address of the promise.
      
      On optimization levels `-O1` and above, the `-asan` pass is run after
      `-coro-early`, `-coro-split`, and `-coro-elide`, and before
      `-coro-cleanup`, and so there is no issue. At `-O0`, however, `-asan`
      is run in between `-coro-early` and `-coro-split`, which causes an
      assertion to be hit when the `inttoptr` instruction is forcibly cast to
      an `alloca`.
      
      Rearrange the passes such that the coroutine passes are registered
      before the sanitizer passes.
      
      Test Plan:
      Compile a simple C++ program that uses coroutines in `-O0` with
      `-fsanitize-address`, and confirm no assertion is hit:
      `clang++ coro-example.cpp -fcoroutines-ts -g -fsanitize=address -fno-omit-frame-pointer`.
      
      Reviewers: GorNishanov, lewissbaker, EricWF
      
      Reviewed By: GorNishanov
      
      Subscribers: cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D43927
      
      llvm-svn: 328951
      91a4b5af
    • Petr Hosek's avatar
      [AArch64] Reserve x18 register on Fuchsia · 934e5d54
      Petr Hosek authored
      This register is reserved as a platform register on Fuchsia.
      
      Differential Revision: https://reviews.llvm.org/D45105
      
      llvm-svn: 328950
      934e5d54
    • Brian Gesiak's avatar
      [Coroutines] Find custom allocators in class scope · cb024024
      Brian Gesiak authored
      Summary:
      https://reviews.llvm.org/rL325291 implemented Coroutines TS N4723
      section [dcl.fct.def.coroutine]/7, but it performed lookup of allocator
      functions within both the global and class scope, whereas the specified
      behavior is to perform lookup for custom allocators within just the
      class scope.
      
      To fix, add parameters to the `Sema::FindAllocationFunctions` function
      such that it can be used to lookup allocators in global scope,
      class scope, or both (instead of just being able to look up in just global
      scope or in both global and class scope). Then, use those parameters
      from within the coroutine Sema.
      
      This incorrect behavior had the unfortunate side-effect of causing the
      bug https://bugs.llvm.org/show_bug.cgi?id=36578 (or at least the reports
      of that bug in C++ programs). That bug would occur for any C++ user with
      a coroutine frame that took a single pointer argument, since it would
      then find the global placement form `operator new`, described in the
      C++ standard 18.6.1.3.1. This patch prevents Clang from generating code
      that triggers the LLVM assert described in that bug report.
      
      Test Plan: `check-clang`
      
      Reviewers: GorNishanov, eric_niebler, lewissbaker
      
      Reviewed By: GorNishanov
      
      Subscribers: EricWF, cfe-commits
      
      Differential Revision: https://reviews.llvm.org/D44552
      
      llvm-svn: 328949
      cb024024
    • Craig Topper's avatar
      [DebugCounter] Make -debug-counter cl::Hidden. · 8a1787ae
      Craig Topper authored
      llvm-svn: 328948
      8a1787ae
  2. Apr 01, 2018
  3. Mar 31, 2018
Loading