(%move-vector-mask) ( dst src rep -- mask )


Vocabulary
cpu.x86.sse

Definition
USING: combinators cpu.architecture cpu.x86.assembler kernel ;

IN: cpu.x86.sse

: (%move-vector-mask) ( dst src rep -- mask )
{
{ double-2-rep [ MOVMSKPS 15 ] }
{ float-4-rep [ MOVMSKPS 15 ] }
[ drop PMOVMSKB 65535 ]
} case ;