Skip to content
  1. Oct 01, 2009
    • Bob Wilson's avatar
      Add a new virtual EmitStartOfAsmFile method to the AsmPrinter and use this · b633d7a6
      Bob Wilson authored
      to emit target-specific things at the beginning of the asm output.  This
      fixes a problem for PPC, where the text sections are not being kept together
      as expected.  The base class doInitialization code calls DW->BeginModule()
      which emits a bunch of DWARF section directives.  The PPC doInitialization
      code then emits all the TEXT section directives, with the intention that they
      will be kept together. But as I understand it, the Darwin assembler treats
      the default TEXT section as a special case and moves it to the beginning of
      the file, which means that all those DWARF sections are in the middle of
      the text.  With this change, the EmitStartOfAsmFile hook is called before
      the DWARF section directives are emitted, so that all the PPC text section
      directives come out right at the beginning of the file.
      
      llvm-svn: 83176
      b633d7a6
  2. Sep 30, 2009
  3. Sep 29, 2009
  4. Sep 24, 2009
  5. Sep 18, 2009
  6. Sep 16, 2009
  7. Sep 14, 2009
  8. Sep 13, 2009
  9. 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
  10. Sep 09, 2009
  11. Aug 30, 2009
  12. Aug 29, 2009
  13. Aug 27, 2009
    • Bill Wendling's avatar
      Revert accidental commit. · e5b5d293
      Bill Wendling authored
      llvm-svn: 80198
      e5b5d293
    • Bill Wendling's avatar
      --- Reverse-merging r80147 into '.': · c7d230f7
      Bill Wendling authored
      A    include/llvm/ADT/iterator.cmake
      U    autoconf/configure.ac
      --- Reverse-merging r80161 into '.':
      U    cmake/config-ix.cmake
      --- Reverse-merging r80171 into '.':
      U    Makefile
      --- Reverse-merging r80173 into '.':
      U    configure
      U    include/llvm/Config/config.h.in
      --- Reverse-merging r80180 into '.':
      A    include/llvm/ADT/iterator.h.in
      
      Despite common miscomceptions, iterator.h is alive and well. It broke the build
      bots for several hours. And yet no one bothered to look at them.
      
      Gabor and Doug, please review your changes and make sure that they actually
      build before resubmitting them.
      
      llvm-svn: 80197
      c7d230f7
  14. Aug 26, 2009
  15. 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
  16. Aug 23, 2009
  17. Aug 22, 2009
  18. Aug 19, 2009
  19. Aug 18, 2009
  20. Aug 17, 2009
Loading