Handbook
Glossary
%min ( dst src1 src2 -- )
Vocabulary
cpu
.
architecture
Inputs
dst
an
object
src1
an
object
src2
an
object
Outputs
None
Definition
USING:
system
;
IN:
cpu.architecture
HOOK:
%min
cpu
( dst src1 src2 -- )
Methods
USING:
cpu.architecture
cpu.arm.64.assembler
kernel
system
;
M:
arm.64
%min
2dup
CMPr
rot
LT
CSEL
;
USING:
cpu.architecture
cpu.x86
cpu.x86.assembler
kernel
system
;
M:
x86
%min
int-rep
two-operand
[
CMP
]
[
CMOVG
]
2bi
;