From: Sebastian Bauer <mail@sebastianbauer.info>
To: mail@sebastianbauer.info
Cc: qemu-devel@nongnu.org, david@gibson.dropbear.id.au,
agraf@suse.de, qemu-ppc@nongnu.org
Subject: [Qemu-devel] [RFC] ppc/tcg: send cpu to sleep for simple endless guest loops
Date: Thu, 28 Jun 2018 22:35:24 +0200 [thread overview]
Message-ID: <20180628203524.16221-1-mail@sebastianbauer.info> (raw)
When a branch instructions points to itself, only external events will
change the internally observable cpu state. This change will adjust the
behaviour of QEMU such that it sends the emulated cpu into a sleep state
if this case is detected.
The effect for guests whose idle task contains this endless loop (e.g.,
AmigaOS) is that they no longer hog the cpu of the host if they are idle.
Signed-off-by: Sebastian Bauer <mail@sebastianbauer.info>
---
This is a RFC because I'm not really familiar with the internals
of QEMU. There are probably other (better) ways to achive a similar
behaviour. For that reason I haven't tested the change thoroughly
yet, except that it produces the desired effect.
The patch will change the behaviour wrt. the instruction count which
is no longer the same. But I don't think that this will matter.
I will be grateful for any expressed concerns and suggestion of that
matter.
Patch is based on ppc-for-3.0.
---
target/ppc/helper.h | 2 ++
target/ppc/translate.c | 19 +++++++++++++++++++
2 files changed, 21 insertions(+)
diff --git a/target/ppc/helper.h b/target/ppc/helper.h
index d751f0e219..5f9b157417 100644
--- a/target/ppc/helper.h
+++ b/target/ppc/helper.h
@@ -799,3 +799,5 @@ DEF_HELPER_4(dscliq, void, env, fprp, fprp, i32)
DEF_HELPER_1(tbegin, void, env)
DEF_HELPER_FLAGS_1(fixup_thrm, TCG_CALL_NO_RWG, void, env)
+
+DEF_HELPER_1(sleep, void, env)
diff --git a/target/ppc/translate.c b/target/ppc/translate.c
index 3a215a1dc6..7db53003ea 100644
--- a/target/ppc/translate.c
+++ b/target/ppc/translate.c
@@ -3469,6 +3469,18 @@ static inline void gen_setlr(DisasContext *ctx, target_ulong nip)
tcg_gen_movi_tl(cpu_lr, nip);
}
+/* Helper for bringing the cpu to the sleep state so it will
+ * react only on "external" events */
+void helper_sleep(CPUPPCState *env)
+{
+ CPUState *cs = CPU(ppc_env_get_cpu(env));
+
+ cs->exception_index = EXCP_HALTED;
+ cs->exit_request = 1;
+ cs->halted = 1;
+ cpu_loop_exit(cs);
+}
+
/* b ba bl bla */
static void gen_b(DisasContext *ctx)
{
@@ -3483,6 +3495,13 @@ static void gen_b(DisasContext *ctx)
} else {
target = li;
}
+
+ if (target == ctx->base.pc_next - 4) {
+ /* Endless-loop, CPU can now react on "external" events only, so we
+ * simply go to sleep in order to save host processing resources */
+ gen_helper_sleep(cpu_env);
+ }
+
if (LK(ctx->opcode)) {
gen_setlr(ctx, ctx->base.pc_next);
}
--
2.18.0
next reply other threads:[~2018-06-28 20:35 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-28 20:35 Sebastian Bauer [this message]
2018-06-29 1:11 ` [Qemu-devel] [RFC] ppc/tcg: send cpu to sleep for simple endless guest loops David Gibson
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=20180628203524.16221-1-mail@sebastianbauer.info \
--to=mail@sebastianbauer.info \
--cc=agraf@suse.de \
--cc=david@gibson.dropbear.id.au \
--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).