-
Notifications
You must be signed in to change notification settings - Fork 0
/
primitives.c
481 lines (449 loc) · 11.3 KB
/
primitives.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <assert.h>
#include "value.h"
#include "interpreter.h"
#include "talloc.h"
#include "linkedlist.h"
#include "parser.h"
#include "tokenizer.h"
#include "primitives.h"
// Function that binds scheme symbols to functions
void bind(char *name, Value *(*function)(struct Value *), Frame *frame) {
// Add primitive functions to top-level bindings list
Value *value = talloc(sizeof(Value));
value->type = PRIMITIVE_TYPE;
value->pf = function;
Value *nameVal = talloc(sizeof(Value));
nameVal->type = SYMBOL_TYPE;
nameVal->s = name;
frame->bindings = cons(nameVal, cons(value, frame->bindings));
}
// Function that evaluates the first (and only) argument of args to test if it is
// of NULL_TYPE
Value *primitiveNull(Value *args){
if(length(args) != 1){
printf("SYNTAX ERROR: Function null? takes one argument!\n");
texit(1);
}
Value *boo = makeNull();
boo->type = BOOL_TYPE;
if(car(args)->type == NULL_TYPE){
boo->i = 1;
} else {
boo->i = 0;
}
return boo;
}
// Function that evaluates whether the argument is a BOOL_TYPE
Value *primitiveBool(Value *args){
Value *isBool = makeNull();
isBool->type = BOOL_TYPE;
if(length(args) != 1){
printf("Syntax Error: boolean? needs 1 arguments but you had %i\n",
length(args));
texit(1);
}
isBool->i = (car(args)->type == BOOL_TYPE);
return isBool;
}
// Function that takes a bool and flips its value
Value *primitiveNot(Value *args){
Value *newBool;
if(car(args)->type == BOOL_TYPE){
newBool = makeNull();
newBool->type = BOOL_TYPE;
newBool->i = !(car(args)->i);
} else {
printf("Syntax Error: not takes a boolean as an argument.\n");
texit(1);
}
return newBool;
}
// Function which create a cons cell, with the first arg of args in the car and the
// second arg of args in the cdr.
Value *primitiveCons(Value *args){
if(length(args) != 2){
printf("Syntax Error: Cons needs 2 arguments but you had %i\n",
length(args));
texit(1);
}
return cons(car(args), car(cdr(args)));
}
// Function which returns the car of the cons cell contained in the first element of
// args
Value *primitiveCar(Value *args){
if(length(args) != 1){
printf("Syntax Error: Car needs 1 argument but you had %i\n",
length(args));
texit(1);
}
return car(car(args));
}
// Function which returns the cdr of the cons cell contained in the first element of
// args
Value *primitiveCdr(Value *args){
if(length(args) != 1){
printf("Syntax Error: Car needs 1 argument but you had %i\n",
length(args));
texit(1);
}
return cdr(car(args));
}
// Function that performs the modulo operator between the first and second dargs
Value *primitiveMod(Value *dargs){
if(length(dargs) != 2){
printf("Syntax Error: Modulo needs 2 arguments but you had %i\n"
, length(dargs));
texit(1);
}
if(car(dargs)->type != INT_TYPE && car(cdr(dargs))->type != INT_TYPE){
printf("Syntax Error: Modulo only accepts integers as arguments\n");
texit(1);
}
Value *val = makeNull();
val->type = INT_TYPE;
val->i = car(dargs)->i % car(cdr(dargs))->i;
return val;
}
// Function that adds an undetermined number of arguments
Value *primitiveAdd(Value *args){
double sum = 0;
int isDouble = 0;
while(args->type != NULL_TYPE){
if(car(args)->type == INT_TYPE){
sum += (double) car(args)->i;
}
else if(car(args)->type == DOUBLE_TYPE){
sum += car(args)->d;
isDouble = 1;
}
else{
printf("SYNTAX ERROR: you trying to add things that aren't numbers\n");
texit(1);
}
args = cdr(args);
}
Value *val = makeNull();
if(isDouble){
val->type = DOUBLE_TYPE;
val->d = sum;
return val;
}
val->type = INT_TYPE;
val->i = (int) sum;
return val;
}
// Function which takes the int located at the first arg of args and subtracts
// from it all ints in proceeding args.
Value *primitiveSubtract(Value *args){
if(length(args) != 2 ) {
printf("need 2 args for subtraction to work\n");
texit(1);
}
double diff;
if(car(args)->type == DOUBLE_TYPE){
diff = car(args)->d;
} else if(car(args)->type == INT_TYPE){
diff = (double) car(args)->i;
} else {
printf("SYNTAX ERROR: you trying to subtract things that aren't numbers :/\n");
texit(1);
}
int isDouble = 0;
if(car(cdr(args))->type == INT_TYPE){
diff -= car(cdr(args))->i;
}
else if(car(cdr(args))->type == DOUBLE_TYPE){
diff -= car(cdr(args))->d;
isDouble = 1;
}
else{
printf("SYNTAX ERROR: you be trying to subtract things that aren't numbers\n");
texit(1);
}
Value *valhalla = makeNull();
if(isDouble){
valhalla->type = DOUBLE_TYPE;
valhalla->d = diff;
}else{
valhalla->type = INT_TYPE;
valhalla->i = (int) diff;
}
return valhalla;
}
// Function which returns the product of all args in args
Value *primitiveMult(Value *args){
double product = 1;
int isDouble = 0;
while(args->type != NULL_TYPE){
if(car(args)->type == INT_TYPE){
product = product * car(args)->i;
}
else if(car(args)->type == DOUBLE_TYPE){
product = product * car(args)->d;
isDouble = 1;
}
else{
printf("SYNTAX ERROR: you trying to multiply things that aren't numbers\n");
texit(1);
}
args = cdr(args);
}
Value *val = makeNull();
if(isDouble){
val->type = DOUBLE_TYPE;
val->d = product;
return val;
}
val->type = INT_TYPE;
val->i = (int) product;
return val;
}
// Function which returns the quotient of the first and second args
Value *primitiveDivide(Value *args){
if(length(args) != 2){
printf("SYNTAX ERROR: Divide only takes two args, sorry.\n");
texit(1);
}
double quotient = 0;
int isDouble = 0;
if(car(args)->type == DOUBLE_TYPE){
quotient = car(args)->d;
isDouble = 1;
} else if(car(args)->type == INT_TYPE){
quotient = car(args)->i;
} else {
printf("SYNTAX ERROR: Divide only accepts numbers.\n");
texit(1);
}
if(car(cdr(args))->type == DOUBLE_TYPE){
quotient /= car(cdr(args))->d;
isDouble = 1;
} else if(car(cdr(args))->type == INT_TYPE){
quotient /= car(cdr(args))->i;
} else {
printf("SYNTAX ERROR: Divide only accepts numbers.\n");
texit(1);
}
int modOkay = 0;
if(!isDouble){
if(car(args)->i % car(cdr(args))->i == 0){
quotient = (int) quotient;
modOkay = 1;
}
}
Value *valhalla = makeNull();
if(isDouble || !modOkay){
valhalla->type = DOUBLE_TYPE;
valhalla->d = quotient;
} else {
valhalla->type = INT_TYPE;
valhalla->i = quotient;
}
return valhalla;
}
// Function which takes two numeric args and tests if they are equal
Value *primitiveEqual(Value *args){
Value *val;
if(length(args) != 2){
printf("Syntax Error: = needs 2 arguments but you had %i\n"
, length(args));
texit(1);
}
if(
!((car(args)->type == INT_TYPE ||
car(args)->type == DOUBLE_TYPE)
&&
(car(cdr(args))->type == INT_TYPE ||
car(cdr(args))->type == DOUBLE_TYPE)
)
)
{
printf("Syntax Error: = only accepts integers and doubles as arguments\n");
texit(1);
}
else{
double arg1, arg2;
if(car(args)->type == INT_TYPE){
arg1 = (double) car(args)->i;
}else{
arg1 = car(args)->d;
}
if(car(cdr(args))->type == INT_TYPE){
arg2 = (double) car(cdr(args))->i;
}else{
arg2 = car(cdr(args))->d;
}
val = makeNull();
val->type = BOOL_TYPE;
val->i = (arg1 == arg2);
}
return val;
}
// Function which takes two numeric args and tests if the first is greater than the
// second
Value *primitiveGreaterThan(Value *args){
Value *val;
if(length(args) != 2){
printf("Syntax Error: > needs 2 arguments but you had %i\n"
, length(args));
texit(1);
}
if(
!((car(args)->type == INT_TYPE ||
car(args)->type == DOUBLE_TYPE)
&&
(car(cdr(args))->type == INT_TYPE ||
car(cdr(args))->type == DOUBLE_TYPE)
)
)
{
printf("Syntax Error: > only accepts integers and doubles as arguments\n");
texit(1);
}
else{
double arg1, arg2;
if(car(args)->type == INT_TYPE){
arg1 = (double) car(args)->i;
}else{
arg1 = car(args)->d;
}
if(car(cdr(args))->type == INT_TYPE){
arg2 = (double) car(cdr(args))->i;
}else{
arg2 = car(cdr(args))->d;
}
val = makeNull();
val->type = BOOL_TYPE;
val->i = (arg1 > arg2);
}
return val;
}
// Function which takes two numeric args and tests if the first is less than the second
Value *primitiveLessThan(Value *args){
Value *val;
if(length(args) != 2){
printf("Syntax Error: = needs 2 arguments but you had %i\n"
, length(args));
texit(1);
}
if(
!((car(args)->type == INT_TYPE ||
car(args)->type == DOUBLE_TYPE)
&&
(car(cdr(args))->type == INT_TYPE ||
car(cdr(args))->type == DOUBLE_TYPE)
)
)
{
printf("Syntax Error: < only accepts integers and doubles as arguments\n");
texit(1);
}
else{
double arg1, arg2;
if(car(args)->type == INT_TYPE){
arg1 = (double) car(args)->i;
}else{
arg1 = car(args)->d;
}
if(car(cdr(args))->type == INT_TYPE){
arg2 = (double) car(cdr(args))->i;
}else{
arg2 = car(cdr(args))->d;
}
val = makeNull();
val->type = BOOL_TYPE;
val->i = (arg1 < arg2);
}
return val;
}
// Function which takes two numeric args and tests if the first is greater than or equal
// to the second
Value *primitiveGeq(Value *args){
Value *val;
if(length(args) != 2){
printf("Syntax Error: >= needs 2 arguments but you had %i\n"
, length(args));
texit(1);
}
if(
!((car(args)->type == INT_TYPE ||
car(args)->type == DOUBLE_TYPE)
&&
(car(cdr(args))->type == INT_TYPE ||
car(cdr(args))->type == DOUBLE_TYPE)
)
)
{
printf("Syntax Error: >= only accepts integers and doubles as arguments\n");
texit(1);
}
else{
double arg1, arg2;
if(car(args)->type == INT_TYPE){
arg1 = (double) car(args)->i;
}else{
arg1 = car(args)->d;
}
if(car(cdr(args))->type == INT_TYPE){
arg2 = (double) car(cdr(args))->i;
}else{
arg2 = car(cdr(args))->d;
}
val = makeNull();
val->type = BOOL_TYPE;
val->i = (arg1 >= arg2);
}
return val;
}
// Function which takes two numeric args and test if the first is less than or equal to
// the second
Value *primitiveLeq(Value *args){
Value *val;
if(length(args) != 2){
printf("Syntax Error: <= needs 2 arguments but you had %i\n"
, length(args));
texit(1);
}
if(
!((car(args)->type == INT_TYPE ||
car(args)->type == DOUBLE_TYPE)
&&
(car(cdr(args))->type == INT_TYPE ||
car(cdr(args))->type == DOUBLE_TYPE)
)
)
{
printf("Syntax Error: <= only accepts integers and doubles as arguments\n");
texit(1);
}
else{
double arg1, arg2;
if(car(args)->type == INT_TYPE){
arg1 = (double) car(args)->i;
}else{
arg1 = car(args)->d;
}
if(car(cdr(args))->type == INT_TYPE){
arg2 = (double) car(cdr(args))->i;
}else{
arg2 = car(cdr(args))->d;
}
val = makeNull();
val->type = BOOL_TYPE;
val->i = (arg1 <= arg2);
}
return val;
}
Value *primitivePrint(Value *args){
if(length(args) != 1){
printf("print takes 1 arg\n");
texit(1);
}
print(car(args));
Value *voidVal = makeNull();
voidVal->type = VOID_TYPE;
return voidVal;
}