Skip to content
  1. Apr 26, 2011
  2. Apr 21, 2011
  3. Apr 18, 2011
  4. Apr 15, 2011
  5. Apr 14, 2011
  6. Apr 05, 2011
  7. Mar 30, 2011
  8. Mar 05, 2011
  9. Feb 23, 2011
  10. Feb 15, 2011
  11. Feb 09, 2011
  12. Jan 28, 2011
  13. Jan 14, 2011
  14. Jan 02, 2011
  15. Dec 13, 2010
    • Chris Lattner's avatar
      remove the verbose-asm "constant pool double" comments that we were printing · f8d180b8
      Chris Lattner authored
      for each constant pool entry.  Using WriteTypeSymbolic here takes time
      proportional to the size of the module, for each constant pool entry.
      
      This speeds up -verbose-asm llc on 252.eon (a random testcase at my disposal)
      from 4.4s to 2.137s.  llc takes 2.11s with asm-verbose off, so this is now a
      pretty reasonable cost for verbose comments.
      
      llvm-svn: 121691
      f8d180b8
  16. Nov 17, 2010
  17. Oct 26, 2010
  18. Sep 27, 2010
  19. Sep 05, 2010
  20. Sep 03, 2010
  21. Sep 02, 2010
  22. Aug 28, 2010
  23. Aug 21, 2010
    • Bill Wendling's avatar
      Create the new linker type "linker_private_weak_def_auto". · 578ee407
      Bill Wendling authored
      It's similar to "linker_private_weak", but it's known that the address of the
      object is not taken. For instance, functions that had an inline definition, but
      the compiler decided not to inline it. Note, unlike linker_private and
      linker_private_weak, linker_private_weak_def_auto may have only default
      visibility.  The symbols are removed by the linker from the final linked image
      (executable or dynamic library).
      
      llvm-svn: 111684
      578ee407
  24. Aug 18, 2010
  25. Aug 06, 2010
  26. Aug 04, 2010
  27. Jul 17, 2010
  28. Jul 16, 2010
  29. Jul 15, 2010
  30. Jul 02, 2010
  31. Jul 01, 2010
    • Bill Wendling's avatar
      Implement the "linker_private_weak" linkage type. This will be used for · 03bcd6ec
      Bill Wendling authored
      Objective-C metadata types which should be marked as "weak", but which the
      linker will remove upon final linkage. However, this linkage isn't specific to
      Objective-C.
      
      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".
      
      Currently only supported on Darwin platforms.
      
      llvm-svn: 107433
      03bcd6ec
  32. Jun 30, 2010
Loading