Skip to content
  1. Feb 25, 2011
  2. Feb 24, 2011
  3. Feb 16, 2011
  4. Dec 29, 2010
  5. Dec 14, 2010
  6. Dec 10, 2010
  7. Dec 08, 2010
  8. Dec 07, 2010
    • Rafael Espindola's avatar
      Sorry for such a large commit. The summary is that only MachO cares about the · 93e3cf0e
      Rafael Espindola authored
      actuall addresses in a .o file, so it is better to let the MachO writer compute
      it.
      
      This is good for two reasons. First, areas that shouldn't care about
      addresses now don't have access to it. Second, the layout of each section
      is independent. I should use this in a subsequent commit to speed it up.
      
      Most of the patch is just removing the section address computation. The two
      interesting parts are the change on how we handle padding in the end
      of sections and how MachO can get the address of a-b when a and b are in
      different sections.
      
      Since now the expression evaluation normally doesn't know the section address,
      it will think that a-b needs relocation and let the MachO writer know. Once
      it has computed the section addresses, it calls back the expression evaluation
      with the section addresses to resolve these expressions.
      
      The remaining problem is the handling of padding. Currently it will create
      a special alignment fragment at the end. Since that fragment doesn't update
      the alignment of the section, it needs the real address to be computed.
      
      Since now the layout will not compute a-b with a and b in different sections,
      the only effect that the special alignment fragment has is update the
      address size of the section. This can also be done by the MachO writer.
      
      llvm-svn: 121076
      93e3cf0e
  9. Dec 03, 2010
  10. Dec 02, 2010
  11. Nov 29, 2010
  12. Nov 28, 2010
  13. Nov 19, 2010
  14. Nov 16, 2010
  15. Nov 13, 2010
  16. Nov 05, 2010
  17. Nov 01, 2010
  18. Oct 02, 2010
    • Kevin Enderby's avatar
      This adds a Darwin x86_64 relocation encoding for a subtraction expression · a8d17686
      Kevin Enderby authored
      where both symbols are "local", that is non-external symbols, and there is
      no "base" for the symbols used in the expression, that is the section has
      no non-temporary symbols.  This case looks like this:
      
      % cat local_reloc_A-B.s
      	.long 0
      LB:	.long 1
      	.long LA - LB - 4
      	.long 2
      LA:	.long 3
      
      which llvm-mc will not encode without this patch, generates a "unsupported
      local relocations in difference" error, but the Darwin assembler will
      encode with relocation entries like this:
      
      % otool -rv a.out l.out 
      a.out:
      Relocation information (__TEXT,__text) 2 entries
      address  pcrel length extern type    scattered symbolnum/value
      00000008 False long   False  SUB     False     1 (__TEXT,__text)
      00000008 False long   False  UNSIGND False     1 (__TEXT,__text)
      
      which is very similar to what is encoded when the symbols don't have the
      leading 'L' and they are not temporary symbols.  Which llvm-mc and the
      Darwin assembler will encoded like this:
      
      Relocation information (__TEXT,__text) 2 entries
      address  pcrel length extern type    scattered symbolnum/value
      00000008 False long   True   SUB     False     B
      00000008 False long   True   UNSIGND False     A
      
      This is the missing relocation encoding needed to allow the Mach-O x86
      Dwarf file and line table to be emitted.  So this patch also removes the
      TODO from the if() statement in MCMachOStreamer::Finish() that didn't 
      call MCDwarfFileTable::Emit() for 64-bit targets.
      
      llvm-svn: 115389
      a8d17686
  19. Sep 30, 2010
    • Kevin Enderby's avatar
      This is the last major patch to implement support for the .loc directive · e46564a4
      Kevin Enderby authored
      and output the dwarf line number tables.  This contains the code to emit and
      encode the dwarf line tables from the previously gathered information in the
      MCLineSection objects.  This contains all the details to encode the line and
      address deltas into the dwarf line table.
      
      To do this an MCDwarfLineAddrFragment has been added.
      
      Also this moves the interface code out of Mach-O streamer into
      MCDwarf so it should be useable by other object file formats.
      
      There is now one call to be made from an MCObjectStreamer
      EmitInstruction() method:
         MCLineEntry::Make(this, getCurrentSection());
      to create a line entry after each instruction is assembled.
      
      And one call call to be made from an MCObjectStreamer Finish() method:
         MCDwarfFileTable::Emit(this, DwarfLineSection);
      when getContext().hasDwarfFiles() is true and is passed a object file specific
      MCSection where to emit the dwarf file and the line tables.
      
      This appears to now be correct for 32-bit targets, at least x86.  But the
      relocation entries for 64-bit Darwin needs some further work which is next
      up to work on.  So for now the 64-bit Mach-O target does not output the
      dwarf file and line tables.
      
      llvm-svn: 115157
      e46564a4
    • Chandler Carruth's avatar
      Silence a GCC warning about not handling all flags in this switch, we · f44d3506
      Chandler Carruth authored
      specifically assert on unexpected flags.
      
      llvm-svn: 115143
      f44d3506
  20. Sep 23, 2010
  21. 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
  22. Sep 03, 2010
  23. Sep 01, 2010
    • Kevin Enderby's avatar
      This is the second of three patches to implement support for the .loc directive · d94dacf8
      Kevin Enderby authored
      and output the dwarf line number tables.  This takes the current loc info after
      an instruction is assembled and saves the needed info into an object that has
      vector and for each section.  These objects will be used for the final patch to 
      build and emit the encoded dwarf line number tables.  Again for now this is only
      in the Mach-O streamer but at some point will move to a more generic place.
      
      llvm-svn: 112668
      d94dacf8
  24. Aug 10, 2010
  25. Jul 19, 2010
  26. Jul 08, 2010
  27. Jun 16, 2010
Loading