Skip to content
  1. Aug 11, 2006
  2. Aug 08, 2006
    • Chris Lattner's avatar
      Start eliminating temporary vectors used to create DAG nodes. Instead, pass · c24a1d30
      Chris Lattner authored
      in the start of an array and a count of operands where applicable.  In many
      cases, the number of operands is known, so this static array can be allocated
      on the stack, avoiding the heap.  In many other cases, a SmallVector can be
      used, which has the same benefit in the common cases.
      
      I updated a lot of code calling getNode that takes a vector, but ran out of
      time.  The rest of the code should be updated, and these methods should be
      removed.
      
      We should also do the same thing to eliminate the methods that take a
      vector of MVT::ValueTypes.
      
      It would be extra nice to convert the dagiselemitter to avoid creating vectors
      for operands when calling getTargetNode.
      
      llvm-svn: 29566
      c24a1d30
    • Evan Cheng's avatar
      Eliminate reachability matrix. It has to be calculated before any instruction · 72bb66a4
      Evan Cheng authored
      selection is done. That's rather expensive especially in situations where it
      isn't really needed.
      Move back to a searching the predecessors, but make use of topological order
      to trim the search space.
      
      llvm-svn: 29559
      72bb66a4
    • Evan Cheng's avatar
      Match tablegen isel changes. · b9d34bd0
      Evan Cheng authored
      llvm-svn: 29549
      b9d34bd0
  3. Aug 07, 2006
  4. Aug 03, 2006
  5. Aug 02, 2006
  6. Aug 01, 2006
  7. Jul 28, 2006
  8. Jul 27, 2006
  9. Jul 26, 2006
  10. Jul 25, 2006
  11. Jul 22, 2006
  12. Jul 21, 2006
  13. Jul 20, 2006
  14. Jul 19, 2006
Loading