diff options
author | Rong Xu <xur@google.com> | 2016-05-13 17:26:06 +0000 |
---|---|---|
committer | Rong Xu <xur@google.com> | 2016-05-13 17:26:06 +0000 |
commit | 0698de9218db7613e9e9af9dce5746c8808e4be5 (patch) | |
tree | b285123e90363aa8d5da084b3dd937247c9f753b | |
parent | d1145ad25348c4799eb3d44c3e7d36b1fb33ccf3 (diff) | |
download | bcm5719-llvm-0698de9218db7613e9e9af9dce5746c8808e4be5.tar.gz bcm5719-llvm-0698de9218db7613e9e9af9dce5746c8808e4be5.zip |
[PGO] Add flags to control IRPGO warnings.
Currently there is no reasonable way to control the warnings in the 'use' phase
of the IRPGO pass. This is problematic because the output can be somewhat
spammy. This patch adds some flags which allow us to optionally disable these
warnings. The current upstream behavior will remain the default.
Patch by Jake VanAdrighem (jvanadrighem@gmail.com)
Differential Revision: http://reviews.llvm.org/D20195
llvm-svn: 269437
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp b/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp index 6ec36319e3e..379f7c5ebed 100644 --- a/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp +++ b/llvm/lib/Transforms/Instrumentation/PGOInstrumentation.cpp @@ -111,6 +111,16 @@ static cl::opt<unsigned> MaxNumAnnotations( cl::desc("Max number of annotations for a single indirect " "call callsite")); +// Command line option to enable/disable the warning about missing profile +// information. +static cl::opt<bool> NoPGOWarnMissing("no-pgo-warn-missing", cl::init(false), + cl::Hidden); + +// Command line option to enable/disable the warning about a hash mismatch in +// the profile data. +static cl::opt<bool> NoPGOWarnMismatch("no-pgo-warn-mismatch", cl::init(false), + cl::Hidden); + namespace { class PGOInstrumentationGenLegacyPass : public ModulePass { public: @@ -575,11 +585,16 @@ bool PGOUseFunc::readCounters(IndexedInstrProfReader *PGOReader) { ErrorOr<InstrProfRecord> Result = PGOReader->getInstrProfRecord(FuncInfo.FuncName, FuncInfo.FunctionHash); if (std::error_code EC = Result.getError()) { - if (EC == instrprof_error::unknown_function) + if (EC == instrprof_error::unknown_function) { NumOfPGOMissing++; - else if (EC == instrprof_error::hash_mismatch || - EC == llvm::instrprof_error::malformed) + if (NoPGOWarnMissing) + return false; + } else if (EC == instrprof_error::hash_mismatch || + EC == llvm::instrprof_error::malformed) { NumOfPGOMismatch++; + if (NoPGOWarnMismatch) + return false; + } std::string Msg = EC.message() + std::string(" ") + F.getName().str(); Ctx.diagnose( |