Handbook
Glossary
%shl-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:
%shl-vector
cpu
( dst src1 src2 rep -- )
Methods
USING:
cpu.architecture
kernel
system
;
M:
arm.64
%shl-vector
4drop
;
USING:
combinators
cpu.architecture
cpu.x86
cpu.x86.assembler
kernel
system
;
M:
x86
%shl-vector
[
two-operand
]
keep
{
{
short-8-rep
[
PSLLW
]
}
{
ushort-8-rep
[
PSLLW
]
}
{
int-4-rep
[
PSLLD
]
}
{
uint-4-rep
[
PSLLD
]
}
{
longlong-2-rep
[
PSLLQ
]
}
{
ulonglong-2-rep
[
PSLLQ
]
}
}
case
;