2016-10-22 18:07:12 +00:00
|
|
|
/* -*-comment-start: "//";comment-end:""-*-
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes --- Maxwell Equations of Software
|
2017-11-21 18:22:26 +00:00
|
|
|
* Copyright © 2016,2017,2018 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
|
2016-10-22 18:07:12 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* This file is part of GNU Mes.
|
2016-10-22 18:07:12 +00:00
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is free software; you can redistribute it and/or modify it
|
2016-10-22 18:07:12 +00:00
|
|
|
* under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
2018-07-22 12:24:36 +00:00
|
|
|
* GNU Mes is distributed in the hope that it will be useful, but
|
2016-10-22 18:07:12 +00:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2018-07-22 12:24:36 +00:00
|
|
|
* along with GNU Mes. If not, see <http://www.gnu.org/licenses/>.
|
2016-10-22 18:07:12 +00:00
|
|
|
*/
|
|
|
|
|
2017-05-02 21:30:46 +00:00
|
|
|
#include <limits.h>
|
|
|
|
|
2018-01-25 06:00:48 +00:00
|
|
|
void
|
2019-05-18 11:27:42 +00:00
|
|
|
assert_number (char const *name, SCM x)
|
2018-01-25 06:00:48 +00:00
|
|
|
{
|
|
|
|
if (TYPE (x) != TNUMBER)
|
|
|
|
{
|
|
|
|
eputs (name);
|
|
|
|
error (cell_symbol_not_a_number, x);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
greater_p (SCM x) ///((name . ">") (arity . n))
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
{
|
2018-05-02 21:11:27 +00:00
|
|
|
if (x == cell_nil)
|
|
|
|
return cell_t;
|
|
|
|
assert_number ("greater_p", CAR (x));
|
2018-10-04 19:43:45 +00:00
|
|
|
long n = VALUE (CAR (x));
|
2018-05-02 21:11:27 +00:00
|
|
|
x = CDR (x);
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
while (x != cell_nil)
|
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("greater_p", CAR (x));
|
2018-04-05 19:35:31 +00:00
|
|
|
if (VALUE (car (x)) >= n)
|
|
|
|
return cell_f;
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
n = VALUE (car (x));
|
|
|
|
x = cdr (x);
|
|
|
|
}
|
|
|
|
return cell_t;
|
|
|
|
}
|
2016-10-22 18:07:12 +00:00
|
|
|
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
less_p (SCM x) ///((name . "<") (arity . n))
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
{
|
2018-05-02 21:11:27 +00:00
|
|
|
if (x == cell_nil)
|
|
|
|
return cell_t;
|
|
|
|
assert_number ("less_p", CAR (x));
|
2018-10-04 19:43:45 +00:00
|
|
|
long n = VALUE (CAR (x));
|
2018-05-02 21:11:27 +00:00
|
|
|
x = CDR (x);
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
while (x != cell_nil)
|
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("less_p", CAR (x));
|
2018-04-05 19:35:31 +00:00
|
|
|
if (VALUE (car (x)) <= n)
|
|
|
|
return cell_f;
|
mescc: Run module/base-0.mes.
* gc.c: New file.
* vector.c: New file.
* mes.c: Remove vector and gc functions, include vector.c, gc.c.
* GNUmakefile (mes.o): Add gc, vector dependencies.
* scaffold/mini-mes.c (eval_apply): Support primitive-load through
read_input_file.
(getenv_, open_input_file, current_input_port,
set_current_input_port force_output, exit_, values, arity_, xassq,
is_p, minus, plus, divide, modulo multiply, logior, ash): New function.
(mes_symbols): Add symbols %gnuc, %mesc.
* scaffold/mini-mes.c (): New functions.
* scaffold/b-0.mes: New file.
* scaffold/t-0.mes: New file.
2017-03-26 19:13:01 +00:00
|
|
|
n = VALUE (car (x));
|
|
|
|
x = cdr (x);
|
|
|
|
}
|
|
|
|
return cell_t;
|
|
|
|
}
|
2016-10-22 18:07:12 +00:00
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
is_p (SCM x) ///((name . "=") (arity . n))
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-04-05 19:35:31 +00:00
|
|
|
if (x == cell_nil)
|
|
|
|
return cell_t;
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("is_p", CAR (x));
|
2018-10-04 19:43:45 +00:00
|
|
|
long n = VALUE (CAR (x));
|
2016-10-22 18:07:12 +00:00
|
|
|
x = cdr (x);
|
2016-11-21 08:28:34 +00:00
|
|
|
while (x != cell_nil)
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-04-05 19:35:31 +00:00
|
|
|
if (VALUE (car (x)) != n)
|
|
|
|
return cell_f;
|
2016-10-22 18:07:12 +00:00
|
|
|
x = cdr (x);
|
|
|
|
}
|
2016-11-21 08:28:34 +00:00
|
|
|
return cell_t;
|
2016-10-22 18:07:12 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
minus (SCM x) ///((name . "-") (arity . n))
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("minus", CAR (x));
|
2018-10-04 19:43:45 +00:00
|
|
|
long n = VALUE (CAR (x));
|
2016-10-22 18:07:12 +00:00
|
|
|
x = cdr (x);
|
2016-11-21 08:28:34 +00:00
|
|
|
if (x == cell_nil)
|
2016-10-22 18:07:12 +00:00
|
|
|
n = -n;
|
2016-11-21 08:28:34 +00:00
|
|
|
while (x != cell_nil)
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("minus", CAR (x));
|
2016-11-21 08:30:59 +00:00
|
|
|
n -= VALUE (car (x));
|
2016-10-22 18:07:12 +00:00
|
|
|
x = cdr (x);
|
|
|
|
}
|
2016-12-23 15:22:19 +00:00
|
|
|
return MAKE_NUMBER (n);
|
2016-10-22 18:07:12 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
plus (SCM x) ///((name . "+") (arity . n))
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-10-04 19:43:45 +00:00
|
|
|
long n = 0;
|
2016-11-21 08:28:34 +00:00
|
|
|
while (x != cell_nil)
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("plus", CAR (x));
|
2016-11-21 08:30:59 +00:00
|
|
|
n += VALUE (car (x));
|
2016-10-22 18:07:12 +00:00
|
|
|
x = cdr (x);
|
|
|
|
}
|
2016-12-23 15:22:19 +00:00
|
|
|
return MAKE_NUMBER (n);
|
2016-10-22 18:07:12 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
divide (SCM x) ///((name . "/") (arity . n))
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-10-04 19:43:45 +00:00
|
|
|
long n = 1;
|
2018-04-05 19:35:31 +00:00
|
|
|
if (x != cell_nil)
|
|
|
|
{
|
|
|
|
assert_number ("divide", CAR (x));
|
|
|
|
n = VALUE (car (x));
|
|
|
|
x = cdr (x);
|
|
|
|
}
|
2016-11-21 08:28:34 +00:00
|
|
|
while (x != cell_nil)
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("divide", CAR (x));
|
2019-05-27 19:33:20 +00:00
|
|
|
long y = VALUE (CAR (x));
|
|
|
|
if (y == 0)
|
|
|
|
error (cstring_to_symbol ("divide-by-zero"), x);
|
2018-10-06 22:25:33 +00:00
|
|
|
if (!n)
|
|
|
|
break;
|
2019-05-27 19:33:20 +00:00
|
|
|
n /= y;
|
2016-10-22 18:07:12 +00:00
|
|
|
x = cdr (x);
|
|
|
|
}
|
2016-12-23 15:22:19 +00:00
|
|
|
return MAKE_NUMBER (n);
|
2016-10-22 18:07:12 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
SCM
|
|
|
|
modulo (SCM a, SCM b)
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("modulo", a);
|
|
|
|
assert_number ("modulo", b);
|
2018-10-04 19:43:45 +00:00
|
|
|
long x = VALUE (a);
|
2019-05-27 19:33:20 +00:00
|
|
|
long y = VALUE (b);
|
|
|
|
if (y == 0)
|
|
|
|
error (cstring_to_symbol ("divide-by-zero"), a);
|
2018-10-06 22:25:33 +00:00
|
|
|
while (x < 0)
|
2019-05-27 19:33:20 +00:00
|
|
|
x += y;
|
|
|
|
x = x ? x % y : 0;
|
2018-10-06 22:25:33 +00:00
|
|
|
return MAKE_NUMBER (x);
|
2016-10-22 18:07:12 +00:00
|
|
|
}
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
multiply (SCM x) ///((name . "*") (arity . n))
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-10-04 19:43:45 +00:00
|
|
|
long n = 1;
|
2016-11-21 08:28:34 +00:00
|
|
|
while (x != cell_nil)
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("multiply", CAR (x));
|
2016-11-21 08:30:59 +00:00
|
|
|
n *= VALUE (car (x));
|
2016-10-22 18:07:12 +00:00
|
|
|
x = cdr (x);
|
|
|
|
}
|
2016-12-23 15:22:19 +00:00
|
|
|
return MAKE_NUMBER (n);
|
2016-10-22 18:07:12 +00:00
|
|
|
}
|
|
|
|
|
2017-08-27 10:53:01 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
logand (SCM x) ///((arity . n))
|
2017-08-27 10:53:01 +00:00
|
|
|
{
|
2018-10-04 19:43:45 +00:00
|
|
|
long n = 0;
|
2017-08-27 10:53:01 +00:00
|
|
|
while (x != cell_nil)
|
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("multiply", CAR (x));
|
2017-08-27 10:53:01 +00:00
|
|
|
n &= VALUE (car (x));
|
|
|
|
x = cdr (x);
|
|
|
|
}
|
|
|
|
return MAKE_NUMBER (n);
|
|
|
|
}
|
|
|
|
|
2016-11-21 08:28:34 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
logior (SCM x) ///((arity . n))
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-10-04 19:43:45 +00:00
|
|
|
long n = 0;
|
2016-11-21 08:28:34 +00:00
|
|
|
while (x != cell_nil)
|
2016-10-22 18:07:12 +00:00
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("logior", CAR (x));
|
2016-11-21 08:30:59 +00:00
|
|
|
n |= VALUE (car (x));
|
2016-10-22 18:07:12 +00:00
|
|
|
x = cdr (x);
|
|
|
|
}
|
2016-12-23 15:22:19 +00:00
|
|
|
return MAKE_NUMBER (n);
|
2016-10-22 18:07:12 +00:00
|
|
|
}
|
2016-12-20 19:10:43 +00:00
|
|
|
|
2017-08-27 10:53:01 +00:00
|
|
|
SCM
|
|
|
|
lognot (SCM x)
|
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("lognot", x);
|
2018-10-04 19:43:45 +00:00
|
|
|
long n = ~VALUE (x);
|
2017-08-27 10:53:01 +00:00
|
|
|
return MAKE_NUMBER (n);
|
|
|
|
}
|
|
|
|
|
2018-05-16 20:30:08 +00:00
|
|
|
SCM
|
2019-05-18 11:27:42 +00:00
|
|
|
logxor (SCM x) ///((arity . n))
|
2018-05-16 20:30:08 +00:00
|
|
|
{
|
2018-10-04 19:43:45 +00:00
|
|
|
long n = 0;
|
2018-05-16 20:30:08 +00:00
|
|
|
while (x != cell_nil)
|
|
|
|
{
|
|
|
|
assert_number ("logxor", CAR (x));
|
|
|
|
n ^= VALUE (car (x));
|
|
|
|
x = cdr (x);
|
|
|
|
}
|
|
|
|
return MAKE_NUMBER (n);
|
|
|
|
}
|
|
|
|
|
2016-12-20 19:10:43 +00:00
|
|
|
SCM
|
|
|
|
ash (SCM n, SCM count)
|
|
|
|
{
|
2018-01-25 06:00:48 +00:00
|
|
|
assert_number ("ash", n);
|
|
|
|
assert_number ("ash", count);
|
2018-10-04 19:43:45 +00:00
|
|
|
long cn = VALUE (n);
|
|
|
|
long ccount = VALUE (count);
|
2016-12-23 15:22:19 +00:00
|
|
|
return MAKE_NUMBER ((ccount < 0) ? cn >> -ccount : cn << ccount);
|
2016-12-20 19:10:43 +00:00
|
|
|
}
|