The MASM Forum

Miscellaneous => Miscellaneous Projects => Topic started by: HSE on October 23, 2017, 12:40:01 PM

Title: Backend change in SmplMath
Post by: HSE on October 23, 2017, 12:40:01 PM
Hi qWord!

I change between fpu and sse2:     ifidn abb_backend_entity, <FSLV_X86_FPU_ENTITY>
    fSlv8 = 0.85
    else           ; FSLV_X86_SSE2_FPU_ENTITY
    fSlv8 tempR8 = 0.85
    fld tempR8
    endif


It's not a good solution, for sure there is a better one.

I don't know if it's posible to force the backend in some program fragment.

Thanks.
Title: Re: Backend change in SmplMath
Post by: qWord on October 26, 2017, 08:52:34 AM
You can change the back-end in several ways, e.g. fSlvLoadBackEnd or fSlvSelectBackEnd (see doc). However, there is no push/pop semantic for that, so it is up to you keep track of current used back-end.


BTW: I've upload anew version that contains some bug fixes that had been collected over the years
https://sourceforge.net/projects/smplmath/files/2.0.2/SmplMath.rar/download
Title: Re: Backend change in SmplMath
Post by: HSE on October 26, 2017, 10:16:45 AM
Thanks very much. Next week I will try new version.
Title: Re: Backend change in SmplMath
Post by: HSE on November 05, 2017, 07:03:34 AM
Hi qWord!

Itsn't working.

If you remove  "FSBE_PROC %FSBE_LOAD_ARG,%fcmpx_factor,0"
then " !fTest([esi].Observation.weight_lb, NaN)" fail.

Title: Re: Backend change in SmplMath
Post by: qWord on November 05, 2017, 08:50:22 AM
HSE,

please show a small test case reproducing the unexpected behavior. Regardless that, testing if some value is negligible in compare to an NaN-Encoding (Not a Number) doesn't look right.

regards
Title: Re: Backend change in SmplMath
Post by: HSE on November 05, 2017, 09:54:10 AM
Yes, I was thinking to make something little because what I'm running now is unpublished.

And Yes, certainlly there is a better way to represent missing data, just I don't know it. But work very well with SmplMath 2.0.1 (except for fpu-stack imbalance, of course).
Title: Re: Backend change in SmplMath
Post by: qWord on November 05, 2017, 10:14:11 AM
There are the macros r4IsValid and r8IsValid that test the passed variable for NaN:
.if r4IsValid(myreal4)
; not a NaN
.elseif
; is NaN
.endif


Title: Re: Backend change in SmplMath
Post by: HSE on November 05, 2017, 11:53:17 AM
Perfect  :t

Perhaps more specific in this case:r8IsNotNaN macro mem64:req
IF @WordSize EQ 4
push DWORD ptr mem64+4
and DWORD ptr [esp],7FF80000h
xor DWORD ptr [esp],7FF80000h
lea esp,[esp+4]
ELSE
push rax
mov eax,DWORD ptr mem64+4
and eax,7FF80000h
xor eax,7FF80000h
pop rax
ENDIF
EXITM <!ZERO?>
endm

Thanks.