This patches changes all references to '|&' in bolt tests to instead use the '2>&1 |' syntax for better consistency across testing and so that lit's internal shell can be used to run these tests. This addresses a suggestion made in the comments of this RFC: https://discourse.llvm.org/t/rfc-enabling-the-lit-internal-shell-by-default/80179. Fixes https://github.com/llvm/llvm-project/issues/102388
41 lines
1.0 KiB
ArmAsm
41 lines
1.0 KiB
ArmAsm
# REQUIRES: system-linux
|
|
|
|
## Check that BOLT correctly parses and updates the Linux kernel .smp_locks
|
|
## section.
|
|
|
|
# RUN: llvm-mc -filetype=obj -triple x86_64-unknown-unknown %s -o %t.o
|
|
# RUN: %clang %cflags -nostdlib %t.o -o %t.exe \
|
|
# RUN: -Wl,--image-base=0xffffffff80000000,--no-dynamic-linker,--no-eh-frame-hdr,--no-pie
|
|
# RUN: llvm-bolt %t.exe --print-normalized --keep-nops=0 --bolt-info=0 -o %t.out \
|
|
# RUN: 2>&1 | FileCheck %s
|
|
|
|
## Check the output of BOLT with NOPs removed.
|
|
|
|
# RUN: llvm-bolt %t.out -o %t.out.1 --print-normalized 2>&1 | FileCheck %s
|
|
|
|
# CHECK: BOLT-INFO: Linux kernel binary detected
|
|
# CHECK: BOLT-INFO: parsed 2 SMP lock entries
|
|
|
|
.text
|
|
.globl _start
|
|
.type _start, %function
|
|
_start:
|
|
nop
|
|
nop
|
|
.L0:
|
|
lock incl (%rdi)
|
|
# CHECK: lock {{.*}} SMPLock
|
|
.L1:
|
|
lock orb $0x40, 0x4(%rsi)
|
|
# CHECK: lock {{.*}} SMPLock
|
|
ret
|
|
.size _start, .-_start
|
|
|
|
.section .smp_locks,"a",@progbits
|
|
.long .L0 - .
|
|
.long .L1 - .
|
|
|
|
## Fake Linux Kernel sections.
|
|
.section __ksymtab,"a",@progbits
|
|
.section __ksymtab_gpl,"a",@progbits
|