Skip to content
  1. Mar 31, 2012
  2. Mar 27, 2012
  3. Mar 04, 2012
  4. Feb 06, 2012
  5. Feb 05, 2012
  6. Feb 03, 2012
  7. Jan 27, 2012
  8. Jan 26, 2012
  9. Dec 23, 2011
  10. Dec 20, 2011
  11. Nov 15, 2011
  12. Jul 18, 2011
  13. Jun 28, 2011
  14. May 06, 2011
  15. May 02, 2011
  16. Feb 22, 2011
  17. Jan 31, 2011
  18. Jan 10, 2011
  19. Nov 14, 2010
  20. Oct 31, 2010
  21. Oct 30, 2010
  22. Oct 26, 2010
  23. Oct 20, 2010
  24. Sep 21, 2010
  25. Jul 27, 2010
  26. Jul 24, 2010
  27. Jul 07, 2010
  28. Jul 04, 2010
  29. Jul 03, 2010
  30. Jun 30, 2010
  31. Jun 29, 2010
    • Bill Wendling's avatar
      Introducing the "linker_weak" linkage type. This will be used for Objective-C · 1767723d
      Bill Wendling authored
      metadata types which should be marked as "weak", but which the linker will
      remove upon final linkage. For example, the "objc_msgSend_fixup_alloc" symbol is
      defined like this:
      
             .globl l_objc_msgSend_fixup_alloc
             .weak_definition l_objc_msgSend_fixup_alloc
             .section __DATA, __objc_msgrefs, coalesced
             .align 3
      l_objc_msgSend_fixup_alloc:
              .quad   _objc_msgSend_fixup
              .quad   L_OBJC_METH_VAR_NAME_1
      
      This is different from the "linker_private" linkage type, because it can't have
      the metadata defined with ".weak_definition".
      
      llvm-svn: 107205
      1767723d
  32. May 24, 2010
  33. Apr 15, 2010
  34. Apr 05, 2010
  35. Apr 03, 2010
    • David Greene's avatar
      · 9b063df4
      David Greene authored
      Ok, third time's the charm.  No changes from last time except the CMake
      source addition.  Apparently the buildbots were wrong about failures.
      
      ---
      
      Add some switches helpful for debugging:
      
      -print-before=<Pass Name>
      
      Dump IR before running pass <Pass Name>.
      
      -print-before-all
      
      Dump IR before running each pass.
      
      -print-after-all
      
      Dump IR after running each pass.
      
      These are helpful when tracking down a miscompilation.  It is easy to
      get IR dumps and do diffs on them, etc.
      
      To make this work well, add a new getPrinterPass API to Pass so that
      each kind of pass (ModulePass, FunctionPass, etc.) can create a Pass
      suitable for dumping out the kind of object the Pass works on.
      
      llvm-svn: 100249
      9b063df4
Loading