Handbook
Glossary
%fill-vector ( dst rep -- )
Vocabulary
cpu
.
architecture
Inputs
dst
an
object
rep
an
object
Outputs
None
Definition
USING:
system
;
IN:
cpu.architecture
HOOK:
%fill-vector
cpu
( dst rep -- )
Methods
USING:
cpu.architecture
kernel
system
;
M:
arm.64
%fill-vector
2drop
;
USING:
combinators
cpu.architecture
cpu.x86.assembler
kernel
system
;
M:
x86
%fill-vector
{
{
double-2-rep
[
dup
[
XORPS
]
[
CMPEQPS
]
2bi
]
}
{
float-4-rep
[
dup
[
XORPS
]
[
CMPEQPS
]
2bi
]
}
[
drop
dup
PCMPEQB
]
}
case
;