Skip to content
  1. Jul 21, 2011
  2. Jul 18, 2011
  3. Jul 15, 2011
  4. Jun 28, 2011
  5. Jun 21, 2011
  6. May 23, 2011
  7. May 20, 2011
    • Andrew Trick's avatar
      indvars: Prototyping Sign/ZeroExtend elimination without canonical IVs. · f44aadf0
      Andrew Trick authored
      No functionality enabled by default. Use -disable-iv-rewrite.
      Extended IVUsers to keep track of the phi that represents the users' IV.
      Added the WidenIV transform to replace a narrow IV with a wide IV
      by doing a one-for-one replacement of IV users instead of expanding the
      SCEV expressions. [sz]exts are removed and truncs are inserted.
      
      llvm-svn: 131744
      f44aadf0
  8. May 18, 2011
  9. May 03, 2011
  10. Apr 15, 2011
  11. Apr 13, 2011
  12. Mar 30, 2011
  13. Mar 14, 2011
  14. Feb 11, 2011
  15. Feb 10, 2011
    • Eric Christopher's avatar
      Revert this in an attempt to bring the builders back. · da6bd450
      Eric Christopher authored
      llvm-svn: 125257
      da6bd450
    • Cameron Zwarich's avatar
      Turn this pass ordering: · 58c8670a
      Cameron Zwarich authored
      Natural Loop Information
       Loop Pass Manager
         Canonicalize natural loops
       Scalar Evolution Analysis
       Loop Pass Manager
         Induction Variable Users
         Canonicalize natural loops
         Induction Variable Users
         Loop Strength Reduction
      
      into this:
      
      Scalar Evolution Analysis
      Loop Pass Manager
        Canonicalize natural loops
        Induction Variable Users
        Loop Strength Reduction
      
      This fixes <rdar://problem/8869639>. I also filed PR9184 on doing this sort of
      thing automatically, but it seems easier to just change the ordering of the
      passes if this is the only case.
      
      llvm-svn: 125254
      58c8670a
  16. Feb 08, 2011
  17. Jan 18, 2011
  18. Jan 02, 2011
  19. Nov 17, 2010
  20. Oct 19, 2010
    • Owen Anderson's avatar
      Passes do not need to recursively initialize passes that they preserve, if · a4fefc19
      Owen Anderson authored
      they do not also require them.  This allows us to reduce inter-pass linkage
      dependencies.
      
      llvm-svn: 116854
      a4fefc19
    • 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
  21. Oct 12, 2010
  22. Oct 08, 2010
  23. Sep 27, 2010
  24. Sep 18, 2010
  25. Sep 01, 2010
  26. Aug 29, 2010
Loading