1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 11:02:59 +02:00

Add code coverage mapping data, reader, and writer.

This patch implements the data structures, the reader and
the writers for the new code coverage mapping system. 
The new code coverage mapping system uses the instrumentation
based profiling to provide code coverage analysis.

llvm-svn: 213909
This commit is contained in:
Alex Lorenz 2014-07-24 23:55:56 +00:00
parent bdc7f89d26
commit b17b07a115
2 changed files with 4 additions and 1 deletions

View File

@ -2,4 +2,7 @@ add_llvm_library(LLVMProfileData
InstrProf.cpp
InstrProfReader.cpp
InstrProfWriter.cpp
CoverageMapping.cpp
CoverageMappingWriter.cpp
CoverageMappingReader.cpp
)

View File

@ -19,4 +19,4 @@
type = Library
name = ProfileData
parent = Libraries
required_libraries = Support
required_libraries = Support Object