Valgrind: PPC sync instruction L field should only be 2 bits in ISA 3.0
| Affects | Status | Importance | Assigned to | Milestone | |
|---|---|---|---|---|---|
| The Ubuntu-power-systems project |
Fix Released
|
Medium
|
Canonical Foundations Team | ||
| valgrind (Ubuntu) |
Fix Released
|
Undecided
|
Ubuntu on IBM Power Systems Bug Triage | ||
Bug Description
---Problem Description---
Valgrind, including version 3.16, mishandles the L field of the sync instruction.
More details are available at: https:/
This is a request to backport the following Valgrind patch from upstream:
commit fb6f7abcbc92506
Author: Carl Love <email address hidden>
Date: Tue Jun 9 10:42:03 2020 -0500
Power PC Fix extraction of the L field for sync instruction
The L field is currently a two bit[22:21] field in ISA 3.0. The size of the
L field has changed over time.
Currently the ISA 3.0 Valgrind sync instruction support code sets the
flag_L for the instruction L field to a five bit value that includes bits
that are marked reserved the sync instruction. This patch fixes the issue for ISA 3.0
to only setting flag_L the specified two bits.
Valgrind bugzilla: https:/
Machine Type = Reproducible on all POWER8 and POWER9 servers
---Steps to Reproduce---
$ cat test-sync.c
#define __SYNC(l) ".long (0x7c0004AC | ((" #l ") << 21))"
int
main ()
{
asm volatile(__SYNC(4) : : : "memory");
}
$ gcc test-sync.c && valgrind --tool=none ./a.out
==150073== Nulgrind, the minimal Valgrind tool
==150073== Copyright (C) 2002-2017, and GNU GPL'd, by Nicholas Nethercote.
==150073== Using Valgrind-3.13.0 and LibVEX; rerun with -h for copyright info
==150073== Command: ./a.out
==150073==
dis_memsync(
disInstr(ppc): unhandled instruction: 0x7C8004AC
==150073== valgrind: Unrecognised instruction at address 0x180788.
==150073== at 0x180788: main (in /home/tuliom/
==150073== Your program just tried to execute an instruction that Valgrind
==150073== did not recognise.
...
Userspace tool common name: Valgrind
The userspace tool has the following bit modes: 64-bit
Userspace deb: valgrind
| tags: | added: architecture-ppc64le bugnameltc-186284 severity-medium targetmilestone-inin18045 |
| Changed in ubuntu: | |
| assignee: | nobody → Ubuntu on IBM Power Systems Bug Triage (ubuntu-power-triage) |
| affects: | ubuntu → valgrind (Ubuntu) |
| Changed in ubuntu-power-systems: | |
| assignee: | nobody → Canonical Foundations Team (canonical-foundations) |
| status: | New → Confirmed |
| tags: | added: id-5eece09c4ff98f41a3ed6135 |
| Changed in ubuntu-power-systems: | |
| importance: | Undecided → Medium |
| no longer affects: | valgrind (Ubuntu Bionic) |
| tags: | added: fr-129 |

Status changed to 'Confirmed' because the bug affects multiple users.