Skip to content
  1. Sep 28, 2009
  2. Sep 08, 2009
    • Dan Gohman's avatar
      Re-apply r80926, with fixes: keep the domtree informed of new blocks · 3ddbc242
      Dan Gohman authored
      that get created during loop unswitching, and fix SplitBlockPredecessors'
      LCSSA updating code to create new PHIs instead of trying to just move
      existing ones.
      
      Also, optimize Loop::verifyLoop, since it gets called a lot. Use
      searches on a sorted list of blocks instead of calling the "contains"
      function, as is done in other places in the Loop class, since "contains"
      does a linear search. Also, don't call verifyLoop from LoopSimplify or
      LCSSA, as the PassManager is already calling verifyLoop as part of
      LoopInfo's verifyAnalysis.
      
      llvm-svn: 81221
      3ddbc242
  3. Sep 06, 2009
  4. Sep 03, 2009
  5. Jul 31, 2009
  6. Jul 22, 2009
  7. Jul 06, 2009
  8. Jun 26, 2009
  9. Apr 22, 2009
  10. Jan 23, 2009
    • Gabor Greif's avatar
      Simplify the logic of getting hold of a PHI predecessor block. · eb61fcf2
      Gabor Greif authored
      There is now a direct way from value-use-iterator to incoming block in PHINode's API.
      This way we avoid the iterator->index->iterator trip, and especially the costly
      getOperandNo() invocation. Additionally there is now an assertion that the iterator
      really refers to one of the PHI's Uses.
      
      llvm-svn: 62869
      eb61fcf2
  11. Oct 23, 2008
    • Daniel Dunbar's avatar
      Change create*Pass factory functions to return Pass* instead of · 7f39e2d8
      Daniel Dunbar authored
      LoopPass*.
       - Although less precise, this means they can be used in clients
         without RTTI (who would otherwise need to include LoopPass.h, which
         eventually includes things using dynamic_cast). This was the
         simplest solution that presented itself, but I am happy to use a
         better one if available.
      
      llvm-svn: 58010
      7f39e2d8
  12. Sep 04, 2008
  13. 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
  14. Jun 03, 2008
  15. May 30, 2008
  16. May 26, 2008
  17. May 23, 2008
  18. May 15, 2008
  19. May 13, 2008
  20. May 03, 2008
  21. Apr 06, 2008
  22. Feb 20, 2008
  23. Dec 29, 2007
  24. Aug 21, 2007
  25. Aug 17, 2007
  26. Jul 30, 2007
  27. Jul 19, 2007
  28. Jul 16, 2007
  29. Jul 14, 2007
  30. Jun 07, 2007
  31. Jun 04, 2007
  32. Jun 03, 2007
  33. May 11, 2007
  34. May 06, 2007
  35. May 03, 2007
  36. May 02, 2007
  37. May 01, 2007
  38. Apr 19, 2007
Loading