[Profile] Add off-by-default -Wprofile-instr-missing warning
authorVedant Kumar <vsk@apple.com>
Thu, 27 Apr 2017 17:30:58 +0000 (17:30 +0000)
committerVedant Kumar <vsk@apple.com>
Thu, 27 Apr 2017 17:30:58 +0000 (17:30 +0000)
commit96d6ca7e8c4f6bce55134c2fca66fb9747ecfde8
tree0aa691bab9cc77d1dda6a77ef089dffa1b1a35f1
parentd36820f1edf4b5216f0fd42b28ae24dd0e2f0e94
[Profile] Add off-by-default -Wprofile-instr-missing warning

Clang warns that a profile is out-of-date if it can't find a profile
record for any function in a TU. This warning became noisy after llvm
started allowing dead-stripping of instrumented functions.

To fix this, this patch changes the existing profile out-of-date warning
(-Wprofile-instr-out-of-date) so that it only complains about mismatched
data. Further, it introduces a new, off-by-default warning about missing
function data (-Wprofile-instr-missing).

Differential Revision: https://reviews.llvm.org/D28867

llvm-svn: 301570
clang/include/clang/Basic/DiagnosticGroups.td
clang/include/clang/Basic/DiagnosticSemaKinds.td
clang/lib/CodeGen/CodeGenModule.cpp
clang/test/Profile/c-outdated-data.c