[PATCH] D52034: [Clang] Add options -Xclang -coverage-filter and -Xclang -coverage-exclude to filter the files to instrument with gcov

calixte via Phabricator via cfe-commits cfe-commits at lists.llvm.org
Thu Sep 13 07:17:50 PDT 2018


calixte created this revision.
calixte added reviewers: marco-c, vsk.
Herald added a subscriber: cfe-commits.

These options are taking regex separated by colons to filter files.

- if both are empty then all files are instrumented
- if -coverage-filter is empty then all the filenames matching any of the regex from exclude are not instrumented
- if -coverage-exclude is empty then all the filenames matching any of the regex from filter are instrumented
- if both aren't empty then all the filenames which match any of the regex in filter and which don't match all the regex in filter are instrumented
- this patch is a follow-up of https://reviews.llvm.org/D52033


Repository:
  rC Clang

https://reviews.llvm.org/D52034

Files:
  include/clang/Driver/CC1Options.td
  include/clang/Frontend/CodeGenOptions.h
  lib/CodeGen/BackendUtil.cpp
  lib/Frontend/CompilerInvocation.cpp
  test/CodeGen/Inputs/code-coverage-filter1.h
  test/CodeGen/Inputs/code-coverage-filter2.h
  test/CodeGen/code-coverage-filter.c

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D52034.165279.patch
Type: text/x-patch
Size: 7153 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180913/c2bd5f83/attachment.bin>


More information about the cfe-commits mailing list