Skip to content
  1. 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
  2. Sep 24, 2010
  3. Aug 06, 2010
  4. Jul 22, 2010
  5. Jun 25, 2010
  6. Apr 17, 2010
  7. Apr 16, 2010
  8. Apr 15, 2010
  9. Mar 17, 2010
  10. Mar 14, 2010
  11. Feb 09, 2010
  12. Jan 04, 2010
    • David Greene's avatar
      · ca553bd7
      David Greene authored
      Change errs() to dbgs().
      
      llvm-svn: 92518
      ca553bd7
  13. Oct 25, 2009
  14. Sep 08, 2009
  15. Aug 23, 2009
  16. Jul 14, 2009
  17. Jul 11, 2009
  18. Feb 18, 2009
  19. Feb 03, 2009
  20. Jan 28, 2009
  21. Sep 04, 2008
  22. Aug 19, 2008
  23. Aug 17, 2008
  24. Jul 07, 2008
  25. Jul 01, 2008
    • Dan Gohman's avatar
      Split ISD::LABEL into ISD::DBG_LABEL and ISD::EH_LABEL, eliminating · fb19f940
      Dan Gohman authored
      the need for a flavor operand, and add a new SDNode subclass,
      LabelSDNode, for use with them to eliminate the need for a label id
      operand.
      
      Change instruction selection to let these label nodes through
      unmodified instead of creating copies of them. Teach the MachineInstr
      emitter how to emit a MachineInstr directly from an ISD label node.
      
      This avoids the need for allocating SDNodes for the label id and
      flavor value, as well as SDNodes for each of the post-isel label,
      label id, and label flavor.
      
      llvm-svn: 52943
      fb19f940
  26. May 08, 2008
Loading