Skip to content
  1. Nov 18, 2016
    • Matthias Braun's avatar
      Timer: Track name and description. · 9f15a79e
      Matthias Braun authored
      The previously used "names" are rather descriptions (they use multiple
      words and contain spaces), use short programming language identifier
      like strings for the "names" which should be used when exporting to
      machine parseable formats.
      
      Also removed a unused TimerGroup from Hexxagon.
      
      Differential Revision: https://reviews.llvm.org/D25583
      
      llvm-svn: 287369
      9f15a79e
  2. Nov 17, 2016
  3. Nov 16, 2016
  4. Nov 15, 2016
  5. Nov 11, 2016
  6. Nov 10, 2016
  7. Nov 08, 2016
    • Simon Pilgrim's avatar
      [TargetLowering] Fix undef vector element issue with true/false result handling · 778596bf
      Simon Pilgrim authored
      Fixed an issue with vector usage of TargetLowering::isConstTrueVal / TargetLowering::isConstFalseVal boolean result matching.
      
      The comment said we shouldn't handle constant splat vectors with undef elements. But the the actual code was returning false if the build vector contained no undef elements....
      
      This patch now ignores the number of undefs (getConstantSplatNode will return null if the build vector is all undefs).
      
      The change has also unearthed a couple of missed opportunities in AVX512 comparison code that will need to be addressed.
      
      Differential Revision: https://reviews.llvm.org/D26031
      
      llvm-svn: 286238
      778596bf
    • Simon Pilgrim's avatar
      [VectorLegalizer] Expansion of CTLZ using CTPOP when possible · d02c5520
      Simon Pilgrim authored
      This patch avoids scalarization of CTLZ by instead expanding to use CTPOP (ref: "Hacker's Delight") when the necessary operations are available.
      
      This also adds the necessary cost models for X86 SSE2 targets (the main beneficiary) to ensure vectorization only happens when its useful.
      
      Differential Revision: https://reviews.llvm.org/D25910
      
      llvm-svn: 286233
      d02c5520
  8. Nov 07, 2016
  9. Nov 06, 2016
  10. Nov 03, 2016
  11. Nov 02, 2016
  12. Nov 01, 2016
  13. Oct 30, 2016
  14. Oct 29, 2016
    • Simon Pilgrim's avatar
      [DAGCombiner] (REAPPLIED) Add vector demanded elements support to computeKnownBits · 75a697a1
      Simon Pilgrim authored
      Currently computeKnownBits returns the common known zero/one bits for all elements of vector data, when we may only be interested in one/some of the elements.
      
      This patch adds a DemandedElts argument that allows us to specify the elements we actually care about. The original computeKnownBits implementation calls with a DemandedElts demanding all elements to match current behaviour. Scalar types set this to 1.
      
      The approach was found to be easier than trying to add a per-element known bits solution, for a similar usefulness given the combines where computeKnownBits is typically used.
      
      I've only added support for a few opcodes so far (the ones that have proven straightforward to test), all others will default to demanding all elements but can be updated in due course.
      
      DemandedElts support could similarly be added to computeKnownBitsForTargetNode in a future commit.
      
      This looked like this had caused compile time regressions on some buildbots (and was reverted in rL285381), but appears to have just been a harmless bystander!
      
      Differential Revision: https://reviews.llvm.org/D25691
      
      llvm-svn: 285494
      75a697a1
    • Davide Italiano's avatar
      [DAGCombiner] Fix a crash visiting `AND` nodes. · 86168b23
      Davide Italiano authored
      Instead of asserting that the shift count is != 0 we just bail out
      as it's not profitable trying to optimize a node which will be
      removed anyway.
      
      Differential Revision:  https://reviews.llvm.org/D26098
      
      llvm-svn: 285480
      86168b23
    • Justin Bogner's avatar
      SDAG: Make sure we use an allocatable reg class when we create this vreg · db6b6a7f
      Justin Bogner authored
      As per the discussion on r280783, if constrainRegClass fails we need
      to call getAllocatableClass like we did before that commit.
      
      llvm-svn: 285467
      db6b6a7f
  15. Oct 28, 2016
  16. Oct 27, 2016
    • Simon Pilgrim's avatar
      [DAGCombiner] Add vector demanded elements support to computeKnownBits · 01e755ea
      Simon Pilgrim authored
      Currently computeKnownBits returns the common known zero/one bits for all elements of vector data, when we may only be interested in one/some of the elements.
      
      This patch adds a DemandedElts argument that allows us to specify the elements we actually care about. The original computeKnownBits implementation calls with a DemandedElts demanding all elements to match current behaviour. Scalar types set this to 1.
      
      The approach was found to be easier than trying to add a per-element known bits solution, for a similar usefulness given the combines where computeKnownBits is typically used.
      
      I've only added support for a few opcodes so far (the ones that have proven straightforward to test), all others will default to demanding all elements but can be updated in due course.
      
      DemandedElts support could similarly be added to computeKnownBitsForTargetNode in a future commit.
      
      Differential Revision: https://reviews.llvm.org/D25691
      
      llvm-svn: 285296
      01e755ea
Loading