mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 20:51:52 +01:00
[Profile] improve warning control option
Change --no-pgo-warn-missing to -pgo-warn-missing-function and negate the default. /NFC Add more test to make sure the warning is off by default llvm-svn: 278314
This commit is contained in:
parent
f6f7f50802
commit
1fd7fd1dcb
@ -124,7 +124,8 @@ static cl::opt<bool> DoComdatRenaming(
|
|||||||
|
|
||||||
// Command line option to enable/disable the warning about missing profile
|
// Command line option to enable/disable the warning about missing profile
|
||||||
// information.
|
// information.
|
||||||
static cl::opt<bool> NoPGOWarnMissing("no-pgo-warn-missing", cl::init(true),
|
static cl::opt<bool> PGOWarnMissing("pgo-warn-missing-function",
|
||||||
|
cl::init(false),
|
||||||
cl::Hidden);
|
cl::Hidden);
|
||||||
|
|
||||||
// Command line option to enable/disable the warning about a hash mismatch in
|
// Command line option to enable/disable the warning about a hash mismatch in
|
||||||
@ -707,7 +708,7 @@ bool PGOUseFunc::readCounters(IndexedInstrProfReader *PGOReader) {
|
|||||||
bool SkipWarning = false;
|
bool SkipWarning = false;
|
||||||
if (Err == instrprof_error::unknown_function) {
|
if (Err == instrprof_error::unknown_function) {
|
||||||
NumOfPGOMissing++;
|
NumOfPGOMissing++;
|
||||||
SkipWarning = NoPGOWarnMissing;
|
SkipWarning = !PGOWarnMissing;
|
||||||
} else if (Err == instrprof_error::hash_mismatch ||
|
} else if (Err == instrprof_error::hash_mismatch ||
|
||||||
Err == instrprof_error::malformed) {
|
Err == instrprof_error::malformed) {
|
||||||
NumOfPGOMismatch++;
|
NumOfPGOMismatch++;
|
||||||
|
@ -1,8 +1,12 @@
|
|||||||
; RUN: llvm-profdata merge %S/Inputs/diag.proftext -o %t.profdata
|
; RUN: llvm-profdata merge %S/Inputs/diag.proftext -o %t.profdata
|
||||||
; RUN: opt < %s -pgo-instr-use -no-pgo-warn-missing=false -pgo-test-profile-file=%t.profdata -S 2>&1 | FileCheck %s
|
; RUN: opt < %s -pgo-instr-use -pgo-warn-missing-function=true -pgo-test-profile-file=%t.profdata -S 2>&1 | FileCheck %s
|
||||||
; RUN: opt < %s -passes=pgo-instr-use -no-pgo-warn-missing=false -pgo-test-profile-file=%t.profdata -S 2>&1 | FileCheck %s
|
; RUN: opt < %s -passes=pgo-instr-use -pgo-warn-missing-function=true -pgo-test-profile-file=%t.profdata -S 2>&1 | FileCheck %s
|
||||||
|
|
||||||
|
; RUN: opt < %s -pgo-instr-use -pgo-test-profile-file=%t.profdata -S 2>&1 | FileCheck %s --check-prefix=DEFAULT
|
||||||
|
; RUN: opt < %s -passes=pgo-instr-use -pgo-test-profile-file=%t.profdata -S 2>&1 | FileCheck %s --check-prefix=DEFAULT
|
||||||
|
|
||||||
; CHECK: No profile data available for function bar
|
; CHECK: No profile data available for function bar
|
||||||
|
; DEFAULT-NOT: No profile data available for function bar
|
||||||
|
|
||||||
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
target datalayout = "e-m:e-i64:64-f80:128-n8:16:32:64-S128"
|
||||||
target triple = "x86_64-unknown-linux-gnu"
|
target triple = "x86_64-unknown-linux-gnu"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user