xref: /aosp_15_r20/external/compiler-rt/test/profile/instrprof-icall-promo.test (revision 7c3d14c8b49c529e04be81a3ce6f5cc23712e4c6)
1*7c3d14c8STreehugger RobotRUN: %clangxx_profgen -O2 -Xclang -fprofile-instrument=llvm -c -o %t.1.o  %S/Inputs/instrprof-icall-promo_1.cc
2*7c3d14c8STreehugger RobotRUN: %clangxx_profgen -O2 -Xclang -fprofile-instrument=llvm -c -o %t.2.o  %S/Inputs/instrprof-icall-promo_2.cc
3*7c3d14c8STreehugger Robot
4*7c3d14c8STreehugger RobotRUN: %clangxx_profgen -O2 -Xclang -fprofile-instrument=llvm %t.2.o %t.1.o -o %t.gen.1
5*7c3d14c8STreehugger RobotRUN: env LLVM_PROFILE_FILE=%t-icall.profraw %run %t.gen.1
6*7c3d14c8STreehugger RobotRUN: llvm-profdata merge -o %t-icall.profdata %t-icall.profraw
7*7c3d14c8STreehugger RobotRUN: %clangxx -O2 -Rpass=pgo-icall-prom  -fprofile-instr-use=%t-icall.profdata -c -o %t.2.use.o  %S/Inputs/instrprof-icall-promo_2.cc  2>&1 | FileCheck %s
8*7c3d14c8STreehugger Robot
9*7c3d14c8STreehugger RobotRUN: %clangxx_profgen -O2 -Xclang -fprofile-instrument=llvm %t.1.o %t.2.o -o %t.gen.2
10*7c3d14c8STreehugger RobotRUN: env LLVM_PROFILE_FILE=%t-icall2.profraw %run %t.gen.2
11*7c3d14c8STreehugger RobotRUN: llvm-profdata merge -o %t-icall2.profdata %t-icall2.profraw
12*7c3d14c8STreehugger Robot# The following test will be re-enabled once a compiler bug is fixed.
13*7c3d14c8STreehugger RobotRUN: %clangxx -O2 -Rpass=pgo-icall-prom  -fprofile-instr-use=%t-icall2.profdata -c -o %t.2.use.o  %S/Inputs/instrprof-icall-promo_2.cc  2>&1 | FileCheck %s
14*7c3d14c8STreehugger Robot
15*7c3d14c8STreehugger Robot
16*7c3d14c8STreehugger Robot# CHECK: Promote indirect call to
17*7c3d14c8STreehugger Robot
18