From: Thomas Huth <thuth@redhat.com>
To: David Hildenbrand <david@redhat.com>,
Gautam Agrawal <gautamnagrawal@gmail.com>,
qemu-devel@nongnu.org
Cc: qemu-s390x@nongnu.org, cohuck@redhat.com, richard.henderson@linaro.org
Subject: Re: [PATCH] tests/tcg/s390x: Test overflow conditions
Date: Mon, 30 May 2022 12:35:01 +0200 [thread overview]
Message-ID: <65ab5613-7fe8-038b-b011-eb16b8728a2c@redhat.com> (raw)
In-Reply-To: <9337daf2-57bf-d2ee-6731-8f10251fbf17@redhat.com>
Hi!
On 30/05/2022 11.50, David Hildenbrand wrote:
> On 27.05.22 12:11, Gautam Agrawal wrote:
>> Add a test to check for overflow conditions in s390x.
>> This patch is based on the following patches :
>> * https://git.qemu.org/?p=qemu.git;a=commitdiff;h=5a2e67a691501
>> * https://git.qemu.org/?p=qemu.git;a=commitdiff;h=fc6e0d0f2db51
>>
>> Signed-off-by: Gautam Agrawal <gautamnagrawal@gmail.com>
>> ---
>> tests/tcg/s390x/Makefile.target | 1 +
>> tests/tcg/s390x/overflow.c | 58 +++++++++++++++++++++++++++++++++
>> 2 files changed, 59 insertions(+)
>> create mode 100644 tests/tcg/s390x/overflow.c
>>
>> diff --git a/tests/tcg/s390x/Makefile.target b/tests/tcg/s390x/Makefile.target
>> index 3124172736..7f86de85b9 100644
>> --- a/tests/tcg/s390x/Makefile.target
>> +++ b/tests/tcg/s390x/Makefile.target
>> @@ -16,6 +16,7 @@ TESTS+=shift
>> TESTS+=trap
>> TESTS+=signals-s390x
>> TESTS+=branch-relative-long
>> +TESTS+=overflow
>>
>> VECTOR_TESTS=vxeh2_vs
>> VECTOR_TESTS+=vxeh2_vcvt
>> diff --git a/tests/tcg/s390x/overflow.c b/tests/tcg/s390x/overflow.c
>> new file mode 100644
>> index 0000000000..ea8a410b1a
>> --- /dev/null
>> +++ b/tests/tcg/s390x/overflow.c
>> @@ -0,0 +1,58 @@
>> +#include <stdio.h>
>> +
>> +int overflow_add_32(int x, int y)
>> +{
>> + int sum;
>> + return __builtin_add_overflow(x, y, &sum);
>> +}
>> +
>> +int overflow_add_64(long long x, long long y)
>> +{
>> + long sum;
>
> Just wondering, why "long long" in input and "long" in output?
It's been like this in the original test program that has been supplied in
https://gitlab.com/qemu-project/qemu/-/issues/616 and .../618 - but I agree
it likely makes more sense to use the same type everywhere (i.e. switch sum
from long to long long).
>> + return __builtin_add_overflow(x, y, &sum);
>> +}
>> +
>> +int overflow_sub_32(int x, int y)
>> +{
>> + int sum;
>> + return __builtin_sub_overflow(x, y, &sum);
>> +}
>> +
>> +int overflow_sub_64(long long x, long long y)
>> +{
>> + long sum;
>> + return __builtin_sub_overflow(x, y, &sum);
>
> nit: I'd call all local variables "ret" or "res".
Well, "sum" is not the return value here, so "ret" could be confusing, too.
"res" or "diff" might be a good choice here, though. Gautam, what do you think?
Thomas
next prev parent reply other threads:[~2022-05-30 10:37 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-27 10:11 [PATCH] tests/tcg/s390x: Test overflow conditions Gautam Agrawal
2022-05-27 13:51 ` Alex Bennée
2022-05-30 9:50 ` David Hildenbrand
2022-05-30 10:35 ` Thomas Huth [this message]
2022-05-30 19:20 ` Gautam Agrawal
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=65ab5613-7fe8-038b-b011-eb16b8728a2c@redhat.com \
--to=thuth@redhat.com \
--cc=cohuck@redhat.com \
--cc=david@redhat.com \
--cc=gautamnagrawal@gmail.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=richard.henderson@linaro.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).