Re: FastCode Reference Compilers



Hi

There are snippets like this:
___________________________________________
@MMXMoveLoop:
{Move a 16 byte block}
{$ifdef Delphi4or5}
{Delphi 5 compatibility}
db $0f, $6f, $04, $01
db $0f, $6f, $4c, $01, $08
db $0f, $7f, $04, $11
db $0f, $7f, $4c, $11, $08
{$else}
movq mm0, [eax + ecx]
movq mm1, [eax + ecx + 8]
movq [edx + ecx], mm0
movq [edx + ecx + 8], mm1
{$endif}

Okay Pierre has done his homework as always :-)

I've been using 4.74 with Delphi 5, and hope that you won't break that
compatibility. I note that you mention 4.78. I've just downloaded that
version, and it say it supports Delphi 4 or later, so I'll give it a
whirl.

I am not touching the FastMM4 code - God forbid that :-) It is the property
of Pierre and FastCode only validates and benchmarks it.

Best regards
Dennis Kjaer Christensen


.