I have this snippet of code:
@combinerows:
mov esi,eax
and edi,Row1Mask
and ebx,Row2Mask
or ebx,edi
//NewQ:= (Row1 and Row1Mask) or (Row2 and Row2Mask);
//Result:= NewQ xor q;
PUNPCKDQ mm4,mm5 <-- I get an error here
//mov eax,[eax].q
movd eax,mm4
//q:= NewQ;
mov [esi].q,ebx
xor eax,ebx //Return difference.
I get this error:
[Pascal Error] SDIMAIN.pas(718): E2003 Undeclared identifier: 'PUNPCKDQ'
Am I doing something wrong, or does Delphi 2007 not support a full set of MMX/SSE instructions?
DBcommand to insert the raw instruction bytes. – Rob Kennedy Jun 20 '11 at 21:44push ebxwithmovd mm0,ebxis slower, and amovq mm4,[eax]to load 2 integers in one go is slower than loading the two integers usingmov ebx,[eax] + mov ecx,[eax+4]Using the mmx registers as dummy stack does free upespfor nifty stuff though. That did work. – Johan Jun 20 '11 at 22:31