From: Richard Henderson <richard.henderson@linaro.org>
To: Peter Maydell <peter.maydell@linaro.org>,
QEMU Developers <qemu-devel@nongnu.org>
Cc: Paolo Bonzini <pbonzini@redhat.com>,
"patches@linaro.org" <patches@linaro.org>,
Richard Henderson <rth@twiddle.net>
Subject: Re: [Qemu-devel] [PATCH 1/3] bswap: Add new stn_*_p() and ldn_*_p() memory access functions
Date: Tue, 12 Jun 2018 11:04:53 -1000 [thread overview]
Message-ID: <90cda899-27e4-01ae-250f-4b149e21f5c9@linaro.org> (raw)
In-Reply-To: <CAFEAcA9gcDabTxv7gaejegzq3bCuPkSNO6C5HRpaaJXVUk76tw@mail.gmail.com>
On 06/11/2018 07:52 AM, Peter Maydell wrote:
> On 11 June 2018 at 18:10, Peter Maydell <peter.maydell@linaro.org> wrote:
>> There's a common pattern in QEMU where a function needs to perform
>> a data load or store of an N byte integer in a particular endianness.
>> At the moment this is handled by doing a switch() on the size and
>> calling the appropriate ld*_p or st*_p function for each size.
>>
>> Provide a new family of functions ldn_*_p() and stn_*_p() which
>> take the size as an argument and do the switch() themselves.
>>
>> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
>> ---
>> include/exec/cpu-all.h | 4 +++
>> include/qemu/bswap.h | 52 +++++++++++++++++++++++++++++++++++++
>> docs/devel/loads-stores.rst | 15 +++++++++++
>> 3 files changed, 71 insertions(+)
>>
>> diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h
>> index a635f532f97..07ec3808342 100644
>> --- a/include/exec/cpu-all.h
>> +++ b/include/exec/cpu-all.h
>> @@ -133,6 +133,8 @@ static inline void tswap64s(uint64_t *s)
>> #define stq_p(p, v) stq_be_p(p, v)
>> #define stfl_p(p, v) stfl_be_p(p, v)
>> #define stfq_p(p, v) stfq_be_p(p, v)
>> +#define ldn_p(p, sz ldn_be_p(p, sz)
>
> Silly typo here -- missing ')'.
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
r~
next prev parent reply other threads:[~2018-06-12 21:05 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-06-11 17:10 [Qemu-devel] [PATCH 0/3] Add ldn_*_p() and stn_*_p() and use them in exec.c Peter Maydell
2018-06-11 17:10 ` [Qemu-devel] [PATCH 1/3] bswap: Add new stn_*_p() and ldn_*_p() memory access functions Peter Maydell
2018-06-11 17:43 ` Philippe Mathieu-Daudé
2018-06-11 17:51 ` Peter Maydell
2018-06-11 17:52 ` Peter Maydell
2018-06-12 21:04 ` Richard Henderson [this message]
2018-06-11 17:10 ` [Qemu-devel] [PATCH 2/3] exec.c: Don't accidentally sign-extend 4-byte loads in subpage_read() Peter Maydell
2018-06-12 20:58 ` Richard Henderson
2018-06-11 17:10 ` [Qemu-devel] [PATCH 3/3] exec.c: Use stn_p() and ldn_p() instead of explicit switches Peter Maydell
2018-06-11 17:43 ` Philippe Mathieu-Daudé
2018-06-12 20:58 ` Richard Henderson
2018-06-11 17:40 ` [Qemu-devel] [PATCH 0/3] Add ldn_*_p() and stn_*_p() and use them in exec.c no-reply
2018-06-11 19:00 ` no-reply
2018-06-15 10:17 ` Peter Maydell
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=90cda899-27e4-01ae-250f-4b149e21f5c9@linaro.org \
--to=richard.henderson@linaro.org \
--cc=patches@linaro.org \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/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).