aboutsummaryrefslogtreecommitdiff
path: root/llvm/unittests/ProfileData/CoverageMappingTest.cpp
diff options
context:
space:
mode:
authorVedant Kumar <vsk@apple.com>2019-10-21 11:48:38 -0700
committerVedant Kumar <vsk@apple.com>2020-02-28 18:12:04 -0800
commitdd1ea9de2e3e3ac80a620f71411a9a36449f2697 (patch)
tree577fe581fbf79ddb7ebd05c261108e1074071c62 /llvm/unittests/ProfileData/CoverageMappingTest.cpp
parent3388871714d3b718b823e76499b0c03877105e5d (diff)
downloadllvm-dd1ea9de2e3e3ac80a620f71411a9a36449f2697.zip
llvm-dd1ea9de2e3e3ac80a620f71411a9a36449f2697.tar.gz
llvm-dd1ea9de2e3e3ac80a620f71411a9a36449f2697.tar.bz2
Reland: [Coverage] Revise format to reduce binary size
Try again with an up-to-date version of D69471 (99317124 was a stale revision). --- Revise the coverage mapping format to reduce binary size by: 1. Naming function records and marking them `linkonce_odr`, and 2. Compressing filenames. This shrinks the size of llc's coverage segment by 82% (334MB -> 62MB) and speeds up end-to-end single-threaded report generation by 10%. For reference the compressed name data in llc is 81MB (__llvm_prf_names). Rationale for changes to the format: - With the current format, most coverage function records are discarded. E.g., more than 97% of the records in llc are *duplicate* placeholders for functions visible-but-not-used in TUs. Placeholders *are* used to show under-covered functions, but duplicate placeholders waste space. - We reached general consensus about giving (1) a try at the 2017 code coverage BoF [1]. The thinking was that using `linkonce_odr` to merge duplicates is simpler than alternatives like teaching build systems about a coverage-aware database/module/etc on the side. - Revising the format is expensive due to the backwards compatibility requirement, so we might as well compress filenames while we're at it. This shrinks the encoded filenames in llc by 86% (12MB -> 1.6MB). See CoverageMappingFormat.rst for the details on what exactly has changed. Fixes PR34533 [2], hopefully. [1] http://lists.llvm.org/pipermail/llvm-dev/2017-October/118428.html [2] https://bugs.llvm.org/show_bug.cgi?id=34533 Differential Revision: https://reviews.llvm.org/D69471
Diffstat (limited to 'llvm/unittests/ProfileData/CoverageMappingTest.cpp')
-rw-r--r--llvm/unittests/ProfileData/CoverageMappingTest.cpp25
1 files changed, 25 insertions, 0 deletions
diff --git a/llvm/unittests/ProfileData/CoverageMappingTest.cpp b/llvm/unittests/ProfileData/CoverageMappingTest.cpp
index 82e7574..4854b7f 100644
--- a/llvm/unittests/ProfileData/CoverageMappingTest.cpp
+++ b/llvm/unittests/ProfileData/CoverageMappingTest.cpp
@@ -895,4 +895,29 @@ INSTANTIATE_TEST_CASE_P(ParameterizedCovMapTest, CoverageMappingTest,
std::pair<bool, bool>({true, false}),
std::pair<bool, bool>({true, true})),);
+TEST(CoverageMappingTest, filename_roundtrip) {
+ std::vector<StringRef> Paths({"a", "b", "c", "d", "e"});
+
+ for (bool Compress : {false, true}) {
+ std::string EncodedFilenames;
+ {
+ raw_string_ostream OS(EncodedFilenames);
+ CoverageFilenamesSectionWriter Writer(Paths);
+ Writer.write(OS, Compress);
+ }
+
+ std::vector<StringRef> ReadFilenames;
+ RawCoverageFilenamesReader Reader(EncodedFilenames, ReadFilenames);
+ BinaryCoverageReader::DecompressedData Decompressed;
+ EXPECT_THAT_ERROR(Reader.read(CovMapVersion::CurrentVersion, Decompressed),
+ Succeeded());
+ if (!Compress)
+ ASSERT_EQ(Decompressed.size(), 0U);
+
+ ASSERT_EQ(ReadFilenames.size(), Paths.size());
+ for (unsigned I = 0; I < Paths.size(); ++I)
+ ASSERT_TRUE(ReadFilenames[I] == Paths[I]);
+ }
+}
+
} // end anonymous namespace