From 78c3eb55beb61db64e166af7aee811326f614d96 Mon Sep 17 00:00:00 2001 From: Justin Bogner Date: Sat, 12 Apr 2014 00:54:06 +0000 Subject: [PATCH] CodeGen: Test instrumentation based profiling of templates Make sure that templates are handled correctly by profile instrumentation. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@206091 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Profile/Inputs/cxx-templates.profdata | 17 +++++++++ test/Profile/cxx-templates.cpp | 41 ++++++++++++++++++++++ 2 files changed, 58 insertions(+) create mode 100644 test/Profile/Inputs/cxx-templates.profdata create mode 100644 test/Profile/cxx-templates.cpp diff --git a/test/Profile/Inputs/cxx-templates.profdata b/test/Profile/Inputs/cxx-templates.profdata new file mode 100644 index 0000000000..f7e9dc105b --- /dev/null +++ b/test/Profile/Inputs/cxx-templates.profdata @@ -0,0 +1,17 @@ +main +1 +1 +1 + +_Z4loopILj0EEvv +2 +2 +1 +0 + +_Z4loopILj100EEvv +2 +2 +1 +100 + diff --git a/test/Profile/cxx-templates.cpp b/test/Profile/cxx-templates.cpp new file mode 100644 index 0000000000..d59f7b97c6 --- /dev/null +++ b/test/Profile/cxx-templates.cpp @@ -0,0 +1,41 @@ +// Tests for instrumentation of templated code. Each instantiation of a template +// should be instrumented separately. + +// RUN: %clang_cc1 -x c++ %s -triple %itanium_abi_triple -main-file-name cxx-templates.cpp -std=c++11 -o - -emit-llvm -fprofile-instr-generate > %tgen +// RUN: FileCheck --input-file=%tgen -check-prefix=T0GEN -check-prefix=ALL %s +// RUN: FileCheck --input-file=%tgen -check-prefix=T100GEN -check-prefix=ALL %s + +// RUN: %clang_cc1 -x c++ %s -triple %itanium_abi_triple -main-file-name cxx-templates.cpp -std=c++11 -o - -emit-llvm -fprofile-instr-use=%S/Inputs/cxx-templates.profdata > %tuse +// RUN: FileCheck --input-file=%tuse -check-prefix=T0USE -check-prefix=ALL %s +// RUN: FileCheck --input-file=%tuse -check-prefix=T100USE -check-prefix=ALL %s + +// T0GEN: @[[T0C:__llvm_profile_counters__Z4loopILj0EEvv]] = linkonce_odr global [2 x i64] zeroinitializer +// T100GEN: @[[T100C:__llvm_profile_counters__Z4loopILj100EEvv]] = linkonce_odr global [2 x i64] zeroinitializer + +// T0GEN-LABEL: define linkonce_odr void @_Z4loopILj0EEvv() +// T0USE-LABEL: define linkonce_odr void @_Z4loopILj0EEvv() +// T100GEN-LABEL: define linkonce_odr void @_Z4loopILj100EEvv() +// T100USE-LABEL: define linkonce_odr void @_Z4loopILj100EEvv() +template void loop() { + // ALL-NOT: ret + // T0GEN: store {{.*}} @[[T0C]], i64 0, i64 0 + // T100GEN: store {{.*}} @[[T100C]], i64 0, i64 0 + + // ALL-NOT: ret + // T0GEN: store {{.*}} @[[T0C]], i64 0, i64 1 + // T0USE: br {{.*}} !prof ![[T01:[0-9]+]] + // T100GEN: store {{.*}} @[[T100C]], i64 0, i64 1 + // T100USE: br {{.*}} !prof ![[T1001:[0-9]+]] + for (unsigned I = 0; I < N; ++I) {} + + // ALL: ret +} + +// T0USE-DAG: ![[T01]] = metadata !{metadata !"branch_weights", i32 1, i32 2} +// T100USE-DAG: ![[T1001]] = metadata !{metadata !"branch_weights", i32 101, i32 2} + +int main(int argc, const char *argv[]) { + loop<0>(); + loop<100>(); + return 0; +} -- 2.40.0