Skip to content
  1. Jul 22, 2009
  2. Jul 21, 2009
  3. Jul 16, 2009
  4. Jul 15, 2009
  5. Jul 10, 2009
  6. Jul 07, 2009
  7. Jul 06, 2009
  8. Jul 03, 2009
  9. Jul 02, 2009
  10. Jun 19, 2009
  11. May 04, 2009
  12. Mar 17, 2009
  13. Mar 06, 2009
  14. Jan 19, 2009
  15. Jan 09, 2009
  16. Dec 08, 2008
  17. Dec 04, 2008
  18. Dec 03, 2008
    • Chris Lattner's avatar
      Teach jump threading some more simple tricks: · 595c7279
      Chris Lattner authored
      1) have it fold "br undef", which does occur with
         surprising frequency as jump threading iterates.
      2) teach j-t to delete dead blocks.  This removes the successor
         edges, reducing the in-edges of other blocks, allowing 
         recursive simplification.
      3) Fold things like:
           br COND, BBX, BBY
        BBX:
           br COND, BBZ, BBW
      
         which also happens because jump threading iterates.
      
      llvm-svn: 60470
      595c7279
  19. Dec 01, 2008
  20. Nov 28, 2008
  21. Nov 27, 2008
  22. Sep 04, 2008
  23. Jul 23, 2008
    • Dan Gohman's avatar
      Enable first-class aggregates support. · fa1211f6
      Dan Gohman authored
      Remove the GetResultInst instruction. It is still accepted in LLVM assembly
      and bitcode, where it is now auto-upgraded to ExtractValueInst. Also, remove
      support for return instructions with multiple values. These are auto-upgraded
      to use InsertValueInst instructions.
      
      The IRBuilder still accepts multiple-value returns, and auto-upgrades them
      to InsertValueInst instructions.
      
      llvm-svn: 53941
      fa1211f6
  24. May 27, 2008
  25. May 23, 2008
  26. May 20, 2008
  27. May 13, 2008
  28. May 09, 2008
  29. May 08, 2008
  30. May 06, 2008
Loading