Handbook
Glossary
%compare-int-vector ( dst src rep cc -- )
Vocabulary
cpu
.
x86
.
sse
Inputs
dst
an
object
src
an
object
rep
an
object
cc
an
object
Outputs
None
Definition
USING:
combinators
compiler.cfg.comparisons
cpu.x86.assembler
;
IN:
cpu.x86.sse
:
%compare-int-vector
( dst src rep cc -- )
{
{
cc=
[
[
PCMPEQQ
]
[
PCMPEQD
]
[
PCMPEQW
]
[
PCMPEQB
]
(%compare-int-vector)
]
}
{
cc>
[
[
PCMPGTQ
]
[
PCMPGTD
]
[
PCMPGTW
]
[
PCMPGTB
]
(%compare-int-vector)
]
}
}
case
;