Skip to content
  1. Apr 08, 2017
  2. Apr 07, 2017
    • Aditya Nandakumar's avatar
      [GlobalISel]: Fix bug where we can report GISelFailure on erased instructions · eb80a51b
      Aditya Nandakumar authored
      The original instruction might get legalized and erased and expanded
      into intermediate instructions and the intermediate instructions might
      fail legalization. This end up in reporting GISelFailure on the erased
      instruction.
      Instead report GISelFailure on the intermediate instruction which failed
      legalization.
      
      Reviewed by: ab
      
      llvm-svn: 299802
      eb80a51b
    • Craig Topper's avatar
    • Saleem Abdulrasool's avatar
      Toolchains: remove crtbegin on xwindows · 552629ea
      Saleem Abdulrasool authored
      crtbegin is not really a proper windows support thing.  This was
      duplicated when the toolchain was initially built.  If the injection of
      crtbegin is needed, it can be done via the `/include` directive.
      Furthermore, since `-fPIC` doesnt make sense on PE/COFF, crtbegin and
      crtbeginS dont really need to be different.
      
      llvm-svn: 299800
      552629ea
    • Petr Hosek's avatar
      [AArch64] Allow global register asm("x18") or asm("w18") under -ffixed-x18 · c3a9e6db
      Petr Hosek authored
      When using -ffixed-x18, the x18 (or w18) register can safely be used
      with the "global register variable" GCC extension, but the backend
      fails to recognize it.
      
      Patch by Roland McGrath.
      
      Differential Revision: https://reviews.llvm.org/D31793
      
      llvm-svn: 299799
      c3a9e6db
    • Petr Hosek's avatar
      Revert "[CMake][libunwind] Use -nodefaultlibs for CMake checks" · df82d935
      Petr Hosek authored
      This reverts commit r299796.
      
      llvm-svn: 299798
      df82d935
    • Petr Hosek's avatar
      [CMake][libcxxabi] Use -nodefaultlibs for CMake checks · 5f3d5be3
      Petr Hosek authored
      Since libc++abi is built with -nodefaultlibs, we should be using this
      option even for CMake checks to avoid any inconsistency and also to
      avoid dependency on a working C++ standard library just for the setting
      up the build itself. The implementation is largely similar to the one
      used by libc++.
      
      Differential Revision: https://reviews.llvm.org/D31639
      
      llvm-svn: 299797
      5f3d5be3
    • Petr Hosek's avatar
      [CMake][libunwind] Use -nodefaultlibs for CMake checks · 3dc83e5e
      Petr Hosek authored
      Since libunwind is built with -nodefaultlibs, we should be using this
      option even for CMake checks to avoid any inconsistency and also to
      avoid dependency on a working C++ standard library just for the setting
      up the build itself. The implementation is largely similar to the one
      used by libc++.
      
      Differential Revision: https://reviews.llvm.org/D31640
      
      llvm-svn: 299796
      3dc83e5e
    • Reid Kleckner's avatar
    • Rafael Espindola's avatar
      Use a temp file to avoid Process Substitution. · fc20b2b4
      Rafael Espindola authored
      Thanks to Reid Kleckner for the suggestion.
      
      llvm-svn: 299794
      fc20b2b4
    • Reid Kleckner's avatar
      [PDB] Re-add RAW FileCheck testing to pdb.test · f519ef09
      Reid Kleckner authored
      Update the expected output to match the current llvm-pdbdump raw output.
      
      llvm-svn: 299793
      f519ef09
    • Daniel Berlin's avatar
      NewGVN: Make CongruenceClass a real class in preparation for splitting · a823656c
      Daniel Berlin authored
      NewGVN into analysis and eliminator.
      
      llvm-svn: 299792
      a823656c
    • Reid Kleckner's avatar
    • Reid Kleckner's avatar
      8cdfed7c
    • Davide Italiano's avatar
      [Dominators] Simplify a member function. NFCI. · 40bf3a4b
      Davide Italiano authored
      llvm-svn: 299789
      40bf3a4b
    • Simon Dardis's avatar
      Revert "[SelectionDAG] Enable target specific vector scalarization of calls and returns" · f7e4388e
      Simon Dardis authored
      This reverts commit r299766. This change appears to have broken the MIPS
      buildbots. Reverting while I investigate.
      
      Revert "[mips] Remove usage of debug only variable (NFC)"
      
      This reverts commit r299769. Follow up commit.
      
      llvm-svn: 299788
      f7e4388e
    • Reid Kleckner's avatar
      [builtins] Make some ISA macro checks work with MSVC · bfad55fb
      Reid Kleckner authored
      llvm-svn: 299786
      bfad55fb
    • Hans Wennborg's avatar
      Attempt to fix ms-intrinsics.c test · f6388b18
      Hans Wennborg authored
      llvm-svn: 299785
      f6388b18
    • Reid Kleckner's avatar
      [builtins] Fix MSVC build · 3ae87c46
      Reid Kleckner authored
      Avoid __attribute__((constructor)) in cpu_model.c.
      
      Use more C99 _Complex emulation in divtc3.c. Joerg Sonnenberger added
      this builtin just after the last round of C99 _Complex emulation landed
      in r249514 (Oct 2015).
      
      llvm-svn: 299784
      3ae87c46
    • Kamil Rytarowski's avatar
      Correct environ parsing on NetBSD · 426e8641
      Kamil Rytarowski authored
      Summary:
      This replaces old code in Host::GetEnvironment for NetBSD
      with the version from Linux. This makes parsing environment
      variables correctly. It also fixes programs that depend on the
      variables like curses(3) applications.
      
      Long term this function should be moved to Process Plugin,
      as currently env variables are not available with remote
      debugging.
      
      Other BSDs might want to catch up after this change.
      
      Tested with NetBSD top(1).
      
      Sponsored by <The NetBSD Foundation>
      
      Reviewers: emaste, labath, joerg, kettenis
      
      Reviewed By: emaste
      
      Subscribers: #lldb
      
      Tags: #lldb
      
      Differential Revision: https://reviews.llvm.org/D31784
      
      llvm-svn: 299783
      426e8641
    • Hans Wennborg's avatar
      Implement _interlockedbittestandset as a builtin · 5c3c51fe
      Hans Wennborg authored
      It's used by MS headers in VS 2017 without including intrin.h, so we
      can't implement it in the header anymore.
      
      Differential Revision: https://reviews.llvm.org/D31736
      
      llvm-svn: 299782
      5c3c51fe
    • Ed Maste's avatar
      Correct environ parsing on FreeBSD · 70a26e93
      Ed Maste authored
      Sync Host:GetEnvironment with Linux and Kamil Rytarowski's forthcoming
      NetBSD change in review D31784.
      
      llvm-svn: 299781
      70a26e93
    • Reid Kleckner's avatar
      [builtins] Get the builtins tests passing on Windows · 8c78ca2e
      Reid Kleckner authored
      Many things were broken:
      
      - We stopped building most builtins on Windows in r261432 for reasons
        that are not at all clear to me. This essentially reverts that patch.
      
      - Fix %librt to expand to clang_rt.builtins-$arch.lib on Windows instead
        of libclang_rt.builtins-$arch.a.
      
      - Fix memory protection tests (trampoline, enable executable, clear
        cache) on Windows. One issue was that the MSVC incremental linker
        generates ILT thunks for functions with external linkage, so memcpying
        the functions into the executable stack buffer wasn't working. You
        can't memcpy an RIP-relative jump without fixing up the offset.
      
      - Disable tests that rely on C99 complex library functions when using
        the MSVC CRT, which isn't compatible with clang's C99 _Complex.
      
      In theory, these could all be separate patches, but it would not green
      the tests, so let's try for it all at once. Hopefully this fixes the
      clang-x64-ninja-win7 bot.
      
      llvm-svn: 299780
      8c78ca2e
    • Stanislav Mekhanoshin's avatar
      [AMDGPU] Unroll more to eliminate phis and conditions · 478b8198
      Stanislav Mekhanoshin authored
      Increase threshold to unroll a loop which contains an "if" statement
      whose condition defined by a PHI belonging to the loop. This may help
      to eliminate if region and potentially even PHI itself, saving on
      both divergence and registers used for the PHI.
      
      Add a small bonus for each of such "if" statements.
      
      Differential Revision: https://reviews.llvm.org/D31693
      
      llvm-svn: 299779
      478b8198
    • Rafael Espindola's avatar
      Simplify this further. · e4c8b9b7
      Rafael Espindola authored
      Thanks to Rui for noticing it.
      
      llvm-svn: 299777
      e4c8b9b7
    • Dehao Chen's avatar
      Use PMADDWD to expand reduction in a loop · 58fa7244
      Dehao Chen authored
      Summary:
      PMADDWD can help improve 8/16 bit integer mutliply-add operation performance for cases like:
      
      for (int i = 0; i < count; i++)
        a += x[i] * y[i];
      
      Reviewers: wmi, davidxl, hfinkel, RKSimon, zvi, mkuper
      
      Reviewed By: mkuper
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D31679
      
      llvm-svn: 299776
      58fa7244
    • Reid Kleckner's avatar
      [lit] Try using process pools by default again · d3c87b53
      Reid Kleckner authored
      Both pickling errors encountered on clang bots and Darwin compiler-rt
      should now be fixed.
      
      This has no impact on testing time on Linux, and on Windows goes from
      88s to 63s for 'check'. The tests pass on Mac, but I haven't compared
      execution time.
      
      llvm-svn: 299775
      d3c87b53
    • Saleem Abdulrasool's avatar
      Sema: prevent __declspec(naked) use on x64 · b51bcaf2
      Saleem Abdulrasool authored
      MSDN (https://msdn.microsoft.com/en-us/library/h5w10wxs.aspx) indicates
      that `__declspec(naked)` is only permitted on x86 and ARM targets.
      Testing with cl does confirm this behaviour.  Provide a warning for use
      of `__declspec(naked)` on x64.
      
      llvm-svn: 299774
      b51bcaf2
    • Simon Atanasyan's avatar
      [ELF] Do not pass GOT section as an argument to handleARMTlsRelocation and... · 60d0e982
      Simon Atanasyan authored
      [ELF] Do not pass GOT section as an argument to handleARMTlsRelocation and handleMipsTlsRelocation functions. NFC
      
      Both functions always use the same GOT sections In<ELFT>::Got and
      In<ELFT>::MipsGot respectively, so we do not need to pass them as an
      argument.
      
      llvm-svn: 299773
      60d0e982
    • Igor Breger's avatar
      [GlobalISel] implement narrowing for G_CONSTANT. · 2953788c
      Igor Breger authored
      Summary: [GlobalISel] implement narrowing for G_CONSTANT.
      
      Reviewers: bogner, zvi, t.p.northover
      
      Reviewed By: t.p.northover
      
      Subscribers: llvm-commits, dberris, rovka, kristof.beyls
      
      Differential Revision: https://reviews.llvm.org/D31744
      
      llvm-svn: 299772
      2953788c
    • Gor Nishanov's avatar
      [coroutines] Insert spills of PHI instructions correctly · 138ad6c9
      Gor Nishanov authored
      Summary:
      Fix a bug where we were inserting a spill in between the PHIs in the beginning of the block.
      Consider this fragment:
      
      ```
      begin:
        %phi1 = phi i32 [ 0, %entry ], [ 2, %alt ]
        %phi2 = phi i32 [ 1, %entry ], [ 3, %alt ]
        %sp1 = call i8 @llvm.coro.suspend(token none, i1 false)
        switch i8 %sp1, label %suspend [i8 0, label %resume
                                        i8 1, label %cleanup]
      resume:
        call i32 @print(i32 %phi1)
      ```
      Unless we are spilling the argument or result of the invoke, we were always inserting the spill immediately following the instruction.
      The fix adds a check that if the spilled instruction is a PHI Node, select an appropriate insert point with `getFirstInsertionPt()` that
      skips all the PHI Nodes and EH pads.
      
      Reviewers: majnemer, rnk
      
      Reviewed By: rnk
      
      Subscribers: qcolombet, EricWF, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D31799
      
      llvm-svn: 299771
      138ad6c9
    • Matthew Simpson's avatar
      Reapply r298620: [LV] Vectorize GEPs · 11fe2e9f
      Matthew Simpson authored
      This patch reapplies r298620. The original patch was reverted because of two
      issues. First, the patch exposed a bug in InstCombine that caused the Chromium
      builds to fail (PR32414). This issue was fixed in r299017. Second, the patch
      introduced a bug in the vectorizer's scalars analysis that caused test suite
      builds to fail on SystemZ. The scalars analysis was too aggressive and marked a
      memory instruction scalar, even though it was going to be vectorized. This
      issue has been fixed in the current patch and several new test cases for the
      scalars analysis have been added.
      
      llvm-svn: 299770
      11fe2e9f
    • Simon Dardis's avatar
      [mips] Remove usage of debug only variable (NFC) · 9f6a5cd9
      Simon Dardis authored
      Fix the lld-x86_64-darwin13 buildbot by removing the declaration of a
      debug only variable and instead moving the value into the debug statement.
      
      llvm-svn: 299769
      9f6a5cd9
    • Petar Jovanovic's avatar
      [mips][msa] Fix generation of bm(n)zi and bins[lr]i instructions · bc54eb89
      Petar Jovanovic authored
      We have two cases here, the first one being the following instruction
      selection from the builtin function:
      bm(n)zi builtin -> vselect node -> bins[lr]i machine instruction
      
      In case of bm(n)zi having an immediate which has either its high or low bits
      set, a bins[lr] instruction can be selected through the selectVSplatMask[LR]
      function. The function counts the number of bits set, and that value is
      being passed to the bins[lr]i instruction as its immediate, which in turn
      copies immediate modulo the size of the element in bits plus 1 as per specs,
      where we get the off-by-one-error.
      
      The other case is:
      bins[lr]i -> vselect node -> bsel.v
      
      In this case, a bsel.v instruction gets selected with a mask having one bit
      less set than required.
      
      Patch by Stefan Maksimovic.
      
      Differential Revision: https://reviews.llvm.org/D30579
      
      llvm-svn: 299768
      bc54eb89
    • Dmitry Preobrazhensky's avatar
      [AMDGPU][MC] Fix for Bug 28211 + LIT tests · e5147247
      Dmitry Preobrazhensky authored
      - corrected DS_GWS_* opcodes (see VI_Shader_Programming#16.pdf for detailed description)
        - address operand is not used
        - several opcodes have data operand
        - all opcodes have offset modifier
      - DS_AND_SRC2_B32: corrected typo in mnemo
      - DS_WRAP_RTN_F32 replaced with DS_WRAP_RTN_B32
      - added CI/VI opcodes:
        - DS_CONDXCHG32_RTN_B64
        - DS_GWS_SEMA_RELEASE_ALL
      - added VI opcodes:
        - DS_CONSUME
        - DS_APPEND
        - DS_ORDERED_COUNT
      
      Differential Revision: https://reviews.llvm.org/D31707
      
      llvm-svn: 299767
      e5147247
    • Simon Dardis's avatar
      [SelectionDAG] Enable target specific vector scalarization of calls and returns · 6470ff0b
      Simon Dardis authored
      By target hookifying getRegisterType, getNumRegisters, getVectorBreakdown,
      backends can request that LLVM to scalarize vector types for calls
      and returns.
      
      The MIPS vector ABI requires that vector arguments and returns are passed in
      integer registers. With SelectionDAG's new hooks, the MIPS backend can now
      handle LLVM-IR with vector types in calls and returns. E.g.
      'call @foo(<4 x i32> %4)'.
      
      Previously these cases would be scalarized for the MIPS O32/N32/N64 ABI for
      calls and returns if vector types were not legal. If vector types were legal,
      a single 128bit vector argument would be assigned to a single 32 bit / 64 bit
      integer register.
      
      By teaching the MIPS backend to inspect the original types, it can now
      implement the MIPS vector ABI which requires a particular method of
      scalarizing vectors.
      
      Previously, the MIPS backend relied on clang to scalarize types such as "call
      @foo(<4 x float> %a) into "call @foo(i32 inreg %1, i32 inreg %2, i32 inreg %3,
      i32 inreg %4)".
      
      This patch enables the MIPS backend to take either form for vector types.
      
      Reviewers: zoran.jovanovic, jaydeep, vkalintiris, slthakur
      
      Differential Revision: https://reviews.llvm.org/D27845
      
      llvm-svn: 299766
      6470ff0b
Loading