Skip to content
  1. Oct 27, 2006
  2. Oct 25, 2006
  3. Oct 20, 2006
  4. Oct 16, 2006
  5. Oct 13, 2006
  6. Oct 12, 2006
  7. Oct 09, 2006
  8. Oct 06, 2006
  9. Oct 05, 2006
  10. Oct 04, 2006
  11. Oct 03, 2006
  12. Sep 27, 2006
  13. Sep 26, 2006
  14. Sep 21, 2006
  15. Sep 17, 2006
  16. Sep 14, 2006
  17. Sep 13, 2006
  18. Sep 12, 2006
  19. Sep 11, 2006
  20. Sep 08, 2006
  21. Sep 07, 2006
  22. Aug 17, 2006
  23. Aug 11, 2006
  24. 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
Loading