Skip to content
  1. Oct 31, 2012
    • Akira Hatanaka's avatar
      Check that iterator I is not the end iterator. · ebb31e9c
      Akira Hatanaka authored
      llvm-svn: 167086
      ebb31e9c
    • Nadav Rotem's avatar
      Add support for loops that don't start with Zero. · ff788919
      Nadav Rotem authored
      This is important for loops in the LAPACK test-suite.
      These loops start at 1 because they are auto-converted from fortran.
      
      llvm-svn: 167084
      ff788919
    • Meador Inge's avatar
      instcombine: Migrate stpcpy optimizations · 9a6a1905
      Meador Inge authored
      This patch migrates the stpcpy optimizations from the simplify-libcalls
      pass into the instcombine library call simplifier.  Note that the
      __stpcpy_chk simplifications were migrated in a previous commit.
      
      llvm-svn: 167083
      9a6a1905
    • Meador Inge's avatar
      instcombine: Split out the __stpcpy_chk simplifications from StrCpyChkOpt · cdb2ca54
      Meador Inge authored
      r166198 migrated the strcpy optimization to instcombine.  The strcpy
      simplifier that was migrated from Transforms/Scalar/SimplifyLibCalls.cpp
      was also doing some __strcpy_chk simplifications.  Those fortified
      simplifications were migrated as well, but introduced a bug in the
      __stpcpy_chk simplifier in the process.  This happened because the
      __strcpy_chk and __stpcpy_chk simplifiers were both mapped to StrCpyChkOpt
      which was updated with simplifications that worked for __strcpy_chk, but
      not __stpcpy_chk.
      
      This patch fixes the problem by adding proper test coverage and creating a
      new simplifier for __stpcpy_chk (instead of sharing one with __strcpy_chk).
      
      llvm-svn: 167082
      cdb2ca54
    • Manman Ren's avatar
      X86 SSE: update rsqrtss and rcpss to use two source operands and · 6b223a4f
      Manman Ren authored
      the first source operand is tied to the destination operand.
      
      This is to accurately model the corresponding instructions where the upper
      bits are unmodified.
      
      rdar://12558838
      PR14221
      
      llvm-svn: 167064
      6b223a4f
  2. Oct 30, 2012
Loading