blob: 3681e47febeba4ce7fe428dc4f6a2eb13fa5922c [file] [log] [blame]
swissChilib3ca4fb2021-04-20 10:33:00 -07001#include "std.h"
swissChilif68671f2021-07-05 14:14:44 -07002#include "../plat/plat.h"
swissChilif3e7f182021-04-20 13:57:22 -07003#include <stdlib.h>
swissChilif68671f2021-07-05 14:14:44 -07004#include <string.h>
swissChilib3ca4fb2021-04-20 10:33:00 -07005
swissChili53472e82021-05-08 16:06:32 -07006value_t l_plus(value_t a, value_t b)
swissChilib3ca4fb2021-04-20 10:33:00 -07007{
swissChili53472e82021-05-08 16:06:32 -07008 if (!integerp(a) || !integerp(b))
swissChilib3ca4fb2021-04-20 10:33:00 -07009 return nil;
10
11 return (((a >> 2) + (b >> 2)) << 2) | INT_TAG;
12}
13
swissChili53472e82021-05-08 16:06:32 -070014value_t l_minus(value_t a, value_t b)
swissChili6aff2bb2021-04-20 15:02:53 -070015{
swissChili53472e82021-05-08 16:06:32 -070016 if (!integerp(a) || !integerp(b))
swissChili6aff2bb2021-04-20 15:02:53 -070017 return nil;
18
19 return (((a >> 2) - (b >> 2)) << 2) | INT_TAG;
20}
21
swissChili53472e82021-05-08 16:06:32 -070022value_t l_times(value_t a, value_t b)
swissChili6aff2bb2021-04-20 15:02:53 -070023{
swissChili53472e82021-05-08 16:06:32 -070024 if (!integerp(a) || !integerp(b))
swissChili6aff2bb2021-04-20 15:02:53 -070025 return nil;
26
27 return (((a >> 2) * (b >> 2)) << 2) | INT_TAG;
28}
29
swissChili53472e82021-05-08 16:06:32 -070030value_t l_divide(value_t a, value_t b)
swissChili6aff2bb2021-04-20 15:02:53 -070031{
swissChili53472e82021-05-08 16:06:32 -070032 if (!integerp(a) || !integerp(b))
swissChili6aff2bb2021-04-20 15:02:53 -070033 return nil;
34
35 return (((a >> 2) / (b >> 2)) << 2) | INT_TAG;
36}
37
swissChili53472e82021-05-08 16:06:32 -070038value_t l_printval(value_t val)
swissChili8fc5e2f2021-04-22 13:45:10 -070039{
swissChili53472e82021-05-08 16:06:32 -070040 printval(val, 0);
swissChili8fc5e2f2021-04-22 13:45:10 -070041 return nil;
42}
43
swissChiliddc97542021-07-04 11:47:42 -070044value_t l_apply(value_t func, value_t args)
45{
46 if (!closurep(func))
47 return nil;
48
49 if (!listp(args))
50 return nil;
51
52 return call_list_closure((struct closure *)(func ^ CLOSURE_TAG), args);
53}
54
swissChili15f1cae2021-07-05 19:08:47 -070055value_t l_nilp(value_t val)
56{
57 return nilp(val) ? t : nil;
58}
59
60void add_function(struct environment *env, char *name, void *func, struct args *args, enum namespace ns)
swissChilib3ca4fb2021-04-20 10:33:00 -070061{
swissChili53472e82021-05-08 16:06:32 -070062 struct function *last, *new = malloc(sizeof(struct function));
swissChilib3ca4fb2021-04-20 10:33:00 -070063
64 last = env->first;
65 new->prev = last;
66 new->name = name;
swissChili15f1cae2021-07-05 19:08:47 -070067 new->args = args;
swissChilib3ca4fb2021-04-20 10:33:00 -070068 new->code_ptr = func;
swissChili2999dd12021-07-02 14:19:53 -070069 new->namespace = ns;
swissChilib3ca4fb2021-04-20 10:33:00 -070070
swissChilif3e7f182021-04-20 13:57:22 -070071 env->first = new;
swissChilib3ca4fb2021-04-20 10:33:00 -070072}
73
swissChili15f1cae2021-07-05 19:08:47 -070074void add_c_function(struct environment *env, char *name, void *func, int nargs)
75{
76 struct args *args = new_args();
77 args->num_required = nargs;
78
79 add_function(env, name, func, args, NS_FUNCTION);
80}
81
82value_t l_elt(value_t seq, value_t i)
83{
84 if (!listp(seq) || !integerp(i))
85 return nil;
86
87 return elt(seq, i >> 2);
88}
89
swissChili53472e82021-05-08 16:06:32 -070090void load_std(struct environment *env)
swissChilib3ca4fb2021-04-20 10:33:00 -070091{
swissChili15f1cae2021-07-05 19:08:47 -070092 add_c_function(env, "+", l_plus, 2);
93 add_c_function(env, "-", l_minus, 2);
94 add_c_function(env, "*", l_times, 2);
95 add_c_function(env, "/", l_divide, 2);
swissChili8fc5e2f2021-04-22 13:45:10 -070096
swissChili15f1cae2021-07-05 19:08:47 -070097 add_c_function(env, "car", car, 1);
98 add_c_function(env, "cdr", cdr, 1);
99 add_c_function(env, "cons", cons, 2);
swissChili8fc5e2f2021-04-22 13:45:10 -0700100
swissChili15f1cae2021-07-05 19:08:47 -0700101 add_c_function(env, "print", l_printval, 1);
102 add_c_function(env, "apply", l_apply, 2);
swissChiliddc97542021-07-04 11:47:42 -0700103
swissChili15f1cae2021-07-05 19:08:47 -0700104 add_c_function(env, "nilp", l_nilp, 1);
105 add_c_function(env, "elt", l_elt, 2);
swissChilif68671f2021-07-05 14:14:44 -0700106
107 if (!load_library(env, "std"))
108 {
109 err("Could not load library `std`, make sure your $LISP_LIBRARY_PATH is correct.");
110 }
111}
112
113bool load_library(struct environment *env, char *name)
114{
115 char *lib_paths = getenv("LISP_LIBRARY_PATH");
116
117 if (!lib_paths)
118 lib_paths = "/lib/lisp";
119
120 for (char *p = strtok(lib_paths, ":"); p; p = strtok(NULL, ":"))
121 {
122 static char path[512];
123 snprintf(path, 512, "%s/%s.lisp", p, name);
124
125 if (file_exists(path))
126 {
127 return load(env, path);
128 }
129
130 snprintf(path, 512, "%s/%s/%s.lisp", p, name, name);
131
132 if (file_exists(path))
133 {
134 return load(env, path);
135 }
136 }
137
138 return false;
swissChilib3ca4fb2021-04-20 10:33:00 -0700139}