Skip to content
  1. 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
  2. Feb 08, 2011
  3. Jan 18, 2011
  4. Jan 02, 2011
  5. Nov 17, 2010
  6. 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
  7. Oct 12, 2010
  8. Oct 08, 2010
  9. Sep 27, 2010
  10. Sep 18, 2010
  11. Sep 01, 2010
  12. Aug 29, 2010
  13. Aug 19, 2010
  14. Aug 16, 2010
  15. Aug 13, 2010
  16. Aug 06, 2010
  17. Aug 04, 2010
  18. Aug 02, 2010
  19. Jul 22, 2010
  20. Jul 15, 2010
    • Dan Gohman's avatar
      Don't merge uses when they are targetting fixup sites with · 14152082
      Dan Gohman authored
      different widths. In a use with a narrower fixup, formulae
      may be wider than the fixup, in which case the high bits
      aren't necessarily meaningful, so it isn't safe to reuse
      them for uses with wider fixups.
      
      This fixes PR7618, though the testcase is too large for a
      reasonable regression test, since it heavily dependes on
      hitting LSR's heuristics in a certain way.
      
      llvm-svn: 108455
      14152082
Loading