1
1
mirror of https://github.com/rui314/mold.git synced 2024-10-04 16:48:04 +03:00
mold/test/elf/relax.sh
Rui Ueyama c054e3d197 Fix CI
2022-05-11 17:23:29 +08:00

93 lines
2.7 KiB
Bash
Executable File

#!/bin/bash
export LC_ALL=C
set -e
CC="${TEST_CC:-cc}"
CXX="${TEST_CXX:-c++}"
GCC="${TEST_GCC:-gcc}"
GXX="${TEST_GXX:-g++}"
OBJDUMP="${OBJDUMP:-objdump}"
MACHINE="${MACHINE:-$(uname -m)}"
testname=$(basename "$0" .sh)
echo -n "Testing $testname ... "
cd "$(dirname "$0")"/../..
t=out/test/elf/$testname
mkdir -p $t
# Skip if target is not x86-64
[ $MACHINE = x86_64 ] || { echo skipped; exit; }
cat <<EOF | $CC -o $t/a.o -c -x assembler -Wa,-mrelax-relocations=yes -
.globl bar
bar:
mov foo@GOTPCREL(%rip), %rax
mov foo@GOTPCREL(%rip), %rcx
mov foo@GOTPCREL(%rip), %rdx
mov foo@GOTPCREL(%rip), %rbx
mov foo@GOTPCREL(%rip), %rbp
mov foo@GOTPCREL(%rip), %rsi
mov foo@GOTPCREL(%rip), %rdi
mov foo@GOTPCREL(%rip), %r8
mov foo@GOTPCREL(%rip), %r9
mov foo@GOTPCREL(%rip), %r10
mov foo@GOTPCREL(%rip), %r11
mov foo@GOTPCREL(%rip), %r12
mov foo@GOTPCREL(%rip), %r13
mov foo@GOTPCREL(%rip), %r14
mov foo@GOTPCREL(%rip), %r15
call *foo@GOTPCREL(%rip)
jmp *foo@GOTPCREL(%rip)
EOF
cat <<EOF | $CC -o $t/b.o -c -xc -
void foo() {}
int main() {
return 0;
}
EOF
$CC -B. -o $t/exe $t/a.o $t/b.o
$OBJDUMP -d $t/exe | grep -A20 '<bar>:' > $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%rax .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%rcx .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%rdx .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%rbx .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%rbp .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%rsi .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%rdi .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%r8 .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%r9 .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%r10 .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%r11 .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%r12 .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%r13 .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%r14 .*<foo>' $t/log
grep -Eq 'lea \s*0x.+\(%rip\),%r15 .*<foo>' $t/log
grep -Eq 'call.*<foo>' $t/log
grep -Eq 'jmp.*<foo>' $t/log
$CC -B. -o $t/exe $t/a.o $t/b.o -Wl,-no-relax
$OBJDUMP -d $t/exe | grep -A20 '<bar>:' > $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%rax' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%rcx' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%rdx' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%rbx' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%rbp' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%rsi' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%rdi' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%r8 ' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%r9 ' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%r10' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%r11' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%r12' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%r13' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%r14' $t/log
grep -Eq 'mov \s*0x.+\(%rip\),%r15' $t/log
grep -Eq 'call.*\(%rip\)' $t/log
grep -Eq 'jmp.*\(%rip\)' $t/log
echo OK