Skip to content
  1. Sep 02, 2016
  2. Sep 01, 2016
    • Michael Kuperstein's avatar
      [SelectionDAG] Generate vector_shuffle nodes for undersized result vector sizes · 5f17d08f
      Michael Kuperstein authored
      Prior to this, we could generate a vector_shuffle from an IR shuffle when the
      size of the result was exactly the sum of the sizes of the input vectors.
      If the output vector was narrower - e.g. a <12 x i8> being formed by a shuffle
      with two <8 x i8> inputs - we would lower the shuffle to a sequence of extracts
      and inserts.
      
      Instead, we can form a larger vector_shuffle, and then extract a subvector
      of the right size - e.g. shuffle the two <8 x i8> inputs into a <16 x i8>
      and then extract a <12 x i8>.
      
      This also includes a target-specific X86 combine that in the presence of
      AVX2 combines:
      (vector_shuffle <mask> (concat_vectors t1, undef)
                             (concat_vectors t2, undef))
      into:
      (vector_shuffle <mask> (concat_vectors t1, t2), undef)
      in cases where this allows us to form VPERMD/VPERMQ.
      
      (This is not a separate commit, as that pattern does not appear without
      the DAGBuilder change.)
      
      llvm-svn: 280418
      5f17d08f
    • Saleem Abdulrasool's avatar
      cstdio: limit gets to CRT versions below 14 · e68b4707
      Saleem Abdulrasool authored
      Microsoft removed gets from the CRT in Visual Studio 2015 onwards [1].
      Attempting to reference it when targeting CRT versions 14 and above will cause
      compile errors.
      
      [1] https://msdn.microsoft.com/en-us/library/2029ea5f.aspx
      
      Patch by Shoaib Meenai!
      
      llvm-svn: 280417
      e68b4707
    • Chris Bieneman's avatar
      [CMake] Add option (defaulted off) to exclude atomic.c · 90646fe8
      Chris Bieneman authored
      The atomic builtin source is problematic when cross-compiling builtins because it requires a variable and sometimes large set of system headers. This option allows users to optionally prevent it from being built.
      
      llvm-svn: 280416
      90646fe8
    • Heejin Ahn's avatar
      [WebAssembly] Add asm.js-style setjmp/longjmp handling for wasm (reland r280302) · c0f18172
      Heejin Ahn authored
      Summary: This patch adds asm.js-style setjmp/longjmp handling support for WebAssembly. It also uses JavaScript's try and catch mechanism.
      
      Reviewers: jpp, dschuff
      
      Subscribers: jfb, dschuff
      
      Differential Revision: https://reviews.llvm.org/D24121
      
      llvm-svn: 280415
      c0f18172
    • Justin Bogner's avatar
      bugpoint: clang-format and modernize comments in ListReducer. NFC · 06d466a9
      Justin Bogner authored
      llvm-svn: 280414
      06d466a9
    • Saleem Abdulrasool's avatar
      build: don't add -fPIC on Windows · 394d351a
      Saleem Abdulrasool authored
      `-fPIC` doesn't make much sense for Windows, since Windows DLLs aren't compiled
      position independent and are instead relocated at runtime.
      
      Patch by Shoaib Meenai!
      
      llvm-svn: 280413
      394d351a
    • Tim Northover's avatar
      GlobalISel: add a G_PHI instruction to give phis a type. · 8d8812c5
      Tim Northover authored
      They're another source of generic vregs, which are going to need a type on the
      definition when we remove the register width from MachineRegisterInfo.
      
      llvm-svn: 280412
      8d8812c5
    • Evgeniy Stepanov's avatar
      [tsan] Bump stack frame size limit. · bc555b7e
      Evgeniy Stepanov authored
      llvm-svn: 280411
      bc555b7e
    • Reid Kleckner's avatar
      Fix the ASan fuse-lld.cc test after LLD r280012 · d1882f21
      Reid Kleckner authored
      With that change, images built with 'lld-link /debug' always have a
      debug directory. If no PDB filename was passed on the command line, then
      the filename in the executable is empty.
      
      PDB information would never work anyway if the PDB file name is empty,
      so go ahead and try DWARF in that case.
      
      llvm-svn: 280410
      d1882f21
    • Richard Smith's avatar
      When we reach the end of a #include of a header of a local submodule that we · 30fc9a93
      Richard Smith authored
      textually included, create an ImportDecl just as we would if we reached a
      #include of any other modular header. This is necessary in order to correctly
      determine the set of variables to initialize for an imported module.
      
      This should hopefully make the modules selfhost buildbot green again.
      
      llvm-svn: 280409
      30fc9a93
    • Michael Kruse's avatar
      Allow mapping scalar MemoryAccesses to array elements. · 2fa35194
      Michael Kruse authored
      Change the code around setNewAccessRelation to allow to use a an existing array
      element for memory instead of an ad-hoc alloca. This facility will be used for
      DeLICM/DeGVN to convert scalar dependencies into regular ones.
      
      The changes necessary include:
      - Make the code generator use the implicit locations instead of the alloca ones.
      - A test case
      - Make the JScop importer accept changes of scalar accesses for that test case.
      - Adapt the MemoryAccess interface to the fact that the MemoryKind can change.
        They are named (get|is)OriginalXXX() to get the status of the memory access
        before any change by setNewAccessRelation() (some properties such as
        getIncoming() do not change even if the kind is changed and are still
        required). To get the modified properties, there is (get|is)LatestXXX(). The
        old accessors without Original|Latest become synonyms of the
        (get|is)OriginalXXX() to not make functional changes in unrelated code.
      
      Differential Revision: https://reviews.llvm.org/D23962
      
      llvm-svn: 280408
      2fa35194
    • Chris Bieneman's avatar
      [CMake] NFC. Missed the other uses in r280406 · a78187a3
      Chris Bieneman authored
      Doh! Obviously need to slow down.
      
      llvm-svn: 280407
      a78187a3
    • Chris Bieneman's avatar
      [CMake] NFC. Fixing spelling from r280400 · 1c4b9708
      Chris Bieneman authored
      Doh!
      
      llvm-svn: 280406
      1c4b9708
Loading