Skip to content
  1. Feb 23, 2011
  2. Dec 22, 2010
  3. Dec 04, 2010
    • Rafael Espindola's avatar
      There are two reasons why we might want to use · 1c8ac8f0
      Rafael Espindola authored
      foo = a - b
      .long foo
      instead of just
      .long a - b
      
      First, on darwin9 64 bits the assembler produces the wrong result. Second,
      if "a" is the end of the section all darwin assemblers (9, 10 and mc) will not
      consider a - b to be a constant but will if the dummy foo is created.
      
      Split how we handle these cases. The first one is something MC should take care
      of. The second one has to be handled by the caller.
      
      llvm-svn: 120889
      1c8ac8f0
    • Rafael Espindola's avatar
      Next step: Only pad debug_line when the target is darwin. Add a FIXME to avoid · 1048e75f
      Rafael Espindola authored
      doing that if the target is darwin10 or newer.
      
      This fixes
      *) Direct object emission was producing objects without the workaround on
         darwin9.
      *) Assembly printing was producing objects with the workaround on linux.
      
      llvm-svn: 120866
      1048e75f
  4. Nov 29, 2010
  5. Nov 19, 2010
  6. Nov 18, 2010
  7. Sep 23, 2010
  8. Sep 02, 2010
  9. Sep 01, 2010
  10. Jul 08, 2010
  11. Jun 30, 2010
  12. 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
  13. May 20, 2010
  14. Apr 29, 2010
  15. Apr 05, 2010
  16. Apr 04, 2010
  17. Mar 12, 2010
  18. Mar 10, 2010
  19. Feb 05, 2010
  20. Jan 26, 2010
  21. Jan 25, 2010
  22. Jan 23, 2010
  23. Jan 20, 2010
  24. Jan 19, 2010
  25. Oct 26, 2009
Loading