Skip to content
  1. Mar 02, 2012
  2. Mar 01, 2012
  3. Feb 22, 2012
  4. Feb 05, 2012
  5. Jan 24, 2012
  6. Jan 07, 2012
  7. Jan 06, 2012
  8. Dec 17, 2011
  9. Dec 04, 2011
  10. Dec 02, 2011
    • Nick Lewycky's avatar
      Move global variables in TargetMachine into new TargetOptions class. As an API · 50f02cb2
      Nick Lewycky authored
      change, now you need a TargetOptions object to create a TargetMachine. Clang
      patch to follow.
      
      One small functionality change in PTX. PTX had commented out the machine
      verifier parts in their copy of printAndVerify. That now calls the version in
      LLVMTargetMachine. Users of PTX who need verification disabled should rely on
      not passing the command-line flag to enable it.
      
      llvm-svn: 145714
      50f02cb2
  11. Nov 12, 2011
    • Rafael Espindola's avatar
      The dwarf standard says that the only differences between a out-of-line · e7cc8bff
      Rafael Espindola authored
      instance and a concrete inlined instance are the use of DW_TAG_subprogram
      instead of DW_TAG_inlined_subroutine and the who owns the tree.
      
      We were also omitting DW_AT_inline from the abstract roots. To fix this,
      make sure we mark abstract instance roots with DW_AT_inline even when
      we have only out-of-line instances referring to them with DW_AT_abstract_origin.
      
      FileCheck is not a very good tool for tests like this, maybe we should add
      a -verify mode to llvm-dwarfdump.
      
      llvm-svn: 144441
      e7cc8bff
  12. Nov 10, 2011
  13. Nov 09, 2011
  14. Nov 08, 2011
  15. Nov 07, 2011
  16. Nov 04, 2011
  17. Nov 02, 2011
  18. Oct 27, 2011
  19. Oct 18, 2011
  20. Oct 12, 2011
    • Eric Christopher's avatar
      Add a new wrapper node for a DILexicalBlock that encapsulates it and a · 6647b830
      Eric Christopher authored
      file. Since it should only be used when necessary propagate it through
      the backend code generation and tweak testcases accordingly.
      
      This helps with code like in clang's test/CodeGen/debug-info-line.c where
      we have multiple #line directives within a single lexical block and want
      to generate only a single block that contains each file change.
      
      Part of rdar://10246360
      
      llvm-svn: 141729
      6647b830
  21. Oct 03, 2011
  22. Aug 20, 2011
  23. Aug 19, 2011
  24. Aug 17, 2011
    • Devang Patel's avatar
      Until now all debug info MDNodes referred to a root MDNode, a compile unit.... · eb1bb4e4
      Devang Patel authored
      Until now all debug info MDNodes referred to a root MDNode, a compile unit. This simplified handling of these needs in dwarf writer.  However, one side effect of this is that during link time optimization all these MDNodes are _not_ uniqued. In other words there will be N number of MDNodes describing "int", "char" and all other types, which would suddenly grow when each object file starts using libraries like STL.
      
      MDNodes graph structure such that compiler unit keeps track of important MDNodes and update dwarf writer to process mdnodes top-down instead of bottom up.
      
      llvm-svn: 137778
      eb1bb4e4
  25. Aug 16, 2011
Loading