From: "Alex Bennée" <alex.bennee@linaro.org>
To: Palmer Dabbelt <palmer@sifive.com>
Cc: alistair23@gmail.com, qemu-devel@nongnu.org,
qemu-riscv@nongnu.org, sagark@eecs.berkeley.edu,
Bastian Koppelmann <kbastian@mail.uni-paderborn.de>,
richard.henderson@linaro.org, armbru@redhat.com,
Alistair Francis <Alistair.Francis@wdc.com>
Subject: Re: [Qemu-riscv] [Qemu-devel] [PATCH v2 6/7] target/riscv: rationalise softfloat includes
Date: Wed, 14 Aug 2019 10:19:55 +0100 [thread overview]
Message-ID: <87y2zwm7d0.fsf@linaro.org> (raw)
In-Reply-To: <mhng-5f5b5d32-dff8-45cd-9644-dd40e502fca1@palmer-si-x1e>
Palmer Dabbelt <palmer@sifive.com> writes:
> On Fri, 09 Aug 2019 18:55:42 PDT (-0700), alistair23@gmail.com wrote:
>> On Fri, Aug 9, 2019 at 2:22 AM Alex Bennée <alex.bennee@linaro.org> wrote:
>>>
>>> We should avoid including the whole of softfloat headers in cpu.h and
>>> explicitly include it only where we will be calling softfloat
>>> functions. We can use the -types.h and -helpers.h in cpu.h for the few
>>> bits that are global.
>>>
>>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
>>> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
>>
>> I just reviewed v1, but this also applies to v2:
>>
>> Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
>
> Acked-by: Palmer Dabbelt <palmer@sifive.com>
>
> I'm assuming this are going in through another tree, along with the
> rest of the patch set.
It will yes..
>
>>
>> Alistair
>>
>>> ---
>>> target/riscv/cpu.c | 1 +
>>> target/riscv/cpu.h | 2 +-
>>> target/riscv/fpu_helper.c | 1 +
>>> 3 files changed, 3 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/target/riscv/cpu.c b/target/riscv/cpu.c
>>> index f8d07bd20ad..6d52f97d7c3 100644
>>> --- a/target/riscv/cpu.c
>>> +++ b/target/riscv/cpu.c
>>> @@ -27,6 +27,7 @@
>>> #include "qemu/error-report.h"
>>> #include "hw/qdev-properties.h"
>>> #include "migration/vmstate.h"
>>> +#include "fpu/softfloat-helpers.h"
>>>
>>> /* RISC-V CPU definitions */
>>>
>>> diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h
>>> index 0adb307f329..240b31e2ebb 100644
>>> --- a/target/riscv/cpu.h
>>> +++ b/target/riscv/cpu.h
>>> @@ -22,7 +22,7 @@
>>>
>>> #include "qom/cpu.h"
>>> #include "exec/cpu-defs.h"
>>> -#include "fpu/softfloat.h"
>>> +#include "fpu/softfloat-types.h"
>>>
>>> #define TCG_GUEST_DEFAULT_MO 0
>>>
>>> diff --git a/target/riscv/fpu_helper.c b/target/riscv/fpu_helper.c
>>> index b4f818a6465..0b79562a690 100644
>>> --- a/target/riscv/fpu_helper.c
>>> +++ b/target/riscv/fpu_helper.c
>>> @@ -21,6 +21,7 @@
>>> #include "qemu/host-utils.h"
>>> #include "exec/exec-all.h"
>>> #include "exec/helper-proto.h"
>>> +#include "fpu/softfloat.h"
>>>
>>> target_ulong riscv_cpu_get_fflags(CPURISCVState *env)
>>> {
>>> --
>>> 2.20.1
--
Alex Bennée
WARNING: multiple messages have this Message-ID (diff)
From: "Alex Bennée" <alex.bennee@linaro.org>
To: Palmer Dabbelt <palmer@sifive.com>
Cc: qemu-riscv@nongnu.org, sagark@eecs.berkeley.edu,
Bastian Koppelmann <kbastian@mail.uni-paderborn.de>,
richard.henderson@linaro.org, qemu-devel@nongnu.org,
armbru@redhat.com, Alistair Francis <Alistair.Francis@wdc.com>,
alistair23@gmail.com
Subject: Re: [Qemu-devel] [PATCH v2 6/7] target/riscv: rationalise softfloat includes
Date: Wed, 14 Aug 2019 10:19:55 +0100 [thread overview]
Message-ID: <87y2zwm7d0.fsf@linaro.org> (raw)
In-Reply-To: <mhng-5f5b5d32-dff8-45cd-9644-dd40e502fca1@palmer-si-x1e>
Palmer Dabbelt <palmer@sifive.com> writes:
> On Fri, 09 Aug 2019 18:55:42 PDT (-0700), alistair23@gmail.com wrote:
>> On Fri, Aug 9, 2019 at 2:22 AM Alex Bennée <alex.bennee@linaro.org> wrote:
>>>
>>> We should avoid including the whole of softfloat headers in cpu.h and
>>> explicitly include it only where we will be calling softfloat
>>> functions. We can use the -types.h and -helpers.h in cpu.h for the few
>>> bits that are global.
>>>
>>> Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
>>> Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
>>
>> I just reviewed v1, but this also applies to v2:
>>
>> Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
>
> Acked-by: Palmer Dabbelt <palmer@sifive.com>
>
> I'm assuming this are going in through another tree, along with the
> rest of the patch set.
It will yes..
>
>>
>> Alistair
>>
>>> ---
>>> target/riscv/cpu.c | 1 +
>>> target/riscv/cpu.h | 2 +-
>>> target/riscv/fpu_helper.c | 1 +
>>> 3 files changed, 3 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/target/riscv/cpu.c b/target/riscv/cpu.c
>>> index f8d07bd20ad..6d52f97d7c3 100644
>>> --- a/target/riscv/cpu.c
>>> +++ b/target/riscv/cpu.c
>>> @@ -27,6 +27,7 @@
>>> #include "qemu/error-report.h"
>>> #include "hw/qdev-properties.h"
>>> #include "migration/vmstate.h"
>>> +#include "fpu/softfloat-helpers.h"
>>>
>>> /* RISC-V CPU definitions */
>>>
>>> diff --git a/target/riscv/cpu.h b/target/riscv/cpu.h
>>> index 0adb307f329..240b31e2ebb 100644
>>> --- a/target/riscv/cpu.h
>>> +++ b/target/riscv/cpu.h
>>> @@ -22,7 +22,7 @@
>>>
>>> #include "qom/cpu.h"
>>> #include "exec/cpu-defs.h"
>>> -#include "fpu/softfloat.h"
>>> +#include "fpu/softfloat-types.h"
>>>
>>> #define TCG_GUEST_DEFAULT_MO 0
>>>
>>> diff --git a/target/riscv/fpu_helper.c b/target/riscv/fpu_helper.c
>>> index b4f818a6465..0b79562a690 100644
>>> --- a/target/riscv/fpu_helper.c
>>> +++ b/target/riscv/fpu_helper.c
>>> @@ -21,6 +21,7 @@
>>> #include "qemu/host-utils.h"
>>> #include "exec/exec-all.h"
>>> #include "exec/helper-proto.h"
>>> +#include "fpu/softfloat.h"
>>>
>>> target_ulong riscv_cpu_get_fflags(CPURISCVState *env)
>>> {
>>> --
>>> 2.20.1
--
Alex Bennée
next prev parent reply other threads:[~2019-08-14 9:20 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-08-09 9:19 [Qemu-devel] [PATCH v2 0/7] softfloat includes cleanup Alex Bennée
2019-08-09 9:19 ` [Qemu-devel] [PATCH v2 1/7] fpu: move LIT64 helper to softfloat-types Alex Bennée
2019-08-09 9:19 ` [Qemu-devel] [PATCH v2 2/7] fpu: move inline helpers into a separate header Alex Bennée
2019-08-09 9:19 ` [Qemu-devel] [PATCH v2 3/7] fpu: make softfloat-macros "self-contained" Alex Bennée
2019-08-09 9:19 ` [Qemu-devel] [PATCH v2 4/7] fpu: rename softfloat-specialize.h -> .inc.c Alex Bennée
2019-08-09 9:19 ` [Qemu-devel] [PATCH v2 5/7] target/mips: rationalise softfloat includes Alex Bennée
2019-08-09 10:20 ` Aleksandar Markovic
2019-08-09 9:19 ` [Qemu-riscv] [PATCH v2 6/7] target/riscv: " Alex Bennée
2019-08-09 9:19 ` [Qemu-devel] " Alex Bennée
2019-08-10 1:55 ` [Qemu-riscv] " Alistair Francis
2019-08-10 1:55 ` Alistair Francis
2019-08-13 23:30 ` [Qemu-riscv] " Palmer Dabbelt
2019-08-13 23:30 ` Palmer Dabbelt
2019-08-14 9:19 ` Alex Bennée [this message]
2019-08-14 9:19 ` Alex Bennée
2019-08-09 9:19 ` [Qemu-devel] [PATCH v2 7/7] targets (various): use softfloat-helpers.h where we can Alex Bennée
2019-08-09 9:34 ` [Qemu-devel] [PATCH v2 0/7] softfloat includes cleanup Philippe Mathieu-Daudé
2019-08-09 9:36 ` no-reply
2019-08-09 9:47 ` no-reply
2019-08-09 10:00 ` no-reply
2019-08-09 10:13 ` no-reply
2019-08-09 10:34 ` no-reply
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=87y2zwm7d0.fsf@linaro.org \
--to=alex.bennee@linaro.org \
--cc=Alistair.Francis@wdc.com \
--cc=alistair23@gmail.com \
--cc=armbru@redhat.com \
--cc=kbastian@mail.uni-paderborn.de \
--cc=palmer@sifive.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=sagark@eecs.berkeley.edu \
/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.