Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-19 Thread Aleksandar Markovic
> From: Peter Maydell > Sent: Monday, March 11, 2019 3:48 PM > To: Aleksandar Markovic > Cc: Alex Bennée; Mateja Marjanovic; qemu-devel@nongnu.org; > aurel...@aurel32.net; Aleksandar Rikalo > Subject: Re: [PATCH] target/mips: Fix minor bug in FPU > > On Mon, 11 Mar 2019 at 14:35, Aleksandar Mark

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-19 Thread Aleksandar Markovic
> From: Mateja Marjanovic > Subject: Re: [PATCH] target/mips: Fix minor bug in FPU > > > On 18.3.19. 20:08, Aleksandar Markovic wrote: > >> From: Mateja Marjanovic > >> Subject: [PATCH] target/mips: Fix minor bug in FPU > >> > >> From: Mateja Marjanovic > >> > >> Wrong type of NaN was generate

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-19 Thread Mateja Marjanovic
On 18.3.19. 20:42, Aleksandar Markovic wrote: From: Mateja Marjanovic Subject: [PATCH] target/mips: Fix minor bug in FPU "v2" is missing in the subject line, and now v1 and v2 are incorrectly linked on mailing list website. I accidentally forgot to add v2 in the subject line. An isolated p

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-19 Thread Mateja Marjanovic
On 18.3.19. 20:08, Aleksandar Markovic wrote: From: Mateja Marjanovic Subject: [PATCH] target/mips: Fix minor bug in FPU From: Mateja Marjanovic Wrong type of NaN was generated for IEEE754-2008 by maddf and msubf insturctions when the arguments were inf, zero, nan or zero, inf, nan respecti

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-19 Thread Mateja Marjanovic
On 18.3.19. 19:55, Aleksandar Markovic wrote: Hi, Mateja, From: Mateja Marjanovic Subject: [PATCH] target/mips: Fix minor bug in FPU From: Mateja Marjanovic Wrong type of NaN was generated for IEEE754-2008 by maddf and msubf insturctions when the arguments were inf, zero, nan or zero, inf

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-19 Thread Mateja Marjanovic
On 18.3.19. 19:30, Peter Maydell wrote: On Mon, 18 Mar 2019 at 18:26, Mateja Marjanovic wrote: From: Mateja Marjanovic Wrong type of NaN was generated for IEEE754-2008 by maddf and msubf insturctions when the arguments were inf, zero, nan or zero, inf, nan respectively. Signed-off-by: Mate

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-18 Thread Aleksandar Markovic
> From: Mateja Marjanovic > Subject: [PATCH] target/mips: Fix minor bug in FPU "v2" is missing in the subject line, and now v1 and v2 are incorrectly linked on mailing list website. An isolated patch is perhaps better sent without cover letter - especially since your cover letter doesn't add an

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-18 Thread Aleksandar Markovic
Hi, Mateja, > From: Mateja Marjanovic > Subject: [PATCH] target/mips: Fix minor bug in FPU > > From: Mateja Marjanovic > > Wrong type of NaN was generated for IEEE754-2008 by maddf and > msubf insturctions when the arguments were inf, zero, nan or > zero, inf, nan respectively. > > Signed-off

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-18 Thread Aleksandar Markovic
> From: Mateja Marjanovic > Subject: [PATCH] target/mips: Fix minor bug in FPU > > From: Mateja Marjanovic > > Wrong type of NaN was generated for IEEE754-2008 by maddf and > msubf insturctions when the arguments were inf, zero, nan or > zero, inf, nan respectively. > "insturctions" -> "instr

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-18 Thread Peter Maydell
On Mon, 18 Mar 2019 at 18:26, Mateja Marjanovic wrote: > > From: Mateja Marjanovic > > Wrong type of NaN was generated for IEEE754-2008 by maddf and > msubf insturctions when the arguments were inf, zero, nan or > zero, inf, nan respectively. > > Signed-off-by: Mateja Marjanovic > @@ -519,6 +51

[Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-18 Thread Mateja Marjanovic
From: Mateja Marjanovic Wrong type of NaN was generated for IEEE754-2008 by maddf and msubf insturctions when the arguments were inf, zero, nan or zero, inf, nan respectively. Signed-off-by: Mateja Marjanovic --- fpu/softfloat-specialize.h | 24 1 file changed, 16 inse

[Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-18 Thread Mateja Marjanovic
From: Mateja Marjanovic Wrong type of NaN was generated for IEEE754-2008 by maddf and msubf insturctions when the arguments were inf, zero, nan or zero, inf, nan respectively. Mateja Marjanovic (1): target/mips: Fix minor bug in FPU fpu/softfloat-specialize.h | 24 1

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-11 Thread Alex Bennée
Aleksandar Markovic writes: >> From: Alex Bennée >> >> > Aleksandar Markovic writes: >> >> >> From: Peter Maydell >> >> Subject: Re: [PATCH] target/mips: Fix minor bug in FPU >> >> >> >> On Mon, 11 Mar 2019 at 11:52, Aleksandar Markovic >> >> wrote: >> >> > >> >> > > From: Mateja Marjanovic

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-11 Thread Peter Maydell
On Mon, 11 Mar 2019 at 14:35, Aleksandar Markovic wrote: > I'll doublecheck, but I think "infzero" here is a misnomer. > > The variable/argument "infzero" actually denotes the cases: > >- "Inf * Zero +/- NaN" >- "Inf * Zero +/- NaN" >- "Zero * Inf +/- NaN" >- "Zero * Inf +/- NaN" >

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-11 Thread Aleksandar Markovic
> From: Alex Bennée > > > Aleksandar Markovic writes: > > >> From: Peter Maydell > >> Subject: Re: [PATCH] target/mips: Fix minor bug in FPU > >> > >> On Mon, 11 Mar 2019 at 11:52, Aleksandar Markovic > >> wrote: > >> > > >> > > From: Mateja Marjanovic > >> > > Subject: [PATCH] target/mips:

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-11 Thread Alex Bennée
Aleksandar Markovic writes: >> From: Peter Maydell >> Subject: Re: [PATCH] target/mips: Fix minor bug in FPU >> >> On Mon, 11 Mar 2019 at 11:52, Aleksandar Markovic >> wrote: >> > >> > > From: Mateja Marjanovic >> > > Subject: [PATCH] target/mips: Fix minor bug in FPU >> > > >> > > Wrong typ

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-11 Thread Aleksandar Markovic
> From: Peter Maydell > Subject: Re: [PATCH] target/mips: Fix minor bug in FPU > > On Mon, 11 Mar 2019 at 11:52, Aleksandar Markovic > wrote: > > > > > From: Mateja Marjanovic > > > Subject: [PATCH] target/mips: Fix minor bug in FPU > > > > > > Wrong type of NaN was generated by maddf and msubf

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-11 Thread Peter Maydell
On Mon, 11 Mar 2019 at 11:52, Aleksandar Markovic wrote: > > > From: Mateja Marjanovic > > Subject: [PATCH] target/mips: Fix minor bug in FPU > > > > Wrong type of NaN was generated by maddf and msubf insturctions > > when the arguments were inf, zero, nan or zero, inf, nan > > respectively. > >

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-11 Thread Aleksandar Markovic
> From: Mateja Marjanovic > Subject: [PATCH] target/mips: Fix minor bug in FPU > > Wrong type of NaN was generated by maddf and msubf insturctions > when the arguments were inf, zero, nan or zero, inf, nan > respectively. I did the applicable tests on both pre-NaN2008 and NaN2008 MIPS hardware, a

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-07 Thread Alex Bennée
Aleksandar Markovic writes: >> From: Alex Bennée >> Subject: Re: [PATCH] target/mips: Fix minor bug in FPU >> >> Mateja Marjanovic writes: >> >> > From: Mateja Marjanovic >> > >> > Wrong type of NaN was generated by maddf and msubf insturctions >> > when the arguments were inf, zero, nan or

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-07 Thread Alex Bennée
Mateja Marjanovic writes: > From: Mateja Marjanovic > > Wrong type of NaN was generated by maddf and msubf insturctions > when the arguments were inf, zero, nan or zero, inf, nan > respectively. > > Signed-off-by: Mateja Marjanovic > --- > fpu/softfloat-specialize.h | 2 +- > 1 file changed,

Re: [Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-07 Thread Aleksandar Markovic
> From: Alex Bennée > Subject: Re: [PATCH] target/mips: Fix minor bug in FPU > > Mateja Marjanovic writes: > > > From: Mateja Marjanovic > > > > Wrong type of NaN was generated by maddf and msubf insturctions > > when the arguments were inf, zero, nan or zero, inf, nan > > respectively. > > > >

[Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-07 Thread Mateja Marjanovic
From: Mateja Marjanovic Wrong type of NaN was generated by maddf and msubf insturctions when the arguments were inf, zero, nan or zero, inf, nan respectively. Mateja Marjanovic (1): target/mips: Fix minor bug in FPU fpu/softfloat-specialize.h | 2 +- 1 file changed, 1 insertion(+), 1 deleti

[Qemu-devel] [PATCH] target/mips: Fix minor bug in FPU

2019-03-07 Thread Mateja Marjanovic
From: Mateja Marjanovic Wrong type of NaN was generated by maddf and msubf insturctions when the arguments were inf, zero, nan or zero, inf, nan respectively. Signed-off-by: Mateja Marjanovic --- fpu/softfloat-specialize.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpu