Skip to content
  1. Mar 30, 2011
  2. Jan 18, 2011
  3. Jan 14, 2011
  4. Jan 02, 2011
  5. Oct 19, 2010
    • Owen Anderson's avatar
      Get rid of static constructors for pass registration. Instead, every pass... · 6c18d1aa
      Owen Anderson authored
      Get rid of static constructors for pass registration.  Instead, every pass exposes an initializeMyPassFunction(), which
      must be called in the pass's constructor.  This function uses static dependency declarations to recursively initialize
      the pass's dependencies.
      
      Clients that only create passes through the createFooPass() APIs will require no changes.  Clients that want to use the
      CommandLine options for passes will need to manually call the appropriate initialization functions in PassInitialization.h
      before parsing commandline arguments.
      
      I have tested this with all standard configurations of clang and llvm-gcc on Darwin.  It is possible that there are problems
      with the static dependencies that will only be visible with non-standard options.  If you encounter any crash in pass
      registration/creation, please send the testcase to me directly.
      
      llvm-svn: 116820
      6c18d1aa
  6. Oct 08, 2010
  7. Aug 23, 2010
  8. Aug 06, 2010
  9. Jul 22, 2010
  10. Jul 09, 2010
  11. Mar 26, 2010
  12. Feb 13, 2010
  13. Dec 18, 2009
  14. Nov 01, 2009
  15. Oct 31, 2009
  16. Oct 25, 2009
  17. Sep 09, 2009
  18. 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
  19. Sep 06, 2009
  20. Sep 03, 2009
  21. Aug 13, 2009
  22. Jul 14, 2009
  23. Jul 11, 2009
    • Torok Edwin's avatar
      assert(0) -> LLVM_UNREACHABLE. · 56d06597
      Torok Edwin authored
      Make llvm_unreachable take an optional string, thus moving the cerr<< out of
      line.
      LLVM_UNREACHABLE is now a simple wrapper that makes the message go away for
      NDEBUG builds.
      
      llvm-svn: 75379
      56d06597
  24. Jan 28, 2009
  25. Sep 04, 2008
  26. Jun 03, 2008
  27. May 13, 2008
  28. Apr 21, 2008
  29. Apr 17, 2008
  30. Apr 06, 2008
Loading