From: Tom Musta <tommusta@gmail.com>
To: qemu-devel@nongnu.org, qemu-ppc@nongnu.org
Cc: Tom Musta <tommusta@gmail.com>, agraf@suse.de
Subject: [Qemu-devel] [PATCH 0/9] target-ppc: Rudimentary Support for Transactional Memory
Date: Thu, 18 Dec 2014 10:34:28 -0600 [thread overview]
Message-ID: <1418920477-11669-1-git-send-email-tommusta@gmail.com> (raw)
This patch series introduces rudimentary support for the Transactional Memory
(TM) feature of Power ISA V2.07. In a nutshell, software uses the feature by
initiating a transaction via the tbegin instruction. Hardware then accumulates
storage accesses until the transaction is committed via the tend instruction).
At this point, either the instruction completes and all storage accesses are
atomic with respect to other processors; or the transaction fails and processor
state reverts to the point of tbegin. Transaction success or failure is recorded
in CR[0] and the instruction immediately following tbegin is expected to inspect
this field and provide an error path to properly handle failure.
Accurately emulating such a feature in QEMU is quite difficult. Instead, the
approach taken here simply fails the transaction at the point of tbegin and
thus immediately takes software down the error handlling path. As such, this can
be considered a toleration mode for any software that utilizes the TM feature.
Valgrind has taken a similar approach. There are no immediate plans to implement
a more sophisticated model.
Currently, Power8 is the only Power processor that supports TM.
Tom Musta (9):
target-ppc: Introduce Instruction Type for Transactional Memory
target-ppc: Introduce Feature Flag for Transactional Memory
target-ppc: Introduce tm_enabled Bit to CPU State
target-ppc: Power8 Supports Transactional Memory
target-ppc: Introduce TEXASRU Bit Fields
target-ppc: Introduce tbegin
target-ppc: Introduce TM Noops
target-ppc: Introduce tcheck
target-ppc: Introduce Privileged TM Noops
target-ppc/cpu.h | 26 ++++++++++-
target-ppc/helper.h | 2 +
target-ppc/mem_helper.c | 22 ++++++++
target-ppc/translate.c | 113 +++++++++++++++++++++++++++++++++++++++++++
target-ppc/translate_init.c | 5 +-
5 files changed, 165 insertions(+), 3 deletions(-)
next reply other threads:[~2014-12-18 16:36 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-12-18 16:34 Tom Musta [this message]
2014-12-18 16:34 ` [Qemu-devel] [PATCH 1/9] target-ppc: Introduce Instruction Type for Transactional Memory Tom Musta
2014-12-18 16:34 ` [Qemu-devel] [PATCH 2/9] target-ppc: Introduce Feature Flag " Tom Musta
2014-12-18 16:34 ` [Qemu-devel] [PATCH 3/9] target-ppc: Introduce tm_enabled Bit to CPU State Tom Musta
2014-12-18 16:34 ` [Qemu-devel] [PATCH 4/9] target-ppc: Power8 Supports Transactional Memory Tom Musta
2014-12-18 16:34 ` [Qemu-devel] [PATCH 5/9] target-ppc: Introduce TEXASRU Bit Fields Tom Musta
2014-12-18 17:02 ` Alexander Graf
2014-12-18 18:10 ` Tom Musta
2014-12-18 18:29 ` Alexander Graf
2014-12-18 18:41 ` Tom Musta
2014-12-18 16:34 ` [Qemu-devel] [PATCH 6/9] target-ppc: Introduce tbegin Tom Musta
2014-12-18 16:34 ` [Qemu-devel] [PATCH 7/9] target-ppc: Introduce TM Noops Tom Musta
2014-12-18 16:34 ` [Qemu-devel] [PATCH 8/9] target-ppc: Introduce tcheck Tom Musta
2014-12-18 16:34 ` [Qemu-devel] [PATCH 9/9] target-ppc: Introduce Privileged TM Noops Tom Musta
2014-12-19 10:20 ` Fam Zheng
2014-12-20 21:22 ` Tom Musta
2014-12-18 22:52 ` [Qemu-devel] [PATCH 0/9] target-ppc: Rudimentary Support for Transactional Memory Alexander Graf
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1418920477-11669-1-git-send-email-tommusta@gmail.com \
--to=tommusta@gmail.com \
--cc=agraf@suse.de \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).