Skip to content
  1. Feb 25, 2011
  2. Feb 24, 2011
  3. Feb 16, 2011
  4. Dec 10, 2010
  5. 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
  6. Dec 03, 2010
  7. Dec 02, 2010
  8. Nov 16, 2010
  9. Nov 05, 2010
  10. Nov 02, 2010
  11. Nov 01, 2010
  12. Sep 15, 2010
    • Rafael Espindola's avatar
      Add a InitSections method to the streamer interface. · f667d929
      Rafael Espindola authored
      The ELF implementation now creates text, data and bss to match the gnu as
      behavior.
      
      The text streamer still has the old MachO specific behavior since
      the testsuite checks that it will error when a directive is given
      before a setting the current section for example.
      
      A nice benefit is that -n is not required anymore when producing
      ELF files.
      
      llvm-svn: 114027
      f667d929
  13. Sep 02, 2010
  14. May 18, 2010
  15. May 14, 2010
  16. May 08, 2010
  17. Mar 10, 2010
  18. Feb 23, 2010
    • Kevin Enderby's avatar
      This is the first patch to put the needed bits in place to eventually allow code · e83d74f6
      Kevin Enderby authored
      to be aligned with optimal nops.  This patch does not change any functionality
      and when the compiler is changed to use EmitCodeAlignment() it should also not
      change the resulting output.  Once the compiler change is made and everything
      looks good the next patch with the table of optimal X86 nops will be added to
      WriteNopData() changing the output.  There are many FIXMEs in this patch which
      will be removed when we have better target hooks (coming soon I hear).
      
      llvm-svn: 96963
      e83d74f6
  19. Jan 25, 2010
  20. Jan 23, 2010
  21. Jan 19, 2010
  22. Nov 06, 2009
  23. Aug 31, 2009
  24. Aug 30, 2009
  25. Aug 28, 2009
  26. Aug 18, 2009
  27. Aug 17, 2009
  28. Aug 14, 2009
Loading