Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from llvm:master #46

Merged
merged 5 commits into from
Aug 29, 2019
Merged

[pull] master from llvm:master #46

merged 5 commits into from
Aug 29, 2019

Commits on Aug 29, 2019

  1. [SimplifyCFG] Skip sinking common lifetime markers of alloca.

    Summary:
    - Similar to the workaround in fix of PR30188, skip sinking common
      lifetime markers of `alloca`. They are mostly left there after
      inlining functions in branches.
    
    Subscribers: hiraditya, llvm-commits
    
    Tags: #llvm
    
    Differential Revision: https://reviews.llvm.org/D66950
    
    llvm-svn: 370376
    darkbuck committed Aug 29, 2019
    Configuration menu
    Copy the full SHA
    001871d View commit details
    Browse the repository at this point in the history
  2. [AArch64][GlobalISel] Select @llvm.aarch64.ldaxr.* intrinsics

    Add a GISelPredicateCode to ldaxr_*. This allows us to import the patterns for
    @llvm.aarch64.ldaxr.*, and thus select them.
    
    Add `isLoadStoreOfNumBytes` for the GISelPredicateCode, since each of these
    intrinsics involves the same check.
    
    Add select-ldaxr-intrin.mir, and update arm64-ldxr-stxr.ll.
    
    Differential Revision: https://reviews.llvm.org/D66897
    
    llvm-svn: 370377
    Jessica Paquette committed Aug 29, 2019
    Configuration menu
    Copy the full SHA
    c327dae View commit details
    Browse the repository at this point in the history
  3. [AArch64][GlobalISel] Select @llvm.aarch64.ldxr.* intrinsics

    Same thing as D66897, but for ldxr.* instead. Add a GISelPredicateCode to the
    ldxr_* definitions, which allows us to import them.
    
    Add select-ldxr-intrin.mir, and update arm64-ldxr-stxr.ll.
    
    Differential Revision: https://reviews.llvm.org/D66898
    
    llvm-svn: 370378
    Jessica Paquette committed Aug 29, 2019
    Configuration menu
    Copy the full SHA
    87720ac View commit details
    Browse the repository at this point in the history
  4. Changed FrontendActionFactory::create to return a std::unique_ptr

    Subscribers: jkorous, arphaman, kadircet, cfe-commits
    
    Tags: #clang
    
    Differential Revision: https://reviews.llvm.org/D66947
    
    llvm-svn: 370379
    gribozavr committed Aug 29, 2019
    Configuration menu
    Copy the full SHA
    9074521 View commit details
    Browse the repository at this point in the history
  5. [GlobalISel][AArch64] Use a GISelPredicateCode to select llvm.aarch64…

    ….stlxr.*
    
    Remove manual selection code for this intrinsic and use a GISelPredicateCode
    instead.
    
    This allows us to fully select this intrinsic without any tricky custom C++
    matching.
    
    Differential Revision: https://reviews.llvm.org/D65780
    
    llvm-svn: 370380
    Jessica Paquette committed Aug 29, 2019
    Configuration menu
    Copy the full SHA
    b8b23a1 View commit details
    Browse the repository at this point in the history