[libc] Switch to using the generic `<gpuintrin.h>` implementations (#121810)
[llvm-project.git] / bolt / test / X86 / jump-table-footprint-reduction.test
blob290e585fc1b7501781282bd3eb24c40db18999ef
1 ## Checks that jump table footprint reduction optimization is reducing entry
2 ## sizes.
4 RUN: llvm-mc -filetype=obj -triple x86_64-unknown-unknown \
5 RUN:   %S/Inputs/jump_table_footprint_reduction.s -o %t.o
6 RUN: link_fdata %S/Inputs/jump_table_footprint_reduction.s %t.o %t.fdata --nmtool llvm-nm
7 RUN: llvm-strip --strip-unneeded %t.o
8 RUN: %clang %cflags -no-pie %t.o -o %t.exe -Wl,-q
9 RUN: llvm-bolt %t.exe --data %t.fdata -o %t.null \
10 RUN:   --jump-tables=move --jt-footprint-reduction --assume-abi --relocs \
11 RUN:   | FileCheck %s
13 CHECK: 100.00% of dynamic JT entries were reduced.
14 CHECK: 1 of 1 jump tables affected.
15 CHECK: 1 of 1 indirect jumps to JTs affected.
16 CHECK: 36 bytes saved.