factor/basis/compiler/cfg/intrinsics/fixnum/fixnum-docs.factor

12 lines
546 B
Factor
Raw Normal View History

USING: compiler.cfg.instructions help.markup help.syntax layouts math ;
2015-04-29 22:51:58 -04:00
IN: compiler.cfg.intrinsics.fixnum
HELP: fixnum*overflow
{ $values { "x" fixnum } { "y" fixnum } { "z" bignum } }
{ $description "Word called to perform a fixnum multiplication when the product overflows the value storable in " { $link cell } "." }
{ $see-also most-negative-fixnum most-positive-fixnum } ;
2015-04-29 22:51:58 -04:00
HELP: emit-fixnum-comparison
{ $values { "cc" "comparison symbol" } }
{ $description "Emits a " { $link ##compare-integer } " instruction to the make sequence." } ;