Handbook
Glossary
(%compare-int-vector) ( dst src rep int64 int32 int16 int8 -- )
Vocabulary
cpu
.
x86
.
sse
Inputs
dst
an
object
src
an
object
rep
an
object
int64
an
object
int32
an
object
int16
an
object
int8
an
object
Outputs
None
Definition
USING:
combinators
cpu.architecture
kernel
;
IN:
cpu.x86.sse
::
(%compare-int-vector)
( dst src rep int64 int32 int16 int8 -- )
rep
signed-rep
:>
rep' dst src rep'
{
{
longlong-2-rep
[
int64
call
]
}
{
int-4-rep
[
int32
call
]
}
{
short-8-rep
[
int16
call
]
}
{
char-16-rep
[
int8
call
]
}
}
case
;
inline