Skip to content
  1. Nov 23, 2010
  2. 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
  3. Oct 08, 2010
  4. Aug 06, 2010
  5. Jul 22, 2010
  6. Jul 12, 2010
  7. Jan 05, 2010
  8. Nov 06, 2009
  9. Oct 23, 2009
  10. Sep 27, 2009
  11. Sep 19, 2009
  12. Sep 02, 2009
  13. Aug 23, 2009
  14. Jul 31, 2009
  15. Jul 25, 2009
    • Daniel Dunbar's avatar
      More migration to raw_ostream, the water has dried up around the iostream hole. · 0dd5e1ed
      Daniel Dunbar authored
       - Some clients which used DOUT have moved to DEBUG. We are deprecating the
         "magic" DOUT behavior which avoided calling printing functions when the
         statement was disabled. In addition to being unnecessary magic, it had the
         downside of leaving code in -Asserts builds, and of hiding potentially
         unnecessary computations.
      
      llvm-svn: 77019
      0dd5e1ed
  16. Jul 22, 2009
  17. Jul 17, 2009
    • Eli Friedman's avatar
      Replace isTrapping with a new, similar method called · b8f6a4fc
      Eli Friedman authored
      isSafeToSpeculativelyExecute. The new method is a bit closer to what 
      the callers actually care about in that it rejects more things callers 
      don't want.  It also adds more precise handling for integer 
      division, and unifies code for analyzing the legality of a speculative 
      load.
      
      llvm-svn: 76150
      b8f6a4fc
  18. Jul 16, 2009
  19. Jul 15, 2009
  20. Jul 10, 2009
  21. Jul 06, 2009
  22. Jul 02, 2009
  23. May 06, 2009
  24. Nov 27, 2008
  25. Sep 04, 2008
  26. Jun 12, 2008
  27. Jun 11, 2008
  28. May 23, 2008
  29. May 16, 2008
  30. May 15, 2008
  31. May 13, 2008
  32. Apr 21, 2008
  33. Apr 14, 2008
  34. Apr 13, 2008
Loading