Skip to content
  1. May 20, 2013
  2. Jan 02, 2013
    • Chandler Carruth's avatar
      Move all of the header files which are involved in modelling the LLVM IR · 9fb823bb
      Chandler Carruth authored
      into their new header subdirectory: include/llvm/IR. This matches the
      directory structure of lib, and begins to correct a long standing point
      of file layout clutter in LLVM.
      
      There are still more header files to move here, but I wanted to handle
      them in separate commits to make tracking what files make sense at each
      layer easier.
      
      The only really questionable files here are the target intrinsic
      tablegen files. But that's a battle I'd rather not fight today.
      
      I've updated both CMake and Makefile build systems (I think, and my
      tests think, but I may have missed something).
      
      I've also re-sorted the includes throughout the project. I'll be
      committing updates to Clang, DragonEgg, and Polly momentarily.
      
      llvm-svn: 171366
      9fb823bb
  3. Dec 03, 2012
    • Chandler Carruth's avatar
      Use the new script to sort the includes of every file under lib. · ed0881b2
      Chandler Carruth authored
      Sooooo many of these had incorrect or strange main module includes.
      I have manually inspected all of these, and fixed the main module
      include to be the nearest plausible thing I could find. If you own or
      care about any of these source files, I encourage you to take some time
      and check that these edits were sensible. I can't have broken anything
      (I strictly added headers, and reordered them, never removed), but they
      may not be the headers you'd really like to identify as containing the
      API being implemented.
      
      Many forward declarations and missing includes were added to a header
      files to allow them to parse cleanly when included first. The main
      module rule does in fact have its merits. =]
      
      llvm-svn: 169131
      ed0881b2
  4. Oct 26, 2012
    • Benjamin Kramer's avatar
      LoopSimplify: Preserve DependenceAnalysis. · 77360858
      Benjamin Kramer authored
      This is currently true, but may change when DA grows more aggressive caching.
      Without this setting it's impossible to use DA from a LoopPass because DA is a
      function pass and cannot be properly scheduled in between LoopPasses. The
      LoopManager reacts to this with an infinite loop which made this really annoying
      to debug.
      
      llvm-svn: 166788
      77360858
    • Benjamin Kramer's avatar
      Fix SCEV cache invalidation in LCSSA and LoopSimplify. · e3d821a4
      Benjamin Kramer authored
      The LoopSimplify bug is pretty harmless because the loop goes from unanalyzable
      to analyzable but the LCSSA bug is very nasty. It only comes into play with a
      specific order of the LoopPassManager worklist and can cause actual
      miscompilations, when a SCEV refers to a value that has been replaced with PHI
      node. SCEVExpander may then insert code into the wrong place, either violating
      domination or randomly miscompiling stuff.
      
      Comes with an extensive test case reduced from the test-suite with
      bugpoint+SCEVValidator.
      
      llvm-svn: 166787
      e3d821a4
  5. Mar 20, 2012
  6. Dec 15, 2011
    • Eli Friedman's avatar
      Make loop preheader insertion in LoopSimplify handle the case where the loop... · 16ad2905
      Eli Friedman authored
      Make loop preheader insertion in LoopSimplify handle the case where the loop header is a landing pad correctly (by splitting the landingpad out of the loop header).  Make some adjustments to the rest of LoopSimplify to make it clear that the rest of LoopSimplify isn't making bad assumptions about the presence of landing pads.  PR11575.
      
      llvm-svn: 146621
      16ad2905
  7. Dec 09, 2011
  8. Dec 01, 2011
  9. Aug 19, 2011
    • Bill Wendling's avatar
      Intelligently split the landing pad block. · c61f7659
      Bill Wendling authored
      We have to be careful when splitting the landing pad block, because the
      landingpad instruction is required to remain as the first non-PHI of an invoke's
      unwind edge. To retain this, we split the block into two blocks, moving the
      predecessors within the loop to one block and the remaining predecessors to the
      other. The landingpad instruction is cloned into the new blocks.
      
      llvm-svn: 138015
      c61f7659
  10. Aug 18, 2011
  11. Aug 17, 2011
    • Bill Wendling's avatar
      Don't optimize the landing pad exit block. · 39257d6b
      Bill Wendling authored
      One way to exit the loop is through an unwind edge. However, that may involve
      splitting the critical edge of the landing pad, which is non-trivial. Prevent
      the transformation from rewriting the landing pad exit loop block.
      
      llvm-svn: 137871
      39257d6b
  12. Aug 12, 2011
  13. Aug 03, 2011
  14. Jun 17, 2011
  15. Apr 15, 2011
  16. Mar 30, 2011
  17. Feb 11, 2011
  18. Jan 18, 2011
  19. Jan 11, 2011
  20. Jan 02, 2011
  21. Nov 18, 2010
  22. Nov 16, 2010
  23. 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
  24. Oct 12, 2010
  25. Oct 08, 2010
  26. Sep 04, 2010
  27. Aug 23, 2010
  28. Aug 16, 2010
  29. Aug 14, 2010
  30. Aug 06, 2010
  31. Jul 26, 2010
    • Dan Gohman's avatar
      Remove LCSSA's bogus dependence on LoopSimplify and LoopSimplify's bogus · 0141c13b
      Dan Gohman authored
      dependence on DominanceFrontier. Instead, add an explicit DominanceFrontier
      pass in StandardPasses.h to ensure that it gets scheduled at the right
      time.
      
      Declare that loop unrolling preserves ScalarEvolution, and shuffle some
      getAnalysisUsages.
      
      This eliminates one LoopSimplify and one LCCSA run in the standard
      compile opts sequence.
      
      llvm-svn: 109413
      0141c13b
  32. Jul 22, 2010
  33. Jul 16, 2010
Loading