Skip to content
  1. Sep 28, 2011
    • Devang Patel's avatar
      Introduce llvm-cov. · 3714065a
      Devang Patel authored
      Add llvm-cov skeleton. It has initial support to read coverage info generated by GCOVProfiling.cpp. 
      Today, you can do
      prompt> clang a.c -ftest-coverage -fprofile-arcs -o a
      prompt> ./a
      prompt> llvm-cov -gcno a.gcno -gcda a.gcda 
      a.c
       :	#include "a.h"
       :	
       :	int main() {
       :		int i = 0;
       :		if (i) {
      1:			int j = 0;
      1:			j = 1;
      1:		} else {
       :			int k = 1;
       :			k = 2;
       :		}
      1:		return 0;
       :	}
       :	
       :	
      
      llvm-svn: 140712
      3714065a
  2. Sep 27, 2011
  3. Sep 22, 2011
  4. Sep 21, 2011
  5. Sep 20, 2011
  6. Sep 19, 2011
  7. Sep 16, 2011
  8. Sep 15, 2011
  9. Sep 14, 2011
  10. Sep 13, 2011
    • Benjamin Kramer's avatar
      Sketch out a DWARF parser. · aa2f78f5
      Benjamin Kramer authored
      This introduces a new library to LLVM: libDebugInfo. It will provide debug information
      parsing to LLVM. Much of the design and some of the code is taken from the LLDB project.
      
      It also contains an llvm-dwarfdump tool that can dump the abbrevs and DIEs from an
      object file. It can be used to write tests for DWARF input and output easily.
      
      llvm-svn: 139627
      aa2f78f5
  11. Sep 12, 2011
  12. Sep 09, 2011
  13. Sep 08, 2011
  14. Sep 07, 2011
  15. Sep 05, 2011
  16. Sep 02, 2011
  17. Aug 31, 2011
  18. Aug 30, 2011
  19. Aug 24, 2011
  20. Aug 23, 2011
  21. Aug 18, 2011
  22. Aug 17, 2011
  23. Aug 16, 2011
  24. Aug 12, 2011
  25. Aug 08, 2011
Loading