view clang/test/Misc/time-passes.c @ 207:2e18cbf3894f

LLVM12
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 08 Jun 2021 06:07:14 +0900
parents
children c4bab56944e8
line wrap: on
line source

// Check that legacy pass manager could only use -ftime-report
// RUN: %clang_cc1 -flegacy-pass-manager -emit-obj -O1 \
// RUN:     -ftime-report %s -o /dev/null 2>&1 | \
// RUN:     FileCheck %s --check-prefixes=TIME,LPM
// RUN: not %clang_cc1 -flegacy-pass-manager -emit-obj -O1 \
// RUN:     -ftime-report=per-pass %s -o /dev/null 2>&1 | \
// RUN:     FileCheck %s --check-prefixes=ERROR
// RUN: not %clang_cc1 -flegacy-pass-manager -emit-obj -O1 \
// RUN:     -ftime-report=per-pass-run %s -o /dev/null 2>&1 | \
// RUN:     FileCheck %s --check-prefixes=ERROR

// Check -ftime-report/-ftime-report= output for the new pass manager
// RUN: %clang_cc1 -emit-obj -O1 -fno-legacy-pass-manager \
// RUN:     -ftime-report %s -o /dev/null 2>&1 | \
// RUN:     FileCheck %s --check-prefixes=TIME,NPM
// RUN: %clang_cc1 -emit-obj -O1 -fno-legacy-pass-manager \
// RUN:     -ftime-report=per-pass %s -o /dev/null 2>&1 | \
// RUN:     FileCheck %s --check-prefixes=TIME,NPM
// RUN: %clang_cc1 -emit-obj -O1 -fno-legacy-pass-manager \
// RUN:     -ftime-report=per-pass-run %s -o /dev/null 2>&1 | \
// RUN:     FileCheck %s --check-prefixes=TIME,NPM-PER-INVOKE

// TIME: Pass execution timing report
// TIME: Total Execution Time:
// TIME: Name
// LPM-DAG:   Dominator Tree Construction #
// LPM-DAG:   Dominator Tree Construction #
// LPM-DAG:   Dominator Tree Construction #
// 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{{$}}
// LPM-NOT: Pass execution timing report
// NPM: Pass execution timing report

// ERROR: error: invalid argument '-ftime-report={{.*}}' only allowed with '-fno-legacy-pass-manager'

int foo(int x, int y) { return x + y; }