1 |
/* Copyright (c) 1991 Regents of the University of California */ |
2 |
|
3 |
#ifndef lint |
4 |
static char SCCSid[] = "$SunId$ LBL"; |
5 |
#endif |
6 |
|
7 |
/* |
8 |
* calfunc.c - routines for calcomp using functions. |
9 |
* |
10 |
* The define BIGLIB pulls in a large number of the |
11 |
* available math routines. |
12 |
* |
13 |
* If VARIABLE is not defined, only library functions |
14 |
* can be accessed. |
15 |
* |
16 |
* 4/2/86 |
17 |
*/ |
18 |
|
19 |
#include <stdio.h> |
20 |
|
21 |
#include <errno.h> |
22 |
|
23 |
#include "calcomp.h" |
24 |
|
25 |
/* bits in argument flag (better be right!) */ |
26 |
#define AFLAGSIZ (8*sizeof(unsigned long)) |
27 |
#define ALISTSIZ 6 /* maximum saved argument list */ |
28 |
|
29 |
typedef struct activation { |
30 |
char *name; /* function name */ |
31 |
struct activation *prev; /* previous activation */ |
32 |
double *ap; /* argument list */ |
33 |
unsigned long an; /* computed argument flags */ |
34 |
EPNODE *fun; /* argument function */ |
35 |
} ACTIVATION; /* an activation record */ |
36 |
|
37 |
static ACTIVATION *curact = NULL; |
38 |
|
39 |
static double libfunc(); |
40 |
|
41 |
#define MAXLIB 64 /* maximum number of library functions */ |
42 |
|
43 |
static double l_if(), l_select(), l_rand(); |
44 |
static double l_floor(), l_ceil(); |
45 |
#ifdef BIGLIB |
46 |
static double l_sqrt(); |
47 |
static double l_sin(), l_cos(), l_tan(); |
48 |
static double l_asin(), l_acos(), l_atan(), l_atan2(); |
49 |
static double l_exp(), l_log(), l_log10(); |
50 |
#endif |
51 |
|
52 |
#ifdef BIGLIB |
53 |
/* functions must be listed alphabetically */ |
54 |
static LIBR library[MAXLIB] = { |
55 |
{ "acos", 1, ':', l_acos }, |
56 |
{ "asin", 1, ':', l_asin }, |
57 |
{ "atan", 1, ':', l_atan }, |
58 |
{ "atan2", 2, ':', l_atan2 }, |
59 |
{ "ceil", 1, ':', l_ceil }, |
60 |
{ "cos", 1, ':', l_cos }, |
61 |
{ "exp", 1, ':', l_exp }, |
62 |
{ "floor", 1, ':', l_floor }, |
63 |
{ "if", 3, ':', l_if }, |
64 |
{ "log", 1, ':', l_log }, |
65 |
{ "log10", 1, ':', l_log10 }, |
66 |
{ "rand", 1, ':', l_rand }, |
67 |
{ "select", 1, ':', l_select }, |
68 |
{ "sin", 1, ':', l_sin }, |
69 |
{ "sqrt", 1, ':', l_sqrt }, |
70 |
{ "tan", 1, ':', l_tan }, |
71 |
}; |
72 |
|
73 |
static int libsize = 16; |
74 |
|
75 |
#else |
76 |
/* functions must be listed alphabetically */ |
77 |
static LIBR library[MAXLIB] = { |
78 |
{ "ceil", 1, ':', l_ceil }, |
79 |
{ "floor", 1, ':', l_floor }, |
80 |
{ "if", 3, ':', l_if }, |
81 |
{ "rand", 1, ':', l_rand }, |
82 |
{ "select", 1, ':', l_select }, |
83 |
}; |
84 |
|
85 |
static int libsize = 5; |
86 |
|
87 |
#endif |
88 |
|
89 |
extern char *savestr(), *emalloc(); |
90 |
|
91 |
extern LIBR *liblookup(); |
92 |
|
93 |
extern VARDEF *argf(); |
94 |
|
95 |
#ifdef VARIABLE |
96 |
#define resolve(ep) ((ep)->type==VAR?(ep)->v.ln:argf((ep)->v.chan)) |
97 |
#else |
98 |
#define resolve(ep) ((ep)->v.ln) |
99 |
#define varlookup(name) NULL |
100 |
#endif |
101 |
|
102 |
|
103 |
int |
104 |
fundefined(fname) /* return # of arguments for function */ |
105 |
char *fname; |
106 |
{ |
107 |
LIBR *lp; |
108 |
register VARDEF *vp; |
109 |
|
110 |
if ((vp = varlookup(fname)) == NULL || vp->def == NULL |
111 |
|| vp->def->v.kid->type != FUNC) |
112 |
if ((lp = liblookup(fname)) == NULL) |
113 |
return(0); |
114 |
else |
115 |
return(lp->nargs); |
116 |
else |
117 |
return(nekids(vp->def->v.kid) - 1); |
118 |
} |
119 |
|
120 |
|
121 |
double |
122 |
funvalue(fname, n, a) /* return a function value to the user */ |
123 |
char *fname; |
124 |
int n; |
125 |
double *a; |
126 |
{ |
127 |
ACTIVATION act; |
128 |
register VARDEF *vp; |
129 |
double rval; |
130 |
/* push environment */ |
131 |
act.name = fname; |
132 |
act.prev = curact; |
133 |
act.ap = a; |
134 |
if (n >= AFLAGSIZ) |
135 |
act.an = ~0; |
136 |
else |
137 |
act.an = (1L<<n)-1; |
138 |
act.fun = NULL; |
139 |
curact = &act; |
140 |
|
141 |
if ((vp = varlookup(fname)) == NULL || vp->def == NULL |
142 |
|| vp->def->v.kid->type != FUNC) |
143 |
rval = libfunc(fname, vp); |
144 |
else |
145 |
rval = evalue(vp->def->v.kid->sibling); |
146 |
|
147 |
curact = act.prev; /* pop environment */ |
148 |
return(rval); |
149 |
} |
150 |
|
151 |
|
152 |
funset(fname, nargs, assign, fptr) /* set a library function */ |
153 |
char *fname; |
154 |
int nargs; |
155 |
int assign; |
156 |
double (*fptr)(); |
157 |
{ |
158 |
register LIBR *lp; |
159 |
|
160 |
if ((lp = liblookup(fname)) == NULL) { |
161 |
if (libsize >= MAXLIB) { |
162 |
eputs("Too many library functons!\n"); |
163 |
quit(1); |
164 |
} |
165 |
for (lp = &library[libsize]; lp > library; lp--) |
166 |
if (strcmp(lp[-1].fname, fname) > 0) { |
167 |
lp[0].fname = lp[-1].fname; |
168 |
lp[0].nargs = lp[-1].nargs; |
169 |
lp[0].atyp = lp[-1].atyp; |
170 |
lp[0].f = lp[-1].f; |
171 |
} else |
172 |
break; |
173 |
libsize++; |
174 |
} |
175 |
lp[0].fname = fname; /* must be static! */ |
176 |
lp[0].nargs = nargs; |
177 |
lp[0].atyp = assign; |
178 |
lp[0].f = fptr; |
179 |
} |
180 |
|
181 |
|
182 |
int |
183 |
nargum() /* return number of available arguments */ |
184 |
{ |
185 |
register int n; |
186 |
|
187 |
if (curact == NULL) |
188 |
return(0); |
189 |
if (curact->fun == NULL) { |
190 |
for (n = 0; (1L<<n) & curact->an; n++) |
191 |
; |
192 |
return(n); |
193 |
} |
194 |
return(nekids(curact->fun) - 1); |
195 |
} |
196 |
|
197 |
|
198 |
double |
199 |
argument(n) /* return nth argument for active function */ |
200 |
register int n; |
201 |
{ |
202 |
register ACTIVATION *actp = curact; |
203 |
register EPNODE *ep; |
204 |
double aval; |
205 |
|
206 |
if (actp == NULL || --n < 0) { |
207 |
eputs("Bad call to argument!\n"); |
208 |
quit(1); |
209 |
} |
210 |
/* already computed? */ |
211 |
if (n < AFLAGSIZ && 1L<<n & actp->an) |
212 |
return(actp->ap[n]); |
213 |
|
214 |
if (actp->fun == NULL || (ep = ekid(actp->fun, n+1)) == NULL) { |
215 |
eputs(actp->name); |
216 |
eputs(": too few arguments\n"); |
217 |
quit(1); |
218 |
} |
219 |
curact = actp->prev; /* pop environment */ |
220 |
aval = evalue(ep); /* compute argument */ |
221 |
curact = actp; /* push back environment */ |
222 |
if (n < ALISTSIZ) { /* save value */ |
223 |
actp->ap[n] = aval; |
224 |
actp->an |= 1L<<n; |
225 |
} |
226 |
return(aval); |
227 |
} |
228 |
|
229 |
|
230 |
#ifdef VARIABLE |
231 |
VARDEF * |
232 |
argf(n) /* return function def for nth argument */ |
233 |
int n; |
234 |
{ |
235 |
register ACTIVATION *actp; |
236 |
register EPNODE *ep; |
237 |
|
238 |
for (actp = curact; actp != NULL; actp = actp->prev) { |
239 |
|
240 |
if (n <= 0) |
241 |
break; |
242 |
|
243 |
if (actp->fun == NULL) |
244 |
goto badarg; |
245 |
|
246 |
if ((ep = ekid(actp->fun, n)) == NULL) { |
247 |
eputs(actp->name); |
248 |
eputs(": too few arguments\n"); |
249 |
quit(1); |
250 |
} |
251 |
if (ep->type == VAR) |
252 |
return(ep->v.ln); /* found it */ |
253 |
|
254 |
if (ep->type != ARG) |
255 |
goto badarg; |
256 |
|
257 |
n = ep->v.chan; /* try previous context */ |
258 |
} |
259 |
eputs("Bad call to argf!\n"); |
260 |
quit(1); |
261 |
|
262 |
badarg: |
263 |
eputs(actp->name); |
264 |
eputs(": argument not a function\n"); |
265 |
quit(1); |
266 |
} |
267 |
|
268 |
|
269 |
char * |
270 |
argfun(n) /* return function name for nth argument */ |
271 |
int n; |
272 |
{ |
273 |
return(argf(n)->name); |
274 |
} |
275 |
#endif |
276 |
|
277 |
|
278 |
double |
279 |
efunc(ep) /* evaluate a function */ |
280 |
register EPNODE *ep; |
281 |
{ |
282 |
ACTIVATION act; |
283 |
double alist[ALISTSIZ]; |
284 |
double rval; |
285 |
register VARDEF *dp; |
286 |
/* push environment */ |
287 |
dp = resolve(ep->v.kid); |
288 |
act.name = dp->name; |
289 |
act.prev = curact; |
290 |
act.ap = alist; |
291 |
act.an = 0; |
292 |
act.fun = ep; |
293 |
curact = &act; |
294 |
|
295 |
if (dp->def == NULL || dp->def->v.kid->type != FUNC) |
296 |
rval = libfunc(act.name, dp); |
297 |
else |
298 |
rval = evalue(dp->def->v.kid->sibling); |
299 |
|
300 |
curact = act.prev; /* pop environment */ |
301 |
return(rval); |
302 |
} |
303 |
|
304 |
|
305 |
LIBR * |
306 |
liblookup(fname) /* look up a library function */ |
307 |
char *fname; |
308 |
{ |
309 |
int upper, lower; |
310 |
register int cm, i; |
311 |
|
312 |
lower = 0; |
313 |
upper = cm = libsize; |
314 |
|
315 |
while ((i = (lower + upper) >> 1) != cm) { |
316 |
cm = strcmp(fname, library[i].fname); |
317 |
if (cm > 0) |
318 |
lower = i; |
319 |
else if (cm < 0) |
320 |
upper = i; |
321 |
else |
322 |
return(&library[i]); |
323 |
cm = i; |
324 |
} |
325 |
return(NULL); |
326 |
} |
327 |
|
328 |
|
329 |
#ifndef VARIABLE |
330 |
VARDEF * |
331 |
varinsert(vname) /* dummy variable insert */ |
332 |
char *vname; |
333 |
{ |
334 |
register VARDEF *vp; |
335 |
|
336 |
vp = (VARDEF *)emalloc(sizeof(VARDEF)); |
337 |
vp->name = savestr(vname); |
338 |
vp->nlinks = 1; |
339 |
vp->def = NULL; |
340 |
vp->lib = NULL; |
341 |
vp->next = NULL; |
342 |
return(vp); |
343 |
} |
344 |
|
345 |
|
346 |
varfree(vp) /* free dummy variable */ |
347 |
register VARDEF *vp; |
348 |
{ |
349 |
freestr(vp->name); |
350 |
efree((char *)vp); |
351 |
} |
352 |
#endif |
353 |
|
354 |
|
355 |
|
356 |
/* |
357 |
* The following routines are for internal use: |
358 |
*/ |
359 |
|
360 |
|
361 |
static double |
362 |
libfunc(fname, vp) /* execute library function */ |
363 |
char *fname; |
364 |
register VARDEF *vp; |
365 |
{ |
366 |
VARDEF dumdef; |
367 |
double d; |
368 |
int lasterrno; |
369 |
|
370 |
if (vp == NULL) { |
371 |
vp = &dumdef; |
372 |
vp->lib = NULL; |
373 |
} |
374 |
if (((vp->lib == NULL || strcmp(fname, vp->lib->fname)) && |
375 |
(vp->lib = liblookup(fname)) == NULL) || |
376 |
vp->lib->f == NULL) { |
377 |
eputs(fname); |
378 |
eputs(": undefined function\n"); |
379 |
quit(1); |
380 |
} |
381 |
lasterrno = errno; |
382 |
errno = 0; |
383 |
d = (*vp->lib->f)(vp->lib->fname); |
384 |
#ifdef IEEE |
385 |
if (!finite(d)) |
386 |
errno = EDOM; |
387 |
#endif |
388 |
if (errno) { |
389 |
wputs(fname); |
390 |
if (errno == EDOM) |
391 |
wputs(": domain error\n"); |
392 |
else if (errno == ERANGE) |
393 |
wputs(": range error\n"); |
394 |
else |
395 |
wputs(": error in call\n"); |
396 |
return(0.0); |
397 |
} |
398 |
errno = lasterrno; |
399 |
return(d); |
400 |
} |
401 |
|
402 |
|
403 |
/* |
404 |
* Library functions: |
405 |
*/ |
406 |
|
407 |
|
408 |
static double |
409 |
l_if() /* if(cond, then, else) conditional expression */ |
410 |
/* cond evaluates true if greater than zero */ |
411 |
{ |
412 |
if (argument(1) > 0.0) |
413 |
return(argument(2)); |
414 |
else |
415 |
return(argument(3)); |
416 |
} |
417 |
|
418 |
|
419 |
static double |
420 |
l_select() /* return argument #(A1+1) */ |
421 |
{ |
422 |
register int n; |
423 |
|
424 |
n = argument(1) + .5; |
425 |
if (n == 0) |
426 |
return(nargum()-1); |
427 |
if (n < 1 || n > nargum()-1) { |
428 |
errno = EDOM; |
429 |
return(0.0); |
430 |
} |
431 |
return(argument(n+1)); |
432 |
} |
433 |
|
434 |
|
435 |
static double |
436 |
l_rand() /* random function between 0 and 1 */ |
437 |
{ |
438 |
extern double floor(); |
439 |
double x; |
440 |
|
441 |
x = argument(1); |
442 |
x *= 1.0/(1.0 + x*x) + 2.71828182845904; |
443 |
x += .785398163397447 - floor(x); |
444 |
x = 1e5 / x; |
445 |
return(x - floor(x)); |
446 |
} |
447 |
|
448 |
|
449 |
static double |
450 |
l_floor() /* return largest integer not greater than arg1 */ |
451 |
{ |
452 |
extern double floor(); |
453 |
|
454 |
return(floor(argument(1))); |
455 |
} |
456 |
|
457 |
|
458 |
static double |
459 |
l_ceil() /* return smallest integer not less than arg1 */ |
460 |
{ |
461 |
extern double ceil(); |
462 |
|
463 |
return(ceil(argument(1))); |
464 |
} |
465 |
|
466 |
|
467 |
#ifdef BIGLIB |
468 |
static double |
469 |
l_sqrt() |
470 |
{ |
471 |
extern double sqrt(); |
472 |
|
473 |
return(sqrt(argument(1))); |
474 |
} |
475 |
|
476 |
|
477 |
static double |
478 |
l_sin() |
479 |
{ |
480 |
extern double sin(); |
481 |
|
482 |
return(sin(argument(1))); |
483 |
} |
484 |
|
485 |
|
486 |
static double |
487 |
l_cos() |
488 |
{ |
489 |
extern double cos(); |
490 |
|
491 |
return(cos(argument(1))); |
492 |
} |
493 |
|
494 |
|
495 |
static double |
496 |
l_tan() |
497 |
{ |
498 |
extern double tan(); |
499 |
|
500 |
return(tan(argument(1))); |
501 |
} |
502 |
|
503 |
|
504 |
static double |
505 |
l_asin() |
506 |
{ |
507 |
extern double asin(); |
508 |
|
509 |
return(asin(argument(1))); |
510 |
} |
511 |
|
512 |
|
513 |
static double |
514 |
l_acos() |
515 |
{ |
516 |
extern double acos(); |
517 |
|
518 |
return(acos(argument(1))); |
519 |
} |
520 |
|
521 |
|
522 |
static double |
523 |
l_atan() |
524 |
{ |
525 |
extern double atan(); |
526 |
|
527 |
return(atan(argument(1))); |
528 |
} |
529 |
|
530 |
|
531 |
static double |
532 |
l_atan2() |
533 |
{ |
534 |
extern double atan2(); |
535 |
|
536 |
return(atan2(argument(1), argument(2))); |
537 |
} |
538 |
|
539 |
|
540 |
static double |
541 |
l_exp() |
542 |
{ |
543 |
extern double exp(); |
544 |
|
545 |
return(exp(argument(1))); |
546 |
} |
547 |
|
548 |
|
549 |
static double |
550 |
l_log() |
551 |
{ |
552 |
extern double log(); |
553 |
|
554 |
return(log(argument(1))); |
555 |
} |
556 |
|
557 |
|
558 |
static double |
559 |
l_log10() |
560 |
{ |
561 |
extern double log10(); |
562 |
|
563 |
return(log10(argument(1))); |
564 |
} |
565 |
#endif |