Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / bolt / test / runtime / pie-exceptions-split.test
blob30f2d02bc9e10b68c01ec9dd79d1f342683e3822
1 ## Check that BOLT successfully splits C++ exception-handling code for
2 ## PIEs or shared objects.
4 REQUIRES: system-linux,bolt-runtime
6 RUN: %clangxx %cxxflags -pie -fPIC %p/Inputs/exceptions_split.cpp -Wl,-q -o %t
7 RUN: llvm-bolt %t -o %t.instr --instrument --instrumentation-file=%t.fdata
9 ## Record profile with invocation that does not throw exceptions.
10 RUN: %t.instr
12 RUN: llvm-bolt %t -o %t.bolt --data %t.fdata --reorder-blocks=ext-tsp \
13 RUN:   --split-functions --split-eh --print-after-lowering \
14 RUN:   --print-only=main 2>&1 | FileCheck %s
16 ## All calls to printf() should be from exception handling code that was
17 ## recorded as cold during the profile collection run. Check that the calls
18 ## are placed after the split point.
19 CHECK-NOT: printf
20 CHECK: HOT-COLD SPLIT POINT
21 CHECK:     printf
23 ## Verify the output still executes correctly when the exception path is being
24 ## taken.
25 RUN: %t.bolt arg1 arg2 arg3 2>&1 | FileCheck --check-prefix=CHECK-BOLTED %s
27 CHECK-BOLTED:      catch 2
28 CHECK-BOLTED-NEXT: catch 1