summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Henderson2018-08-21 04:56:24 +0200
committerRichard Henderson2018-10-19 04:46:53 +0200
commit72d8ad67ba6d2fb71b84c884bd9f7e7817e2817d (patch)
tree7adfc4da526910d2be559e536363bd865be5b456
parenttarget/s390x: Split do_cdsg, do_lpq, do_stpq (diff)
downloadqemu-72d8ad67ba6d2fb71b84c884bd9f7e7817e2817d.tar.gz
qemu-72d8ad67ba6d2fb71b84c884bd9f7e7817e2817d.tar.xz
qemu-72d8ad67ba6d2fb71b84c884bd9f7e7817e2817d.zip
target/s390x: Skip wout, cout helpers if op helper does not return
When op raises an exception, it may not have initialized the output temps that would be written back by wout or cout. Reviewed-by: David Hildenbrand <david@redhat.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
-rw-r--r--target/s390x/translate.c20
1 files changed, 15 insertions, 5 deletions
diff --git a/target/s390x/translate.c b/target/s390x/translate.c
index 18861cd186..a7bd689337 100644
--- a/target/s390x/translate.c
+++ b/target/s390x/translate.c
@@ -1128,11 +1128,19 @@ struct DisasInsn {
const char *name;
+ /* Pre-process arguments before HELP_OP. */
void (*help_in1)(DisasContext *, DisasFields *, DisasOps *);
void (*help_in2)(DisasContext *, DisasFields *, DisasOps *);
void (*help_prep)(DisasContext *, DisasFields *, DisasOps *);
+
+ /*
+ * Post-process output after HELP_OP.
+ * Note that these are not called if HELP_OP returns DISAS_NORETURN.
+ */
void (*help_wout)(DisasContext *, DisasFields *, DisasOps *);
void (*help_cout)(DisasContext *, DisasOps *);
+
+ /* Implement the operation itself. */
DisasJumpType (*help_op)(DisasContext *, DisasOps *);
uint64_t data;
@@ -6125,11 +6133,13 @@ static DisasJumpType translate_one(CPUS390XState *env, DisasContext *s)
if (insn->help_op) {
ret = insn->help_op(s, &o);
}
- if (insn->help_wout) {
- insn->help_wout(s, &f, &o);
- }
- if (insn->help_cout) {
- insn->help_cout(s, &o);
+ if (ret != DISAS_NORETURN) {
+ if (insn->help_wout) {
+ insn->help_wout(s, &f, &o);
+ }
+ if (insn->help_cout) {
+ insn->help_cout(s, &o);
+ }
}
/* Free any temporaries created by the helpers. */