From: Richard Henderson <rth@twiddle.net>
To: Jani Kokkonen <Jani.Kokkonen@huawei.com>
Cc: Peter Maydell <peter.maydell@linaro.org>,
Claudio Fontana <claudio.fontana@huawei.com>,
"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH 1/1] tcg/aarch64: Implement tlb lookup fast path
Date: Thu, 20 Jun 2013 10:05:30 -0700 [thread overview]
Message-ID: <51C3365A.5000009@twiddle.net> (raw)
In-Reply-To: <51C2DF23.3020202@huawei.com>
On 06/20/2013 03:53 AM, Jani Kokkonen wrote:
> #ifndef _EXEC_ALL_H_
> #define _EXEC_ALL_H_
> -
> #include "qemu-common.h"
> -
Whitespace change?
> +/* Load and compare a TLB entry, emitting the conditional jump to the
> +slow path for the failure case, which will be patched later when finalizing
> +the slow pathClobbers X0,X1,X2,X3 and TMP. */
Indentation.
> + tcg_out_ldst(s, TARGET_LONG_BITS == 64 ? LDST_64 : LDST_32,
> + LDST_LD, TCG_REG_X0, TCG_REG_X2, tlb_offset & 0xfff);
> + tcg_out_ldst(s, LDST_64, LDST_LD, TCG_REG_X1, TCG_REG_X2,
> + (tlb_offset & 0xfff) + (offsetof(CPUTLBEntry, addend) -
> + (is_read ? offsetof(CPUTLBEntry, addr_read) :
> + offsetof(CPUTLBEntry, addr_write))));
I wonder if it wouldn't be clearer to not include the addr_read/write offset in
the passed tlb_offset value. So more like
int tlb_offset = offsetof(CPUArchState, tlb_table[mem_index])
tcg_out_ldst(s, TARGET_LONG_BITS == 64 ? LDST_64 : LDST_32,
LDST_LD, TCG_REG_X0, TCG_REG_X2,
(tlb_offset & 0xfff) +
(is_read ? offsetof(CPUTLBEntry, addr_read)
: offsetof(CPUTLBEntry, addr_write)));
tcg_out_ldst(s, LDST_64, LDST_LD, TCG_REG_X1, TCG_REG_X2,
(tlb_offset & 0xfff) + (offsetof(CPUTLBEntry, addend));
and then in the two callers pass down mem_index instead of tlb_offset.
In addition, the function could use some commentary.
r~
prev parent reply other threads:[~2013-06-20 17:05 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-20 10:48 [Qemu-devel] [PATCH 0/1] ARM aarch64 TCG tlb fast lookup Jani Kokkonen
2013-06-20 10:53 ` [Qemu-devel] [PATCH 1/1] tcg/aarch64: Implement tlb lookup fast path Jani Kokkonen
2013-06-20 14:58 ` Claudio Fontana
2013-06-20 16:55 ` Richard Henderson
2013-06-20 17:05 ` Richard Henderson [this message]
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=51C3365A.5000009@twiddle.net \
--to=rth@twiddle.net \
--cc=Jani.Kokkonen@huawei.com \
--cc=claudio.fontana@huawei.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.