Skip to content
  1. Nov 03, 2011
  2. Oct 14, 2011
  3. Oct 06, 2011
  4. Oct 03, 2011
  5. Aug 10, 2011
  6. Jul 31, 2011
  7. Jul 09, 2011
  8. Feb 09, 2011
  9. Dec 23, 2010
    • Torok Edwin's avatar
      Fix OCaml bindings crash, PR8847. · 5abf51bd
      Torok Edwin authored
      See http://caml.inria.fr/mantis/view.php?id=4166
      If we call only external functions from a module, then its 'let _' bindings
      don't get executed, which means that the exceptions don't get registered for use
      in the C code.
      This in turn causes llvm_raise to call raise_with_arg() with a NULL pointer and
      cause a segmentation fault.
      
      The workaround is to declare all 'external' functions as 'val' in these .mli
      files.
      
      Also added a separate testcase (the testcase must call only external functions
      for the bug to occur).
      
      llvm-svn: 122497
      5abf51bd
  10. Oct 08, 2010
  11. Sep 15, 2010
  12. Sep 10, 2010
  13. Aug 28, 2010
  14. Aug 24, 2010
  15. Aug 20, 2010
  16. 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
  17. Jun 30, 2010
  18. 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
  19. Apr 10, 2010
  20. Mar 08, 2010
  21. Mar 06, 2010
  22. Mar 04, 2010
  23. Mar 03, 2010
Loading