Skip to content
  1. Oct 09, 2010
  2. Oct 05, 2010
  3. Oct 04, 2010
    • Kevin Enderby's avatar
      Incorporate suggestions by Daniel Dunbar after his review. Thanks Daniel! · a68d004d
      Kevin Enderby authored
      1) Changed ValidateDwarfFileNumber() to isValidDwarfFileNumber() to be better
         named.  Since it is just a predicate and isn't actually changing any state.
      
      2) Added a missing return in the comments for setCurrentDwarfLoc() in 
         include/llvm/MC/MCContext.h for fix formatting.
      
      3) Changed clearDwarfLocSeen() to ClearDwarfLocSeen() since it does change
         state.
      
      4) Simplified the last test in isValidDwarfFileNumber() to just a one line
         boolean test of MCDwarfFiles[FileNumber] != 0 for the final return statement.
      
      llvm-svn: 115551
      a68d004d
    • Jan Wen Voung's avatar
      Add hook in MCSection to decide when to use "optimized nops", for each · 87f77b5f
      Jan Wen Voung authored
      section kind. Previously, optimized nops were only used for MachO.
      Also added tests for ELF and COFF.
      
      llvm-svn: 115523
      87f77b5f
  4. 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
    • Jan Wen Voung's avatar
      Have ELFAsmParser.cpp use the already parsed "Size" (entry size) when · b96b2d8e
      Jan Wen Voung authored
      constructing a section. Test for a few cases also included.
      
      llvm-svn: 115132
      b96b2d8e
    • Jan Wen Voung's avatar
      Test commit - Deleted some whitespace at the end of a line. · c7682879
      Jan Wen Voung authored
      llvm-svn: 115122
      c7682879
  5. Sep 29, 2010
  6. Sep 27, 2010
  7. Sep 24, 2010
  8. Sep 22, 2010
  9. Sep 21, 2010
  10. Sep 17, 2010
  11. Sep 16, 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 11, 2010
  14. Sep 10, 2010
  15. Sep 08, 2010
  16. Sep 02, 2010
  17. Aug 24, 2010
  18. Aug 12, 2010
  19. Aug 11, 2010
  20. Aug 10, 2010
  21. Jul 29, 2010
  22. Jul 28, 2010
Loading