Skip to content
  1. Oct 30, 2010
    • Tobias Grosser's avatar
      Add polly support to the build system. · ea9dca4c
      Tobias Grosser authored
      Update the cmake and autoconf build system to compile polly
      as a shared library if it is checked out into tools/polly. In case
      polly is not checked out, nothing changes.
      This models the way clang can be added to llvm if checked out to tools/clang.
      
      Also rebuild configure.
      
      Patch contributed by ether.
      
      llvm-svn: 117755
      ea9dca4c
  2. Oct 29, 2010
  3. Oct 28, 2010
  4. Oct 25, 2010
  5. Oct 23, 2010
  6. Oct 22, 2010
  7. Oct 20, 2010
  8. 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
  9. Oct 16, 2010
  10. Oct 14, 2010
  11. Oct 13, 2010
  12. Oct 11, 2010
  13. Oct 07, 2010
  14. Oct 06, 2010
  15. Oct 02, 2010
  16. Sep 29, 2010
  17. Sep 27, 2010
  18. Sep 24, 2010
  19. Sep 23, 2010
  20. Sep 22, 2010
  21. Sep 21, 2010
  22. Sep 16, 2010
  23. Sep 14, 2010
  24. Sep 13, 2010
  25. Sep 10, 2010
  26. Sep 08, 2010
    • Tobias Grosser's avatar
      Execute all Pass Printers even if -quiet is set. · 011d79ae
      Tobias Grosser authored
      Follow the same logic in the LoopPass, ModulePass and CallGraphSCCPass printers,
      as it was already used in the BasicBlockPass and FunctionPass printers. This is
      more consistent.
      
      The other option would have been to completely disable dumping the analysis
      information. However, as this information is the only information printed if the
      -analysis flag is set, calling opt would not do anything at all.
      
      llvm-svn: 113360
      011d79ae
Loading