The MASM Forum

General => The Campus => Topic started by: daydreamer on August 31, 2023, 02:30:29 PM

Title: alternative to movd
Post by: daydreamer on August 31, 2023, 02:30:29 PM
Hi
SSE xmm regs<> gp regs is simple use Movd
But fpu regs <> gp regs you need go thru memory storage
My idea is to try this
Push eax
; after fpu calculation
Fistp [esp+something ]
;want to store result on stack so
Pop eax ;eax = [esp+something ]
But I have too little experience with stack tricks


Title: Re: alternative to movd
Post by: Caché GB on August 31, 2023, 03:08:31 PM
Hi daydreamer

Try this.

local  MyReal4:real4

            mov  eax, FLT4(123.456)
           push  eax
            fld  dword ptr[esp]

           fchs

           fstp  dword ptr[esp]
            pop  eax

            mov  MyReal4, eax
Title: Re: alternative to movd
Post by: jj2007 on August 31, 2023, 07:14:07 PM
Here's one more, pure Masm32 SDK code (full source attached):

  rdtsc
  push edx
  push eax
  fild qword ptr [esp]
  invoke Sleep, 1000
  rdtsc
  push edx
  push eax
  fild qword ptr [esp]
  fsubr
  fdiv FP8(1048576.0)    ; ->mega
  fistp result
Title: Re: alternative to movd
Post by: NoCforMe on August 31, 2023, 07:21:56 PM
Doesn't that leave the stack unbalanced? Four PUSHes and no POPs.
Title: Re: alternative to movd
Post by: jj2007 on August 31, 2023, 07:35:31 PM
An almost valid point :thumbsup:
Title: Re: alternative to movd
Post by: NoCforMe on August 31, 2023, 08:41:48 PM
Look, I'm not gonna download a .zip file every time I see something posted here. Life's too short for that.
Title: Re: alternative to movd
Post by: jj2007 on August 31, 2023, 09:18:42 PM
Maybe you shouldn't waste so much of your precious life time on thread drift :cool:
Title: Re: alternative to movd
Post by: daydreamer on September 01, 2023, 12:27:08 PM
Thanks Cache gb,jochen  :thumbsup:
Thread drift in forum in Sydney = Sydney drift, instead of Tokyo drift?  :biggrin:

Title: Re: alternative to movd
Post by: NoCforMe on September 02, 2023, 03:50:55 AM
Quote from: daydreamer on September 01, 2023, 12:27:08 PMThread drift in forum in Sydney = Sydney drift, instead of Tokyo drift?  :biggrin:

Continental drift. Plate tectonics.