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
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
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
Doesn't that leave the stack unbalanced? Four PUSHes and no POPs.
An almost valid point :thumbsup:
Look, I'm not gonna download a .zip file every time I see something posted here. Life's too short for that.
Maybe you shouldn't waste so much of your precious life time on thread drift :cool:
Thanks Cache gb,jochen :thumbsup:
Thread drift in forum in Sydney = Sydney drift, instead of Tokyo drift? :biggrin:
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.