Handbook
Glossary
%mul-vector ( dst src1 src2 rep -- )
Vocabulary
cpu
.
architecture
Inputs
dst
an
object
src1
an
object
src2
an
object
rep
an
object
Outputs
None
Definition
USING:
system
;
IN:
cpu.architecture
HOOK:
%mul-vector
cpu
( dst src1 src2 rep -- )
Methods
USING:
cpu.architecture
kernel
system
;
M:
arm.64
%mul-vector
4drop
;
USING:
combinators
cpu.architecture
cpu.x86
cpu.x86.assembler
kernel
system
;
M:
x86
%mul-vector
[
two-operand
]
keep
{
{
float-4-rep
[
MULPS
]
}
{
double-2-rep
[
MULPD
]
}
{
short-8-rep
[
PMULLW
]
}
{
ushort-8-rep
[
PMULLW
]
}
{
int-4-rep
[
PMULLD
]
}
{
uint-4-rep
[
PMULLD
]
}
}
case
;