llvm-project/clang/test/CoverageMapping
Vedant Kumar dd1ea9de2e 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
2020-02-28 18:12:04 -08:00
..
Inputs
abspath.cpp Reland: [Coverage] Revise format to reduce binary size 2020-02-28 18:12:04 -08:00
block-storage-starts-region.m
break.c
builtinmacro.c
casts.c
classtemplate.cpp
comment-in-macro.c
continue.c
control-flow-macro.c
decl.c
default-method.cpp [Coverage] Specify the Itanium ABI triple for a C++ test 2018-11-28 20:51:09 +00:00
deferred-region.cpp [Coverage] Discard the last uncompleted deferred region in a decl 2018-05-30 23:35:44 +00:00
empty-destructor.cpp
header.cpp
if.cpp
implicit-def-in-macro.m
include-macros.c
includehell.cpp
ir.c Reland: [Coverage] Revise format to reduce binary size 2020-02-28 18:12:04 -08:00
label.cpp [Coverage] Remove a test dependency on the itanium ABI 2018-06-01 17:11:18 +00:00
lambda.cpp
logical.cpp
loopmacro.c
loops.cpp
macro-expansion.c
macro-expressions.cpp
macro-stringize-twice.cpp Remove cache for macro arg stringization 2019-07-30 17:58:22 +00:00
macroception.c
macroparams.c
macroparams2.c
macros.c [Coverage] Fix PR39258: support coverage regions that start deeper than they end 2018-11-19 20:10:22 +00:00
macroscopes.cpp
md.cpp
moremacros.c [Coverage] Discard the last uncompleted deferred region in a decl 2018-05-30 23:35:44 +00:00
nestedclass.cpp
objc.m
openmp.c [OPENMP] Fix PR38256: Fix locations of the artificial conditional op. 2018-07-25 14:40:26 +00:00
pr32679.cpp
preprocessor.c
return.c
switch.cpp [Coverage] Emit a gap region to cover switch bodies 2019-12-03 12:35:54 -08:00
switchmacro.c [Coverage] Emit a gap region to cover switch bodies 2019-12-03 12:35:54 -08:00
system_macro.cpp
templates.cpp
test.c
trycatch.cpp [Coverage] Discard the last uncompleted deferred region in a decl 2018-05-30 23:35:44 +00:00
trymacro.cpp
unreachable-macro.c
unused_function.cpp
unused_names.c Fix clang tests broken by r353547 that depend on InstrProf 2019-02-10 20:17:07 +00:00
while.c