Skip to content
  1. Jan 23, 2011
  2. Dec 10, 2010
  3. Dec 01, 2010
  4. Nov 26, 2010
  5. Nov 16, 2010
  6. Nov 13, 2010
  7. Nov 11, 2010
  8. Nov 10, 2010
  9. Nov 09, 2010
  10. 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
  11. Sep 30, 2010
  12. 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
  13. Aug 24, 2010
    • Kevin Enderby's avatar
      First bit of support for the dwarf .loc directive. This patch updates the · 1264b7ca
      Kevin Enderby authored
      needed parsing for the .loc directive and saves the current info from that
      into the context.  The next patch will take the current loc info after an
      instruction is assembled and save that info into a vector for each section for
      use to build the line number tables.  The patch after that will encode the info
      from those vectors into the output file as the dwarf line tables.
      
      llvm-svn: 111956
      1264b7ca
  14. Aug 16, 2010
  15. Aug 10, 2010
  16. Jul 29, 2010
  17. Jul 28, 2010
  18. Jul 12, 2010
  19. Jun 28, 2010
  20. May 18, 2010
  21. May 07, 2010
  22. Apr 08, 2010
  23. Mar 30, 2010
  24. Mar 17, 2010
  25. Mar 15, 2010
    • Chris Lattner's avatar
      fix a memory leak yjasskin pointed out: MCSymbol is bump pointer · 13348769
      Chris Lattner authored
      allocated and thus not freed.  This is cool except that it contains
      and std::string so the string data didn't get freed.  In any case
      there is no reason to redundantly store the string data in the 
      MCSymbol anyway, just make the MCSymbol ref the string data in the
      MCContext StringMap.
      
      llvm-svn: 98536
      13348769
  26. Mar 14, 2010
  27. Mar 11, 2010
  28. Mar 10, 2010
  29. Nov 06, 2009
  30. Oct 20, 2009
Loading