Skip to content
  1. Jul 15, 2010
  2. Jul 12, 2010
  3. Jul 01, 2010
  4. Jun 30, 2010
  5. 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
    • Duncan Sands's avatar
      Remove variables that are written by not read. · b69a3e27
      Duncan Sands authored
      llvm-svn: 107126
      b69a3e27
  6. Jun 24, 2010
  7. Jun 23, 2010
    • Rafael Espindola's avatar
      Add an extra-library-path option to the plugin. This is used to support · ef498156
      Rafael Espindola authored
      having a library both as bitcode and native code. We want to use the
      bitcode first, but if codegen produces new undefined references we have to use
      the native code to satisfy those references.
      
      Gold has no notion of bitcode and native search directories, so instead it has
      an API where the plugin can instruct it to look for the libraries it is passing
      to it. This patch uses that API.
      
      llvm-svn: 106674
      ef498156
  8. Jun 21, 2010
  9. Jun 18, 2010
  10. Jun 14, 2010
  11. Jun 12, 2010
  12. Jun 09, 2010
  13. Jun 07, 2010
  14. Jun 05, 2010
  15. Jun 04, 2010
  16. Jun 03, 2010
  17. May 27, 2010
  18. May 24, 2010
  19. May 23, 2010
  20. May 21, 2010
  21. May 16, 2010
  22. May 14, 2010
  23. May 13, 2010
Loading