summaryrefslogtreecommitdiffstats
path: root/txr.1
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-01-29 19:07:10 -0800
committerKaz Kylheku <kaz@kylheku.com>2015-01-29 19:07:10 -0800
commita11dd30b417e1f48da573748fa4ab5fe09f0b212 (patch)
tree0f2a5852563b34861421aab59972698f0d4e6c40 /txr.1
parentd04250b7e3d809ded65b767f34baf398ca03eae1 (diff)
downloadtxr-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.129
1 files changed, 29 insertions, 0 deletions
diff --git a/txr.1 b/txr.1
index 3a7d7658..6787d532 100644
--- a/txr.1
+++ b/txr.1
@@ -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 )