Skip to content
  1. Nov 25, 2012
  2. Nov 23, 2012
  3. Nov 22, 2012
  4. Nov 21, 2012
    • Chandler Carruth's avatar
      PR14055: Implement support for sub-vector operations in SROA. · 845b73c0
      Chandler Carruth authored
      Now if we can transform an alloca into a single vector value, but it has
      subvector, non-element accesses, we form the appropriate shufflevectors
      to allow SROA to proceed. This fixes PR14055 which pointed out a very
      common pattern that SROA couldn't handle -- mixed vec3 and vec4
      operations on a single alloca.
      
      llvm-svn: 168418
      845b73c0
  5. Nov 20, 2012
  6. Nov 19, 2012
    • Bob Wilson's avatar
      Clean up handling of always-inline functions in the inliner. · a5b0dc88
      Bob Wilson authored
      This patch moves the isInlineViable function from the InlineAlways pass into
      the InlineCostAnalyzer and then changes the InlineCost computation to use that
      simple check for always-inline functions. All the special-case checks for
      AlwaysInline in the CallAnalyzer can then go away.
      
      llvm-svn: 168300
      a5b0dc88
  7. Nov 18, 2012
  8. Nov 17, 2012
  9. Nov 16, 2012
  10. Nov 15, 2012
  11. Nov 14, 2012
    • Hal Finkel's avatar
      Replace std::vector -> SmallVector in BBVectorize · e9740a46
      Hal Finkel authored
      For now, this uses 8 on-stack elements. I'll need to do some profiling
      to see if this is the best number.
      
      Pointed out by Jakob in post-commit review.
      
      llvm-svn: 167966
      e9740a46
    • Hal Finkel's avatar
      Fix the largest offender of determinism in BBVectorize · 1b7f0aba
      Hal Finkel authored
      Iterating over the children of each node in the potential vectorization
      plan must happen in a deterministic order (because it affects which children
      are erased when two children conflict). There was no need for this data
      structure to be a map in the first place, so replacing it with a vector
      is a small change.
      
      I believe that this was the last remaining instance if iterating over the
      elements of a Dense* container where the iteration order could matter.
      There are some remaining iterations over std::*map containers where the order
      might matter, but so long as the Value* for instructions in a block increase
      with the order of the instructions in the block (or decrease) monotonically,
      then this will appear to be deterministic.
      
      llvm-svn: 167942
      1b7f0aba
    • Alexey Samsonov's avatar
      [TSan] fix indentation · 2b27170f
      Alexey Samsonov authored
      llvm-svn: 167928
      2b27170f
Loading