6c82cf3dec
Upstream commit: 2fe2af88abd13ae5636881da2e26f461ecb7dfb5 - i386: Remove broken CAN_USE_REGISTER_ASM_EBP (bug 28771) - Update syscall lists for Linux 5.15 - powerpc: Fix unrecognized instruction errors with recent GCC - timezone: test-case for BZ #28707 - timezone: handle truncated timezones from tzcode-2021d and later (BZ #28707) - Fix subscript error with odd TZif file [BZ #28338] - AArch64: Check for SVE in ifuncs [BZ #28744] - intl/plural.y: Avoid conflicting declarations of yyerror and yylex - Linux: Fix 32-bit vDSO for clock_gettime on powerpc32 - linux: Add sparck brk implementation - Update sparc libm-test-ulps - Update hppa libm-test-ulps - riscv: align stack before calling _dl_init [BZ #28703] - riscv: align stack in clone [BZ #28702] - powerpc64[le]: Allocate extra stack frame on syscall.S - elf: Fix tst-cpu-features-cpuinfo for KVM guests on some AMD systems [BZ #28704] - nss: Use "files dns" as the default for the hosts database (bug 28700) - arm: Guard ucontext _rtld_global_ro access by SHARED, not PIC macro - mips: increase stack alignment in clone to match the ABI - mips: align stack in clone [BZ #28223]
40 lines
1.7 KiB
Diff
40 lines
1.7 KiB
Diff
commit e64235ff4266e87b20505101877fe57350ab69ab
|
|
Author: Paul A. Clarke <pc@us.ibm.com>
|
|
Date: Tue Sep 14 13:13:33 2021 -0500
|
|
|
|
powerpc: Fix unrecognized instruction errors with recent GCC
|
|
|
|
Recent binutils commit b25f942e18d6ecd7ec3e2d2e9930eb4f996c258a
|
|
changes the behavior of `.machine` directives to override, rather
|
|
than augment, the base CPU. This can result in _reduced_ functionality
|
|
when, for example, compiling for default machine "power8", but explicitly
|
|
asking for ".machine power5", which loses Altivec instructions.
|
|
|
|
In tst-ucontext-ppc64-vscr.c, while the instructions provoking the new
|
|
error messages are bracketed by ".machine power5", which is ostensibly
|
|
Power ISA 2.03 (POWER5), the POWER5 processor did not support the
|
|
VSX subset, so these instructions are not recognized as "power5".
|
|
|
|
Error: unrecognized opcode: `vspltisb'
|
|
Error: unrecognized opcode: `vpkuwus'
|
|
Error: unrecognized opcode: `mfvscr'
|
|
Error: unrecognized opcode: `stvx'
|
|
|
|
Manually adding the VSX subset via ".machine altivec" is sufficient.
|
|
|
|
Reviewed-by: Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
|
|
(cherry picked from commit 064b475a2e5662b6b3973fabf505eade86e61510)
|
|
|
|
diff --git a/sysdeps/powerpc/powerpc64/tst-ucontext-ppc64-vscr.c b/sysdeps/powerpc/powerpc64/tst-ucontext-ppc64-vscr.c
|
|
index 28c87fcef72bded6..d3fc4ab589f4752a 100644
|
|
--- a/sysdeps/powerpc/powerpc64/tst-ucontext-ppc64-vscr.c
|
|
+++ b/sysdeps/powerpc/powerpc64/tst-ucontext-ppc64-vscr.c
|
|
@@ -50,6 +50,7 @@ do_test (void)
|
|
/* Set SAT bit in VSCR register. */
|
|
asm volatile (".machine push;\n"
|
|
".machine \"power5\";\n"
|
|
+ ".machine altivec;\n"
|
|
"vspltisb %0,0;\n"
|
|
"vspltisb %1,-1;\n"
|
|
"vpkuwus %0,%0,%1;\n"
|