Skip to content
  1. Nov 12, 2012
    • Meador Inge's avatar
      Normalize memcmp constant folding results. · b3e91f6a
      Meador Inge authored
      The library call simplifier folds memcmp calls with all constant arguments
      to a constant.  For example:
      
        memcmp("foo", "foo", 3) ->  0
        memcmp("hel", "foo", 3) ->  1
        memcmp("foo", "hel", 3) -> -1
      
      The folding is implemented in terms of the system memcmp that LLVM gets
      linked with.  It currently just blindly uses the value returned from
      the system memcmp as the folded constant.
      
      This patch normalizes the values returned from the system memcmp to
      (-1, 0, 1) so that we get consistent results across multiple platforms.
      The test cases were adjusted accordingly.
      
      llvm-svn: 167726
      b3e91f6a
    • Alexey Samsonov's avatar
      [ASan]: Add minimalistic support for turning off initialization-order checking... · 582d7de7
      Alexey Samsonov authored
      [ASan]: Add minimalistic support for turning off initialization-order checking for globals of specified types. Tests for this behavior will go to ASan test suite in compiler-rt.
      
      llvm-svn: 167725
      582d7de7
    • Meador Inge's avatar
      Delete a stale comment. No functional change. · f963a8ff
      Meador Inge authored
      llvm-svn: 167698
      f963a8ff
  2. Nov 11, 2012
    • Meador Inge's avatar
      instcombine: Migrate memset optimizations · d4825780
      Meador Inge authored
      This patch migrates the memset optimizations from the simplify-libcalls
      pass into the instcombine library call simplifier.
      
      llvm-svn: 167689
      d4825780
    • Meador Inge's avatar
      instcombine: Migrate memmove optimizations · 9cf328b5
      Meador Inge authored
      This patch migrates the memmove optimizations from the simplify-libcalls
      pass into the instcombine library call simplifier.
      
      llvm-svn: 167687
      9cf328b5
    • Meador Inge's avatar
      instcombine: Migrate memcpy optimizations · dd9234a1
      Meador Inge authored
      This patch migrates the memcpy optimizations from the simplify-libcalls
      pass into the instcombine library call simplifier.
      
      llvm-svn: 167686
      dd9234a1
    • Nadav Rotem's avatar
      Fix a comment typo and add comments. · 12930749
      Nadav Rotem authored
      llvm-svn: 167684
      12930749
    • Meador Inge's avatar
      instcombine: Migrate memcmp optimizations · 4d2827c1
      Meador Inge authored
      This patch migrates the memcmp optimizations from the simplify-libcalls
      pass into the instcombine library call simplifier.
      
      llvm-svn: 167683
      4d2827c1
    • Meador Inge's avatar
      instcombine: Migrate strstr optimizations · 56edbc93
      Meador Inge authored
      This patch migrates the strstr optimizations from the simplify-libcalls
      pass into the instcombine library call simplifier.
      
      llvm-svn: 167682
      56edbc93
    • Meador Inge's avatar
      Add method for replacing instructions to LibCallSimplifier · 76fc1a47
      Meador Inge authored
      In some cases the library call simplifier may need to replace instructions
      other than the library call being simplified.  In those cases it may be
      necessary for clients of the simplifier to override how the replacements
      are actually done.  As such, a new overrideable method for replacing
      instructions was added to LibCallSimplifier.
      
      A new subclass of LibCallSimplifier is also defined which overrides
      the instruction replacement method.  This is because the instruction
      combiner defines its own replacement method which updates the worklist
      when instructions are replaced.
      
      llvm-svn: 167681
      76fc1a47
  3. Nov 10, 2012
  4. Nov 09, 2012
  5. Nov 08, 2012
  6. Nov 07, 2012
  7. Nov 03, 2012
  8. Nov 02, 2012
    • Alexey Samsonov's avatar
      Fix whitespaces · 9bdb63ae
      Alexey Samsonov authored
      llvm-svn: 167295
      9bdb63ae
    • Chandler Carruth's avatar
      Revert the switch of loop-idiom to use the new dependence analysis. · 099f5cb0
      Chandler Carruth authored
      The new analysis is not yet ready for prime time. It has a *critical*
      flawed assumption, and some troubling shortages of testing. Until it's
      been hammered into better shape, let's stick with the working code. This
      should be easy to revert itself when the analysis is ready.
      
      Fixes PR14241, a miscompile of any memcpy-able loop which uses a pointer
      as the induction mechanism. If you have been seeing miscompiles in this
      revision range, you really want to test with this backed out. The
      results of this miscompile are a bit subtle as they can lead to
      downstream passes concluding things are impossible which are in fact
      possible.
      
      Thanks to David Blaikie for the majority of the reduction of this
      miscompile. I'll be checking in the test case in a non-revert commit.
      
      Revesions reverted here:
      
      r167045: LoopIdiom: Fix a serious missed optimization: we only turned
               top-level loops into memmove.
      r166877: LoopIdiom: Add checks to avoid turning memmove into an infinite
               loop.
      r166875: LoopIdiom: Recognize memmove loops.
      r166874: LoopIdiom: Replace custom dependence analysis with
               DependenceAnalysis.
      llvm-svn: 167286
      099f5cb0
    • Duncan Sands's avatar
      Fix an obvious typo that causes an assertion failure when running · a17bb141
      Duncan Sands authored
      test/Transforms/GVN/rle.ll if the (currently disabled) check for a
      pointer type in getIntPtrType is turned on.
      
      llvm-svn: 167285
      a17bb141
    • Chandler Carruth's avatar
      Fix sign compare warning. Patch by Mahesha HS. · acc748b2
      Chandler Carruth authored
      llvm-svn: 167282
      acc748b2
  9. Nov 01, 2012
    • Hal Finkel's avatar
      BBVectorize: Use target costs for incoming and outgoing values instead of the depth heuristic. · 560545b8
      Hal Finkel authored
      When target cost information is available, compute explicit costs of inserting and
      extracting values from vectors. At this point, all costs are estimated using the
      target information, and the chain-depth heuristic is not needed. As a result, it is now, by
      default, disabled when using target costs.
      
      llvm-svn: 167256
      560545b8
    • Kostya Serebryany's avatar
    • Chandler Carruth's avatar
      Revert the majority of the next patch in the address space series: · 5da3f051
      Chandler Carruth authored
      r165941: Resubmit the changes to llvm core to update the functions to
               support different pointer sizes on a per address space basis.
      
      Despite this commit log, this change primarily changed stuff outside of
      VMCore, and those changes do not carry any tests for correctness (or
      even plausibility), and we have consistently found questionable or flat
      out incorrect cases in these changes. Most of them are probably correct,
      but we need to devise a system that makes it more clear when we have
      handled the address space concerns correctly, and ideally each pass that
      gets updated would receive an accompanying test case that exercises that
      pass specificaly w.r.t. alternate address spaces.
      
      However, from this commit, I have retained the new C API entry points.
      Those were an orthogonal change that probably should have been split
      apart, but they seem entirely good.
      
      In several places the changes were very obvious cleanups with no actual
      multiple address space code added; these I have not reverted when
      I spotted them.
      
      In a few other places there were merge conflicts due to a cleaner
      solution being implemented later, often not using address spaces at all.
      In those cases, I've preserved the new code which isn't address space
      dependent.
      
      This is part of my ongoing effort to clean out the partial address space
      code which carries high risk and low test coverage, and not likely to be
      finished before the 3.2 release looms closer. Duncan and I would both
      like to see the above issues addressed before we return to these
      changes.
      
      llvm-svn: 167222
      5da3f051
    • Chandler Carruth's avatar
      Revert the series of commits starting with r166578 which introduced the · 7ec5085e
      Chandler Carruth authored
      getIntPtrType support for multiple address spaces via a pointer type,
      and also introduced a crasher bug in the constant folder reported in
      PR14233.
      
      These commits also contained several problems that should really be
      addressed before they are re-committed. I have avoided reverting various
      cleanups to the DataLayout APIs that are reasonable to have moving
      forward in order to reduce the amount of churn, and minimize the number
      of commits that were reverted. I've also manually updated merge
      conflicts and manually arranged for the getIntPtrType function to stay
      in DataLayout and to be defined in a plausible way after this revert.
      
      Thanks to Duncan for working through this exact strategy with me, and
      Nick Lewycky for tracking down the really annoying crasher this
      triggered. (Test case to follow in its own commit.)
      
      After discussing with Duncan extensively, and based on a note from
      Micah, I'm going to continue to back out some more of the more
      problematic patches in this series in order to ensure we go into the
      LLVM 3.2 branch with a reasonable story here. I'll send a note to
      llvmdev explaining what's going on and why.
      
      Summary of reverted revisions:
      
      r166634: Fix a compiler warning with an unused variable.
      r166607: Add some cleanup to the DataLayout changes requested by
               Chandler.
      r166596: Revert "Back out r166591, not sure why this made it through
               since I cancelled the command. Bleh, sorry about this!
      r166591: Delete a directory that wasn't supposed to be checked in yet.
      r166578: Add in support for getIntPtrType to get the pointer type based
               on the address space.
      llvm-svn: 167221
      7ec5085e
    • Hal Finkel's avatar
      BBVectorize: Account for internal shuffle costs · c89e75e9
      Hal Finkel authored
      When target costs are available, use them to account for the costs of
      shuffles on internal edges of the DAG of candidate pairs.
      
      Because the shuffle costs here are currently for only the internal edges,
      the current target cost model is trivial, and the chain depth requirement
      is still in place, I don't yet have an easy test
      case. Nevertheless, by looking at the debug output, it does seem to do the right
      think to the effective "size" of each DAG of candidate pairs.
      
      llvm-svn: 167217
      c89e75e9
    • Jakub Staszak's avatar
      4e45abf0
  10. Oct 31, 2012
Loading