Skip to content
  1. May 26, 2008
  2. May 25, 2008
  3. May 24, 2008
  4. May 23, 2008
    • Dan Gohman's avatar
      Update the description of first-class types to reflect that · 34d1c0d0
      Dan Gohman authored
      structs and arrays are now first-class. And fix a sentance
      fragment in the insertvalue description. Thanks to Chris
      for pointing these out!
      
      llvm-svn: 51506
      34d1c0d0
    • Dan Gohman's avatar
      Don't silently truncate array extents to 32 bits. · fa9dac28
      Dan Gohman authored
      llvm-svn: 51505
      fa9dac28
    • Dale Johannesen's avatar
      Add a missed CommonLinkage check. · 002e554c
      Dale Johannesen authored
      llvm-svn: 51503
      002e554c
    • Evan Cheng's avatar
      04d24edc
    • Dan Gohman's avatar
      Remove lingering references to .llx and .tr in the tests. · 5e7863de
      Dan Gohman authored
      llvm-svn: 51500
      5e7863de
    • Dan Gohman's avatar
      Tidy up BasicBlock::getFirstNonPHI, and change a bunch of places to · f96e1371
      Dan Gohman authored
      use it instead of duplicating its functionality.
      
      llvm-svn: 51499
      f96e1371
    • Dan Gohman's avatar
      Add #includes to make some dependencies explicit. · 643b3a05
      Dan Gohman authored
      llvm-svn: 51496
      643b3a05
    • Dan Gohman's avatar
      Issue errors in several situations instead of aborting. · 0fb92a65
      Dan Gohman authored
      llvm-svn: 51493
      0fb92a65
    • Dan Gohman's avatar
      Elaborate on the entry on integer vector multiplication by constants. · 66eea1b9
      Dan Gohman authored
      llvm-svn: 51491
      66eea1b9
    • Evan Cheng's avatar
      Fix a duplicated pattern. · 01b7fffb
      Evan Cheng authored
      llvm-svn: 51490
      01b7fffb
    • Dan Gohman's avatar
      Use PMULDQ for v2i64 multiplies when SSE4.1 is available. And add · 3388d022
      Dan Gohman authored
      load-folding table entries for PMULDQ and PMULLD.
      
      llvm-svn: 51489
      3388d022
    • Evan Cheng's avatar
      New entry. · d25cb8e0
      Evan Cheng authored
      llvm-svn: 51487
      d25cb8e0
    • Dale Johannesen's avatar
      Rewrite a loop to avoid using iterators pointing to · b28a17c3
      Dale Johannesen authored
      elements that have been erased.  Based on a patch
      by Nicolas Capens.
      
      llvm-svn: 51485
      b28a17c3
    • Dan Gohman's avatar
      Fix the spelling of the va_arg keyword. · 14552f83
      Dan Gohman authored
      llvm-svn: 51484
      14552f83
    • Dan Gohman's avatar
      Fix another isFirstClassType that now needs to be isSingleValueType. · 0f731017
      Dan Gohman authored
      This fixes recent CBE regressions.
      
      llvm-svn: 51483
      0f731017
    • Matthijs Kooijman's avatar
      f52b23c0
    • Matthijs Kooijman's avatar
      Restructure the testing documentation. · e7d45b1e
      Matthijs Kooijman authored
      I've tried to make the distinction between the DejaGNU tests and the test-suite
      more clear, added a small section about generating output from the test-suite,
      removed some duplication and fixed some wordings. Most of the changes are text
      movements, however.
      
      llvm-svn: 51480
      e7d45b1e
    • Matthijs Kooijman's avatar
      Restucture a part of the SimplifyCFG pass and include a testcase. · aef2b819
      Matthijs Kooijman authored
      The SimplifyCFG pass looks at basic blocks that contain only phi nodes,
      followed by an unconditional branch. In a lot of cases, such a block (BB) can
      be merged into their successor (Succ).
      
      This merging is performed by TryToSimplifyUncondBranchFromEmptyBlock. It does
      this by taking all phi nodes in the succesor block Succ and expanding them to
      include the predecessors of BB. Furthermore, any phi nodes in BB are moved to
      Succ and expanded to include the predecessors of Succ as well.
      
      Before attempting this merge, CanPropagatePredecessorsForPHIs checks to see if
      all phi nodes can be properly merged. All functional changes are made to
      this function, only comments were updated in
      TryToSimplifyUncondBranchFromEmptyBlock.
      
      In the original code, CanPropagatePredecessorsForPHIs looks quite convoluted
      and more like stack of checks added to handle different kinds of situations
      than a comprehensive check. In particular the first check in the function did
      some value checking for the case that BB and Succ have a common predecessor,
      while the last check in the function simply rejected all cases where BB and
      Succ have a common predecessor. The first check was still useful in the case
      that BB did not contain any phi nodes at all, though, so it was not completely
      useless.
      
      Now, CanPropagatePredecessorsForPHIs is restructured to to look a lot more
      similar to the code that actually performs the merge. Both functions now look
      at the same phi nodes in about the same order.  Any conflicts (phi nodes with
      different values for the same source) that could arise from merging or moving
      phi nodes are detected. If no conflicts are found, the merge can happen.
      
      Apart from only restructuring the checks, two main changes in functionality
      happened.
      
      Firstly, the old code rejected blocks with common predecessors in most cases.
      The new code performs some extra checks so common predecessors can be handled
      in a lot of cases. Wherever common predecessors still pose problems, the
      blocks are left untouched.
      
      Secondly, the old code rejected the merge when values (phi nodes) from BB were
      used in any other place than Succ. However, it does not seem that there is any
      situation that would require this check. Even more, this can be proven.
      
      Consider that BB is a block containing of a single phi node "%a" and a branch
      to Succ. Now, since the definition of %a will dominate all of its uses, BB
      will dominate all blocks that use %a. Furthermore, since the branch from BB to
      Succ is unconditional, Succ will also dominate all uses of %a.
      
      Now, assume that one predecessor of Succ is not dominated by BB (and thus not
      dominated by Succ). Since at least one use of %a (but in reality all of them)
      is reachable from Succ, you could end up at a use of %a without passing
      through it's definition in BB (by coming from X through Succ). This is a
      contradiction, meaning that our original assumption is wrong. Thus, all
      predecessors of Succ must also be dominated by BB (and thus also by Succ).
      
      This means that moving the phi node %a from BB to Succ does not pose any
      problems when the two blocks are merged, and any use checks are not needed.
      
      llvm-svn: 51478
      aef2b819
Loading