Skip to content
  1. Mar 28, 2014
  2. Mar 27, 2014
    • Saleem Abdulrasool's avatar
      Canonicalise Windows target triple spellings · edbdd2e5
      Saleem Abdulrasool authored
      Construct a uniform Windows target triple nomenclature which is congruent to the
      Linux counterpart.  The old triples are normalised to the new canonical form.
      This cleans up the long-standing issue of odd naming for various Windows
      environments.
      
      There are four different environments on Windows:
      
      MSVC: The MS ABI, MSVCRT environment as defined by Microsoft
      GNU: The MinGW32/MinGW32-W64 environment which uses MSVCRT and auxiliary libraries
      Itanium: The MSVCRT environment + libc++ built with Itanium ABI
      Cygnus: The Cygwin environment which uses custom libraries for everything
      
      The following spellings are now written as:
      
      i686-pc-win32 => i686-pc-windows-msvc
      i686-pc-mingw32 => i686-pc-windows-gnu
      i686-pc-cygwin => i686-pc-windows-cygnus
      
      This should be sufficiently flexible to allow us to target other windows
      environments in the future as necessary.
      
      llvm-svn: 204977
      edbdd2e5
    • Hal Finkel's avatar
      [PowerPC] Don't remove self VSX copies in PPCInstrInfo::copyPhysReg · 9dcb3583
      Hal Finkel authored
      Because of how the allocation of VSX registers interacts with the call-lowering
      code, we sometimes end up generating self VSX copies. Specifically, things like
      this:
        %VSL2<def> = COPY %F2, %VSL2<imp-use,kill>
      (where %F2 is really a sub-register of %VSL2, and so this copy is a nop)
      
      The problem is that ExpandPostRAPseudos always assumes that *some* instruction
      has been inserted, and adds implicit defs to it. This is a problem if no copy
      was inserted because it can cause subtle problems during post-RA scheduling.
      These self copies will have to be removed some other way.
      
      llvm-svn: 204976
      9dcb3583
    • Lang Hames's avatar
    • Rui Ueyama's avatar
      Revert "[C++11] Do not check __GXX_EXPERIMENTAL_CXX0X__." · 48d9138c
      Rui Ueyama authored
      This reverts commit r204964 because it disabled "= delete", "constexpr"
      and "explicit" on GCC.
      
      llvm-svn: 204973
      48d9138c
    • Quentin Colombet's avatar
      [X86][Vector Cost Model] Add a comment to explain the workaround · 85b904d8
      Quentin Colombet authored
      in my previous commit (r204884).
      
      <rdar://problem/16381225>
      
      llvm-svn: 204972
      85b904d8
    • Hal Finkel's avatar
      [PowerPC] Fix v2f64 vector extract and related patterns · 82569b63
      Hal Finkel authored
      First, v2f64 vector extract had not been declared legal (and so the existing
      patterns were not being used). Second, the patterns for that, and for
      scalar_to_vector, should really be a regclass copy, not a subregister
      operation, because the VSX registers directly hold both the vector and scalar data.
      
      llvm-svn: 204971
      82569b63
    • Rui Ueyama's avatar
      [C++11] Do not check __GXX_EXPERIMENTAL_CXX0X__. · fffa311e
      Rui Ueyama authored
      Summary: Checking the experimental flag for C++0x is no longer needed.
      
      Differential Revision: http://llvm-reviews.chandlerc.com/D3206
      
      llvm-svn: 204964
      fffa311e
Loading