Skip to content
  1. 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
      Match tablegen isel changes. · b9d34bd0
      Evan Cheng authored
      llvm-svn: 29549
      b9d34bd0
  2. Jul 28, 2006
  3. Jun 16, 2006
  4. Jun 15, 2006
  5. May 27, 2006
  6. May 26, 2006
  7. May 25, 2006
  8. May 24, 2006
  9. May 20, 2006
  10. May 18, 2006
  11. May 17, 2006
  12. May 12, 2006
  13. May 09, 2006
  14. May 04, 2006
  15. May 03, 2006
  16. May 02, 2006
  17. Apr 22, 2006
  18. Apr 13, 2006
  19. Apr 08, 2006
  20. Apr 07, 2006
  21. Mar 28, 2006
  22. Mar 27, 2006
    • Jim Laskey's avatar
      Translate llvm target registers to dwarf register numbers properly. · fa53b276
      Jim Laskey authored
      llvm-svn: 27180
      fa53b276
    • Nate Begeman's avatar
      SelectionDAGISel can now natively handle Switch instructions, in the same · ed728c12
      Nate Begeman authored
      manner that the LowerSwitch LLVM to LLVM pass does: emitting a binary
      search tree of basic blocks.  The new approach has several advantages:
      it is faster, it generates significantly smaller code in many cases, and
      it paves the way for implementing dense switch tables as a jump table by
      handling switches directly in the instruction selector.
      
      This functionality is currently only enabled on x86, but should be safe for
      every target.  In anticipation of making it the default, the cfg is now
      properly updated in the x86, ppc, and sparc select lowering code.
      
      llvm-svn: 27156
      ed728c12
  23. Mar 25, 2006
  24. Mar 24, 2006
  25. Mar 23, 2006
  26. Mar 17, 2006
    • Nate Begeman's avatar
      Remove BRTWOWAY* · bb01d4f2
      Nate Begeman authored
      Make the PPC backend not dependent on BRTWOWAY_CC and make the branch
      selector smarter about the code it generates, fixing a case in the
      readme.
      
      llvm-svn: 26814
      bb01d4f2
  27. Mar 09, 2006
  28. Mar 05, 2006
Loading