Skip to content

Commit 817e485

Browse files
committed
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
1 parent a014a98 commit 817e485

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

llvm/lib/ProfileData/CMakeLists.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@ add_llvm_library(LLVMProfileData
22
InstrProf.cpp
33
InstrProfReader.cpp
44
InstrProfWriter.cpp
5+
CoverageMapping.cpp
6+
CoverageMappingWriter.cpp
7+
CoverageMappingReader.cpp
58
)

llvm/lib/ProfileData/LLVMBuild.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
type = Library
2020
name = ProfileData
2121
parent = Libraries
22-
required_libraries = Support
22+
required_libraries = Support Object

0 commit comments

Comments
 (0)