diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2015-01-29 19:07:10 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2015-01-29 19:07:10 -0800 |
commit | a11dd30b417e1f48da573748fa4ab5fe09f0b212 (patch) | |
tree | 0f2a5852563b34861421aab59972698f0d4e6c40 /txr.1 | |
parent | d04250b7e3d809ded65b767f34baf398ca03eae1 (diff) | |
download | txr-a11dd30b417e1f48da573748fa4ab5fe09f0b212.tar.gz txr-a11dd30b417e1f48da573748fa4ab5fe09f0b212.tar.bz2 txr-a11dd30b417e1f48da573748fa4ab5fe09f0b212.zip |
* arith.c (make_ubignum): New static function.
(sign_extend): New function.
* eval.c (eval_init): Register sign-extend intrinsic.
* lib.h (sign_extend): Declared.
* txr.1: Documented sign-extend.
* tl.vim, txr.vim: Updated.
Diffstat (limited to 'txr.1')
-rw-r--r-- | txr.1 | 29 |
1 files changed, 29 insertions, 0 deletions
@@ -19252,6 +19252,35 @@ is truncated. The return value of .code logtrunc is always a non-negative integer. +.coNP Function @ sign-extend +.synb +.mets (sign-extend < value << bits ) +.syne +.desc +The +.code sign-extend +function first truncates the infinite-bit two's complement representation of +the integer +.meta value +to the specified number of bits, similarly to the +.code logtrunc +function. Then, this truncated value is regarded as a +.meta bits +wide two's complement integer. The value of this integer is +calculated and returned. + +.TP* Examples: + +.cblk + (sign-extend 127 8) -> 127 + (sign-extend 128 8) -> -128 + (sign-extend 129 8) -> -127 + (sign-extend 255 8) -> -1 + (sign-extend 256 8) -> 0 + (sign-extend -1 8) -> -1 + (sign-extend -255 8) -> 0 +.cble + .coNP Function @ ash .synb .mets (ash < value << bits ) |