llvm-6502/tools
Devang Patel d02c42bb85 Introduce llvm-cov.
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;
 :	}
 :	
 :	




git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@140712 91177308-0d34-0410-b5e6-96231b3b80d8
2011-09-28 18:50:00 +00:00
..
bugpoint
bugpoint-passes
edis
gold use 64-bit types instead of off_t/size_t to avoid the issue when 2011-09-15 23:13:00 +00:00
llc
lli
llvm-ar
llvm-as
llvm-bcanalyzer
llvm-config
llvm-cov Introduce llvm-cov. 2011-09-28 18:50:00 +00:00
llvm-diff
llvm-dis
llvm-dwarfdump llvm-dwarfdump: Add an option to print out line info for a specific address 2011-09-15 21:17:40 +00:00
llvm-extract Add -rfunc and -rglob options to llvm-extract to support regular 2011-09-16 21:09:17 +00:00
llvm-ld
llvm-link
llvm-mc Don't attach annotations to MCInst's. Instead, have the disassembler return, and the printer accept, an annotation string which can be passed through if the client cares about annotations. 2011-09-15 23:38:46 +00:00
llvm-nm Add binary archive support to llvm-nm. 2011-09-27 19:37:18 +00:00
llvm-objdump llvm-objdump: Detach symbol listing from section enumeration for mach-o. 2011-09-21 22:16:43 +00:00
llvm-prof
llvm-ranlib
llvm-rtdyld
llvm-shlib
llvm-stub
lto
macho-dump
opt
CMakeLists.txt Remove llvmc from CMake as well. 2011-09-20 00:13:13 +00:00
Makefile Introduce llvm-cov. 2011-09-28 18:50:00 +00:00