Skip to content
  1. Oct 13, 2009
  2. Oct 10, 2009
  3. Oct 09, 2009
  4. Oct 08, 2009
  5. Oct 06, 2009
  6. Oct 05, 2009
  7. Oct 01, 2009
  8. Sep 30, 2009
    • Mike Stump's avatar
      Add a way for a frontend to generate more complex dwarf location · 14cf8ecf
      Mike Stump authored
      information.  This allows arbitrary code involving DW_OP_plus_uconst
      and DW_OP_deref.  The scheme allows for easy extention to include,
      any, or all of the DW_OP_ opcodes.  I thought about just exposing all
      of them, but, wasn't sure if people wanted the dwarf opcodes exposed
      in the api.  Is that a layering violation?
      
      With this scheme, the entire existing block scheme used by llvm-gcc
      can be switched over to the new scheme.  I think that would be
      cleaner, as then the compiler specific bits are not present in llvm
      proper.  Before the old code can be yanked however, similar code in
      clang would have to be removed.
      
      Next up, more testing.
      
      llvm-svn: 83120
      14cf8ecf
  9. Sep 29, 2009
  10. Sep 25, 2009
  11. Sep 23, 2009
  12. Sep 19, 2009
  13. Sep 16, 2009
  14. Sep 11, 2009
  15. Sep 10, 2009
    • Chris Lattner's avatar
      remove DebugLoc from MCInst and eliminate "Comment printing" from · 321bc99a
      Chris Lattner authored
      the MCInst path of the asmprinter.  Instead, pull comment printing
      out of the autogenerated asmprinter into each target that uses the
      autogenerated asmprinter.  This causes code duplication into each
      target, but in a way that will be easier to clean up later when more
      asmprinter stuff is commonized into the base AsmPrinter class.
      
      This also fixes an xcore strangeness where it inserted two tabs
      before every instruction.
      
      llvm-svn: 81396
      321bc99a
  16. Sep 05, 2009
  17. Sep 01, 2009
  18. Aug 31, 2009
  19. Aug 29, 2009
  20. Aug 28, 2009
  21. Aug 26, 2009
  22. Aug 25, 2009
    • Devang Patel's avatar
      Update DebugInfo interface to use metadata, instead of special named... · 02aac922
      Devang Patel authored
      Update DebugInfo interface to use metadata, instead of special named llvm.dbg.... global variables, to encode debugging information in llvm IR. This is mostly a mechanical change that tests metadata support very well.
      
      This change speeds up llvm-gcc by more then 6% at "-O0 -g" (measured by compiling InstructionCombining.cpp!)
      
      llvm-svn: 79977
      02aac922
  23. Aug 24, 2009
    • Chris Lattner's avatar
      prune the #includes in raw_ostream.h by moving a · 06fa1768
      Chris Lattner authored
      member out of line. ftostr is not particularly speedy,
      so that method is presumably not perf sensitive.
      
      llvm-svn: 79885
      06fa1768
    • Chris Lattner's avatar
      Prune #includes from llvm/Linker.h and llvm/System/Path.h, · c521f541
      Chris Lattner authored
      forcing them down into various .cpp files.
      
      This change also:
      1. Renames TimeValue::toString() and Path::toString() to ::str()
         for similarity with the STL.
      2. Removes all stream insertion support for sys::Path, forcing
         clients to call .str().
      3. Removes a use of Config/alloca.h from bugpoint, using smallvector
         instead.
      4. Weans llvm-db off <iostream>
      
      sys::Path really needs to be gutted, but I don't have the desire to
      do it at this point.
      
      llvm-svn: 79869
      c521f541
Loading