Skip to content
  1. Jun 09, 2017
  2. Jun 08, 2017
  3. Jun 07, 2017
  4. Jun 06, 2017
    • Evgeny Stupachenko's avatar
      Fix PR23384 (part 3 of 3) · 3b882915
      Evgeny Stupachenko authored
      Summary:
      The patch makes instruction count the highest priority for
       LSR solution for X86 (previously registers had highest priority).
      
      Reviewers: qcolombet
      
      Differential Revision: http://reviews.llvm.org/D30562
      
      From: Evgeny Stupachenko <evstupac@gmail.com>
      llvm-svn: 304824
      3b882915
    • Daniel Berlin's avatar
      NewGVN: Fix PR/33187. This is a bug caused by two things: · eafdd862
      Daniel Berlin authored
      1. When there is no perfect iteration order, we can't let phi nodes
      put themselves in terms of things that come later in the iteration
      order, or we will endlessly cycle (the normal RPO algorithm clears the
      hashtable to avoid this issue).
      2. We are sometimes erasing the wrong expression (causing pessimism)
      because our equality says loads and stores are the same.
      We introduce an exact equality function and use it when erasing to
      make sure we erase only identical expressions, not equivalent ones.
      
      llvm-svn: 304807
      eafdd862
    • Anna Thomas's avatar
      [Atomics][LoopIdiom] Recognize unordered atomic memcpy · b2a212c0
      Anna Thomas authored
      Summary:
      Expanding the loop idiom test for memcpy to also recognize
      unordered atomic memcpy. The only difference for recognizing
      an unordered atomic memcpy and instead of a normal memcpy is
      that the loads and/or stores involved are unordered atomic operations.
      
      Background:  http://lists.llvm.org/pipermail/llvm-dev/2017-May/112779.html
      
      Patch by Daniel Neilson!
      
      Reviewers: reames, anna, skatkov
      
      Reviewed By: reames, anna
      
      Subscribers: llvm-commits, mzolotukhin
      
      Differential Revision: https://reviews.llvm.org/D33243
      
      llvm-svn: 304806
      b2a212c0
    • Anna Thomas's avatar
      [IRCE] Canonicalize pre/post loops after the blocks are added into parent loop · 72180320
      Anna Thomas authored
      Summary:
      We were canonizalizing the pre loop (into loop-simplify form) before
      the post loop blocks were added into parent loop. This is incorrect when IRCE is
      done on a subloop. The post-loop blocks are created, but not yet added to the
      parent loop. So, loop-simplification on the pre-loop incorrectly updates
      LoopInfo.
      
      This patch corrects the ordering so that pre and post loop blocks are added to
      parent loop (if any), and then the loops are canonicalized to LCSSA and
      LoopSimplifyForm.
      
      Reviewers: reames, sanjoy, apilipenko
      
      Subscribers: llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D33846
      
      llvm-svn: 304800
      72180320
    • Chandler Carruth's avatar
      Sort the remaining #include lines in include/... and lib/.... · 6bda14b3
      Chandler Carruth authored
      I did this a long time ago with a janky python script, but now
      clang-format has built-in support for this. I fed clang-format every
      line with a #include and let it re-sort things according to the precise
      LLVM rules for include ordering baked into clang-format these days.
      
      I've reverted a number of files where the results of sorting includes
      isn't healthy. Either places where we have legacy code relying on
      particular include ordering (where possible, I'll fix these separately)
      or where we have particular formatting around #include lines that
      I didn't want to disturb in this patch.
      
      This patch is *entirely* mechanical. If you get merge conflicts or
      anything, just ignore the changes in this patch and run clang-format
      over your #include lines in the files.
      
      Sorry for any noise here, but it is important to keep these things
      stable. I was seeing an increasing number of patches with irrelevant
      re-ordering of #include lines because clang-format was used. This patch
      at least isolates that churn, makes it easy to skip when resolving
      conflicts, and gets us to a clean baseline (again).
      
      llvm-svn: 304787
      6bda14b3
    • Xin Tong's avatar
      Add a dominanance check interface that uses caching for instructions within same basic block. · 9d6f08a8
      Xin Tong authored
      Summary:
      This problem stems from the fact that instructions are allocated using new
      in LLVM, i.e. there is no relationship that can be derived by just looking
      at the pointer value.
      
      This interface dispatches to appropriate dominance check given 2 instructions,
      i.e. in case the instructions are in the same basic block, ordered basicblock
      (with instruction numbering and caching) are used. Otherwise, dominator tree
      is used.
      
      This is a preparation patch for https://reviews.llvm.org/D32720
      
      Reviewers: dberlin, hfinkel, davide
      
      Subscribers: davide, mgorny, llvm-commits
      
      Differential Revision: https://reviews.llvm.org/D33380
      
      llvm-svn: 304764
      9d6f08a8
    • Evgeny Stupachenko's avatar
      Fix PR23384 (part 2 of 3) NFC · f2b3b467
      Evgeny Stupachenko authored
      Summary:
      The patch moves LSR cost comparison to target part.
      
      Reviewers: qcolombet
      
      Differential Revision: http://reviews.llvm.org/D30561
      
      From: Evgeny Stupachenko <evstupac@gmail.com>
      llvm-svn: 304750
      f2b3b467
    • Evgeny Stupachenko's avatar
      LSR: Calculate instruction cost only if InsnsCost is set to true (NFC) · 4d94e994
      Evgeny Stupachenko authored
      Summary:
      
      The patch guard all instruction cost calculations with InsnCosts (-lsr-insns-cost) option.
      Currently even if the option set to false we calculate and print (in debug mode) instruction costs.
      
      Reviewers: qcolombet
      
      Differential Revision: http://reviews.llvm.org/D33914
      
      From: Evgeny Stupachenko <evstupac@gmail.com>
      llvm-svn: 304746
      4d94e994
  5. Jun 05, 2017
  6. Jun 04, 2017
  7. Jun 03, 2017
  8. Jun 02, 2017
Loading