[compiler-rt] 7eb99b8 - [AIX][PGO] Add testcase for D136192

Wael Yehia via llvm-commits llvm-commits at lists.llvm.org
Mon Mar 31 10:40:56 PDT 2025


Author: Wael Yehia
Date: 2025-03-31T17:40:55Z
New Revision: 7eb99b85995a49972f7a3d5c68cf3543014a787b

URL: https://github.com/llvm/llvm-project/commit/7eb99b85995a49972f7a3d5c68cf3543014a787b
DIFF: https://github.com/llvm/llvm-project/commit/7eb99b85995a49972f7a3d5c68cf3543014a787b.diff

LOG: [AIX][PGO] Add testcase for D136192

Reviewed By: mandlebug

Differential Revision: https://reviews.llvm.org/D136192

Added: 
    compiler-rt/test/profile/AIX/pgo-lto-bcdtor-function-section.test

Modified: 
    

Removed: 
    


################################################################################
diff  --git a/compiler-rt/test/profile/AIX/pgo-lto-bcdtor-function-section.test b/compiler-rt/test/profile/AIX/pgo-lto-bcdtor-function-section.test
new file mode 100755
index 0000000000000..36170716b56c2
--- /dev/null
+++ b/compiler-rt/test/profile/AIX/pgo-lto-bcdtor-function-section.test
@@ -0,0 +1,119 @@
+// RUN: split-file %s %t
+// RUN: cd %t
+//
+
+//--- foo.c
+int foo() { return 3; }
+
+//--- main.c
+int foo();
+int main() { return foo() - 3; }
+
+// # no LTO
+// ## PGO, with and without function-sections, and all permutations of -bcdtors
+// RUN: %clang_pgogen -O2 -c -fno-function-sections foo.c
+// RUN: %clang_pgogen -O2 -c -fno-function-sections main.c
+//
+// RUN: %clang_pgogen -Wl,-bcdtors:all foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=BOTH
+//
+// RUN: %clang_pgogen -Wl,-bcdtors:mbr foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=BOTH
+
+// RUN: %clang_pgogen -O2 -c -ffunction-sections foo.c
+// RUN: %clang_pgogen -O2 -c -ffunction-sections main.c
+//
+// RUN: %clang_pgogen -Wl,-bcdtors:all foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=BOTH
+//
+// RUN: %clang_pgogen -Wl,-bcdtors:mbr foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=BOTH
+
+// ## no PGO at compile step, but PGO at link step.
+// RUN: %clang -O2 -c  foo.c
+// RUN: %clang -O2 -c  main.c
+//
+// RUN: %clang_pgogen -Wl,-bcdtors:all foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=NONE
+//
+// RUN: %clang_pgogen -Wl,-bcdtors:mbr foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=NONE
+
+// # LTO, with and without function-sections, and all permutations of -bcdtors
+// ## LTO one file, no PGO at compile, PGO at link
+// RUN: %clang -O2 -c  foo.c
+// RUN: %clang -O2 -c -flto main.c
+//
+// RUN: %clang_pgogen -flto -fno-function-sections -Wl,-bcdtors:all foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=NONE
+//
+// RUN: %clang_pgogen -flto -fno-function-sections -Wl,-bcdtors:mbr foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=NONE
+//
+// RUN: %clang_pgogen -flto -ffunction-sections -Wl,-bcdtors:all foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=NONE
+//
+// RUN: %clang_pgogen -flto -ffunction-sections -Wl,-bcdtors:mbr foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=NONE
+
+// ## LTO one file, PGO at compile and link
+// RUN: %clang -O2 -c -fno-function-sections foo.c
+// RUN: %clang_pgogen -O2 -c -flto main.c
+// RUN: %clang_pgogen -flto -fno-function-sections -Wl,-bcdtors:all foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=MAIN
+
+// RUN: %clang -O2 -c -flto foo.c
+// RUN: %clang_pgogen -O2 -c -fno-function-sections main.c
+// RUN: %clang_pgogen -flto -fno-function-sections -Wl,-bcdtors:mbr foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=MAIN
+
+// RUN: %clang -O2 -c -flto foo.c
+// RUN: %clang_pgogen -O2 -c -ffunction-sections main.c
+// RUN: %clang_pgogen -flto -ffunction-sections -Wl,-bcdtors:all foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=MAIN
+
+// RUN: %clang -O2 -c -ffunction-sections foo.c
+// RUN: %clang_pgogen -O2 -c -flto main.c
+// RUN: %clang_pgogen -flto -ffunction-sections -Wl,-bcdtors:mbr foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=MAIN
+
+// ## LTO and PGO both files
+// RUN: %clang_pgogen -O2 -c -flto foo.c
+// RUN: %clang_pgogen -O2 -c -flto main.c
+//
+// RUN: %clang_pgogen -flto -fno-function-sections -Wl,-bcdtors:all foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=BOTH
+//
+// RUN: %clang_pgogen -flto -fno-function-sections -Wl,-bcdtors:mbr foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=BOTH
+//
+// RUN: %clang_pgogen -flto -ffunction-sections -Wl,-bcdtors:all foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=BOTH
+//
+// RUN: %clang_pgogen -flto -ffunction-sections -Wl,-bcdtors:mbr foo.o main.o
+// RUN: rm -f default* && %run a.out
+// RUN: llvm-profdata show --all-functions default* | FileCheck  %s -check-prefix=BOTH
+
+// BOTH-DAG: foo:
+// BOTH-DAG: main:
+// MAIN-NOT: foo:
+// MAIN: main:
+// MAIN-NOT: foo:
+// NONE: Total functions: 0


        


More information about the llvm-commits mailing list