qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Frediano Ziglio <freddy77@gmail.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: Frediano Ziglio <frediano.ziglio@huawei.com>,
	Paolo Bonzini <pbonzini@redhat.com>,
	Stefan Hajnoczi <stefanha@redhat.com>,
	Anthony Liguori <aliguori@amazon.com>,
	QEMU Developers <qemu-devel@nongnu.org>
Subject: Re: [Qemu-devel] [PATCH 2/2] qemu-common.h: optimise muldiv64 for x86_64 architecture
Date: Fri, 9 Jan 2015 15:41:08 +0000	[thread overview]
Message-ID: <CAHt6W4f9ijov-XDSjWWemCpggML6qcaihXpxYPO9vREQwoexvg@mail.gmail.com> (raw)
In-Reply-To: <CAFEAcA8KT2pM0tcLNm0hWyAPijvnoUxiOqUqQ4-mCR9q1pNT3A@mail.gmail.com>

2015-01-09 12:22 GMT+00:00 Peter Maydell <peter.maydell@linaro.org>:
> On 9 January 2015 at 11:25, Frediano Ziglio <freddy77@gmail.com> wrote:
>> As this platform can do multiply/divide using 128 bit precision use
>> these instructions to implement it.
>>
>> Signed-off-by: Frediano Ziglio <frediano.ziglio@huawei.com>
>> ---
>>  include/qemu-common.h | 14 +++++++++++++-
>>  1 file changed, 13 insertions(+), 1 deletion(-)
>>
>> diff --git a/include/qemu-common.h b/include/qemu-common.h
>> index f3033ae..880659d 100644
>> --- a/include/qemu-common.h
>> +++ b/include/qemu-common.h
>> @@ -370,11 +370,23 @@ static inline uint8_t from_bcd(uint8_t val)
>>  }
>>
>>  /* compute with 96 bit intermediate result: (a*b)/c */
>> -#ifdef CONFIG_INT128
>> +#if defined(CONFIG_INT128) && !defined(__x86_64__)
>>  static inline uint64_t muldiv64(uint64_t a, uint32_t b, uint32_t c)
>>  {
>>      return (__int128)a * b / c;
>>  }
>> +#elif defined(__x86_64__)
>> +/* Optimised x64 version. This assume that a*b/c fits in 64 bit */
>
> This assumption isn't necessarily true, and this implementation
> will dump core on overflow. For instance:
>
> Inputs: a = 8000000000000000 b = 80000000 c = 1
> fn muldiv64 result 0
> fn muldiv64_with_int128 result 0
> fn muldiv64_with_uint128 result 0
> Floating point exception (core dumped)
>
> -- PMM

Yes, I know, it was meant to be a precondition, not a math rule. Doing
some grep I'm not really sure this is valid in all cases however I
would ask if the truncation is handled correctly. Surely in some cases
the call to this function is not needed like in "muldiv64(1, tks,
usb_bit_time);" or in "muldiv64((int16_t) s->rtc.comp, 1000, 0x8000);"

Frediano

  reply	other threads:[~2015-01-09 15:41 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-09 11:25 [Qemu-devel] [PATCH 1/2] qemu-common.h: optimise muldiv64 if int128 is available Frediano Ziglio
2015-01-09 11:25 ` [Qemu-devel] [PATCH 2/2] qemu-common.h: optimise muldiv64 for x86_64 architecture Frediano Ziglio
2015-01-09 11:43   ` Paolo Bonzini
2015-01-09 12:09     ` Frediano Ziglio
2015-01-09 12:22   ` Peter Maydell
2015-01-09 15:41     ` Frediano Ziglio [this message]
2015-01-09 15:52       ` Peter Maydell
2015-01-09 16:08         ` Frediano Ziglio
2015-01-09 16:10           ` Peter Maydell
2015-01-09 12:03 ` [Qemu-devel] [PATCH 1/2] qemu-common.h: optimise muldiv64 if int128 is available Peter Maydell
2015-01-09 13:43   ` Frediano Ziglio

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=CAHt6W4f9ijov-XDSjWWemCpggML6qcaihXpxYPO9vREQwoexvg@mail.gmail.com \
    --to=freddy77@gmail.com \
    --cc=aliguori@amazon.com \
    --cc=frediano.ziglio@huawei.com \
    --cc=pbonzini@redhat.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=stefanha@redhat.com \
    /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).