2015-06-14 02:59:03 -04:00
|
|
|
USING: compiler.cfg.instructions help.markup help.syntax layouts math ;
|
2015-04-29 22:51:58 -04:00
|
|
|
IN: compiler.cfg.intrinsics.fixnum
|
|
|
|
|
2015-06-14 02:59:03 -04:00
|
|
|
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." } ;
|