
As reported in #138173, enabling `-ftime-report` adds pass timing info to the stats file if `-stats-file` is specified. This was determined to be WAI. However, if one intentionally wants to put timer information in the stats file, using `-ftime-report` may lead to a lot of logspam (that can't be removed by directing stderr to `/dev/null` as that would also redirect compiler errors). To address this, this PR adds a flag `-stats-file-timers` that adds timer data to the stats file without outputting to stderr.
46 lines
1.8 KiB
C
46 lines
1.8 KiB
C
// Check -ftime-report/-ftime-report= output
|
|
// RUN: %clang_cc1 -emit-obj -O1 \
|
|
// RUN: -ftime-report %s -o /dev/null 2>&1 | \
|
|
// RUN: FileCheck %s --check-prefixes=TIME,NPM
|
|
// RUN: %clang_cc1 -emit-obj -O1 \
|
|
// RUN: -ftime-report %s -o /dev/null \
|
|
// RUN: -mllvm -info-output-file=%t
|
|
// RUN: cat %t | FileCheck %s --check-prefixes=TIME,NPM
|
|
// RUN: %clang_cc1 -emit-obj -O1 \
|
|
// RUN: -ftime-report=per-pass %s -o /dev/null 2>&1 | \
|
|
// RUN: FileCheck %s --check-prefixes=TIME,NPM
|
|
// RUN: %clang_cc1 -emit-obj -O1 \
|
|
// RUN: -ftime-report=per-pass-run %s -o /dev/null 2>&1 | \
|
|
// RUN: FileCheck %s --check-prefixes=TIME,NPM-PER-INVOKE
|
|
// RUN: %clang_cc1 -emit-obj -O1 \
|
|
// RUN: -ftime-report-json %s -o /dev/null 2>&1 | \
|
|
// RUN: FileCheck %s --check-prefixes=JSON
|
|
// RUN: %clang_cc1 -emit-obj -O1 \
|
|
// RUN: -ftime-report-json %s -o /dev/null \
|
|
// RUN: -mllvm -info-output-file=%t
|
|
// RUN: cat %t | FileCheck %s --check-prefixes=JSON
|
|
// Check that -stats-file-timers only outputs pass time info in the stats file
|
|
// and not stderr.
|
|
// RUN: %clang_cc1 -emit-obj -O1 \
|
|
// RUN: %s -o /dev/null \
|
|
// RUN: -stats-file=%t -stats-file-timers 2>&1 | count 0
|
|
// RUN: FileCheck %s -input-file=%t -check-prefixes=JSON
|
|
|
|
// TIME: Pass execution timing report
|
|
// TIME: Total Execution Time:
|
|
// TIME: Name
|
|
// NPM-PER-INVOKE-DAG: InstCombinePass #
|
|
// NPM-PER-INVOKE-DAG: InstCombinePass #
|
|
// NPM-PER-INVOKE-DAG: InstCombinePass #
|
|
// NPM-NOT: InstCombinePass #
|
|
// NPM: InstCombinePass{{$}}
|
|
// NPM-NOT: InstCombinePass #
|
|
// TIME: Total{{$}}
|
|
// JSON:{
|
|
// JSON: "time.pass.InstCombinePass.wall": {{.*}},
|
|
// JSON: "time.pass.InstCombinePass.user": {{.*}},
|
|
// JSON: "time.pass.InstCombinePass.sys": {{.*}},
|
|
// JSON:}
|
|
|
|
int foo(int x, int y) { return x + y; }
|