1 |
– |
/* Copyright (c) 1986 Regents of the University of California */ |
2 |
– |
|
1 |
|
#ifndef lint |
2 |
< |
static char SCCSid[] = "$SunId$ LBL"; |
2 |
> |
static const char RCSid[] = "$Id$"; |
3 |
|
#endif |
6 |
– |
|
4 |
|
/* |
5 |
|
* calfunc.c - routines for calcomp using functions. |
6 |
|
* |
7 |
< |
* The define BIGLIB pulls in a large number of the |
11 |
< |
* available math routines. |
12 |
< |
* |
13 |
< |
* If VARIABLE is not defined, only library functions |
7 |
> |
* If VARIABLE is not set, only library functions |
8 |
|
* can be accessed. |
9 |
|
* |
10 |
< |
* 4/2/86 |
10 |
> |
* 2/19/03 Eliminated conditional compiles in favor of esupport extern. |
11 |
|
*/ |
12 |
|
|
13 |
< |
#include <stdio.h> |
13 |
> |
#include "copyright.h" |
14 |
|
|
15 |
+ |
#include <stdio.h> |
16 |
+ |
#include <string.h> |
17 |
|
#include <errno.h> |
18 |
+ |
#include <math.h> |
19 |
|
|
20 |
+ |
#include "rterror.h" |
21 |
|
#include "calcomp.h" |
22 |
|
|
23 |
< |
|
23 |
> |
/* bits in argument flag (better be right!) */ |
24 |
> |
#define AFLAGSIZ (8*sizeof(unsigned long)) |
25 |
|
#define ALISTSIZ 6 /* maximum saved argument list */ |
26 |
|
|
27 |
|
typedef struct activation { |
34 |
|
|
35 |
|
static ACTIVATION *curact = NULL; |
36 |
|
|
37 |
< |
static double libfunc(); |
37 |
> |
static double libfunc(char *fname, VARDEF *vp); |
38 |
|
|
39 |
+ |
#ifndef MAXLIB |
40 |
|
#define MAXLIB 64 /* maximum number of library functions */ |
41 |
– |
|
42 |
– |
static double l_if(), l_select(), l_rand(); |
43 |
– |
static double l_floor(), l_ceil(); |
44 |
– |
#ifdef BIGLIB |
45 |
– |
static double l_sqrt(); |
46 |
– |
static double l_sin(), l_cos(), l_tan(); |
47 |
– |
static double l_asin(), l_acos(), l_atan(), l_atan2(); |
48 |
– |
static double l_exp(), l_log(), l_log10(); |
41 |
|
#endif |
42 |
|
|
43 |
< |
#ifdef BIGLIB |
43 |
> |
static double l_if(char *), l_select(char *), l_rand(char *); |
44 |
> |
static double l_floor(char *), l_ceil(char *); |
45 |
> |
static double l_sqrt(char *); |
46 |
> |
static double l_sin(char *), l_cos(char *), l_tan(char *); |
47 |
> |
static double l_asin(char *), l_acos(char *), l_atan(char *), l_atan2(char *); |
48 |
> |
static double l_exp(char *), l_log(char *), l_log10(char *); |
49 |
> |
|
50 |
|
/* functions must be listed alphabetically */ |
51 |
|
static LIBR library[MAXLIB] = { |
52 |
< |
{ "acos", 1, l_acos }, |
53 |
< |
{ "asin", 1, l_asin }, |
54 |
< |
{ "atan", 1, l_atan }, |
55 |
< |
{ "atan2", 2, l_atan2 }, |
56 |
< |
{ "ceil", 1, l_ceil }, |
57 |
< |
{ "cos", 1, l_cos }, |
58 |
< |
{ "exp", 1, l_exp }, |
59 |
< |
{ "floor", 1, l_floor }, |
60 |
< |
{ "if", 3, l_if }, |
61 |
< |
{ "log", 1, l_log }, |
62 |
< |
{ "log10", 1, l_log10 }, |
63 |
< |
{ "rand", 1, l_rand }, |
64 |
< |
{ "select", 1, l_select }, |
65 |
< |
{ "sin", 1, l_sin }, |
66 |
< |
{ "sqrt", 1, l_sqrt }, |
67 |
< |
{ "tan", 1, l_tan }, |
52 |
> |
{ "acos", 1, ':', l_acos }, |
53 |
> |
{ "asin", 1, ':', l_asin }, |
54 |
> |
{ "atan", 1, ':', l_atan }, |
55 |
> |
{ "atan2", 2, ':', l_atan2 }, |
56 |
> |
{ "ceil", 1, ':', l_ceil }, |
57 |
> |
{ "cos", 1, ':', l_cos }, |
58 |
> |
{ "exp", 1, ':', l_exp }, |
59 |
> |
{ "floor", 1, ':', l_floor }, |
60 |
> |
{ "if", 3, ':', l_if }, |
61 |
> |
{ "log", 1, ':', l_log }, |
62 |
> |
{ "log10", 1, ':', l_log10 }, |
63 |
> |
{ "rand", 1, ':', l_rand }, |
64 |
> |
{ "select", 1, ':', l_select }, |
65 |
> |
{ "sin", 1, ':', l_sin }, |
66 |
> |
{ "sqrt", 1, ':', l_sqrt }, |
67 |
> |
{ "tan", 1, ':', l_tan }, |
68 |
|
}; |
69 |
|
|
70 |
|
static int libsize = 16; |
71 |
|
|
74 |
– |
#else |
75 |
– |
/* functions must be listed alphabetically */ |
76 |
– |
static LIBR library[MAXLIB] = { |
77 |
– |
{ "ceil", 1, l_ceil }, |
78 |
– |
{ "floor", 1, l_floor }, |
79 |
– |
{ "if", 3, l_if }, |
80 |
– |
{ "rand", 1, l_rand }, |
81 |
– |
{ "select", 1, l_select }, |
82 |
– |
}; |
83 |
– |
|
84 |
– |
static int libsize = 5; |
85 |
– |
|
86 |
– |
#endif |
87 |
– |
|
88 |
– |
extern char *savestr(), *emalloc(); |
89 |
– |
|
90 |
– |
extern LIBR *liblookup(); |
91 |
– |
|
92 |
– |
extern VARDEF *argf(); |
93 |
– |
|
94 |
– |
#ifdef VARIABLE |
72 |
|
#define resolve(ep) ((ep)->type==VAR?(ep)->v.ln:argf((ep)->v.chan)) |
96 |
– |
#else |
97 |
– |
#define resolve(ep) ((ep)->v.ln) |
98 |
– |
#define varlookup(name) NULL |
99 |
– |
#endif |
73 |
|
|
74 |
|
|
75 |
|
int |
76 |
< |
fundefined(fname) /* return # of arguments for function */ |
77 |
< |
char *fname; |
76 |
> |
fundefined( /* return # of arguments for function */ |
77 |
> |
char *fname |
78 |
> |
) |
79 |
|
{ |
80 |
|
LIBR *lp; |
81 |
< |
register VARDEF *vp; |
81 |
> |
VARDEF *vp; |
82 |
|
|
83 |
< |
if ((vp = varlookup(fname)) == NULL || vp->def == NULL |
84 |
< |
|| vp->def->v.kid->type != FUNC) |
111 |
< |
if ((lp = liblookup(fname)) == NULL) |
112 |
< |
return(0); |
113 |
< |
else |
114 |
< |
return(lp->nargs); |
115 |
< |
else |
83 |
> |
if ((vp = varlookup(fname)) != NULL && vp->def != NULL |
84 |
> |
&& vp->def->v.kid->type == FUNC) |
85 |
|
return(nekids(vp->def->v.kid) - 1); |
86 |
+ |
lp = vp != NULL ? vp->lib : liblookup(fname); |
87 |
+ |
if (lp == NULL) |
88 |
+ |
return(0); |
89 |
+ |
return(lp->nargs); |
90 |
|
} |
91 |
|
|
92 |
|
|
93 |
|
double |
94 |
< |
funvalue(fname, n, a) /* return a function value to the user */ |
95 |
< |
char *fname; |
96 |
< |
int n; |
97 |
< |
double *a; |
94 |
> |
funvalue( /* return a function value to the user */ |
95 |
> |
char *fname, |
96 |
> |
int n, |
97 |
> |
double *a |
98 |
> |
) |
99 |
|
{ |
100 |
|
ACTIVATION act; |
101 |
< |
register VARDEF *vp; |
101 |
> |
VARDEF *vp; |
102 |
|
double rval; |
103 |
|
/* push environment */ |
104 |
|
act.name = fname; |
105 |
|
act.prev = curact; |
106 |
|
act.ap = a; |
107 |
< |
act.an = (1L<<n)-1; |
107 |
> |
if (n >= AFLAGSIZ) |
108 |
> |
act.an = ~0; |
109 |
> |
else |
110 |
> |
act.an = (1L<<n)-1; |
111 |
|
act.fun = NULL; |
112 |
|
curact = &act; |
113 |
|
|
122 |
|
} |
123 |
|
|
124 |
|
|
125 |
< |
funset(fname, nargs, fptr) /* set a library function */ |
126 |
< |
char *fname; |
127 |
< |
int nargs; |
128 |
< |
double (*fptr)(); |
125 |
> |
void |
126 |
> |
funset( /* set a library function */ |
127 |
> |
char *fname, |
128 |
> |
int nargs, |
129 |
> |
int assign, |
130 |
> |
double (*fptr)(char *) |
131 |
> |
) |
132 |
|
{ |
133 |
< |
register LIBR *lp; |
134 |
< |
|
135 |
< |
if ((lp = liblookup(fname)) == NULL) { |
133 |
> |
int oldlibsize = libsize; |
134 |
> |
char *cp; |
135 |
> |
LIBR *lp; |
136 |
> |
/* check for context */ |
137 |
> |
for (cp = fname; *cp; cp++) |
138 |
> |
; |
139 |
> |
if (cp == fname) |
140 |
> |
return; |
141 |
> |
if (cp[-1] == CNTXMARK) |
142 |
> |
*--cp = '\0'; |
143 |
> |
if ((lp = liblookup(fname)) == NULL) { /* insert */ |
144 |
|
if (libsize >= MAXLIB) { |
145 |
|
eputs("Too many library functons!\n"); |
146 |
|
quit(1); |
147 |
|
} |
148 |
|
for (lp = &library[libsize]; lp > library; lp--) |
149 |
< |
if (strcmp(lp[-1].fname, fname) > 0) { |
150 |
< |
lp[0].fname = lp[-1].fname; |
151 |
< |
lp[0].nargs = lp[-1].nargs; |
164 |
< |
lp[0].f = lp[-1].f; |
165 |
< |
} else |
149 |
> |
if (strcmp(lp[-1].fname, fname) > 0) |
150 |
> |
lp[0] = lp[-1]; |
151 |
> |
else |
152 |
|
break; |
153 |
|
libsize++; |
154 |
|
} |
155 |
< |
lp[0].fname = fname; /* string must be static! */ |
156 |
< |
lp[0].nargs = nargs; |
157 |
< |
lp[0].f = fptr; |
155 |
> |
if (fptr == NULL) { /* delete */ |
156 |
> |
while (lp < &library[libsize-1]) { |
157 |
> |
lp[0] = lp[1]; |
158 |
> |
lp++; |
159 |
> |
} |
160 |
> |
libsize--; |
161 |
> |
} else { /* or assign */ |
162 |
> |
lp[0].fname = fname; /* string must be static! */ |
163 |
> |
lp[0].nargs = nargs; |
164 |
> |
lp[0].atyp = assign; |
165 |
> |
lp[0].f = fptr; |
166 |
> |
} |
167 |
> |
if (libsize != oldlibsize) |
168 |
> |
libupdate(fname); /* relink library */ |
169 |
|
} |
170 |
|
|
171 |
|
|
172 |
|
int |
173 |
< |
nargum() /* return number of available arguments */ |
173 |
> |
nargum(void) /* return number of available arguments */ |
174 |
|
{ |
175 |
< |
register int n; |
175 |
> |
int n; |
176 |
|
|
177 |
|
if (curact == NULL) |
178 |
|
return(0); |
186 |
|
|
187 |
|
|
188 |
|
double |
189 |
< |
argument(n) /* return nth argument for active function */ |
193 |
< |
register int n; |
189 |
> |
argument(int n) /* return nth argument for active function */ |
190 |
|
{ |
191 |
< |
register ACTIVATION *actp = curact; |
192 |
< |
EPNODE *ep; |
191 |
> |
ACTIVATION *actp = curact; |
192 |
> |
EPNODE *ep = NULL; |
193 |
|
double aval; |
194 |
|
|
195 |
|
if (actp == NULL || --n < 0) { |
197 |
|
quit(1); |
198 |
|
} |
199 |
|
/* already computed? */ |
200 |
< |
if (1L<<n & actp->an) |
200 |
> |
if (n < AFLAGSIZ && 1L<<n & actp->an) |
201 |
|
return(actp->ap[n]); |
202 |
|
|
203 |
|
if (actp->fun == NULL || (ep = ekid(actp->fun, n+1)) == NULL) { |
216 |
|
} |
217 |
|
|
218 |
|
|
223 |
– |
#ifdef VARIABLE |
219 |
|
VARDEF * |
220 |
< |
argf(n) /* return function def for nth argument */ |
226 |
< |
int n; |
220 |
> |
argf(int n) /* return function def for nth argument */ |
221 |
|
{ |
222 |
< |
register ACTIVATION *actp; |
223 |
< |
register EPNODE *ep; |
222 |
> |
ACTIVATION *actp; |
223 |
> |
EPNODE *ep; |
224 |
|
|
225 |
|
for (actp = curact; actp != NULL; actp = actp->prev) { |
226 |
|
|
250 |
|
eputs(actp->name); |
251 |
|
eputs(": argument not a function\n"); |
252 |
|
quit(1); |
253 |
+ |
return NULL; /* pro forma return */ |
254 |
|
} |
255 |
|
|
256 |
|
|
257 |
|
char * |
258 |
< |
argfun(n) /* return function name for nth argument */ |
264 |
< |
int n; |
258 |
> |
argfun(int n) /* return function name for nth argument */ |
259 |
|
{ |
260 |
|
return(argf(n)->name); |
261 |
|
} |
268 |
– |
#endif |
262 |
|
|
263 |
|
|
264 |
|
double |
265 |
< |
efunc(ep) /* evaluate a function */ |
273 |
< |
register EPNODE *ep; |
265 |
> |
efunc(EPNODE *ep) /* evaluate a function */ |
266 |
|
{ |
267 |
|
ACTIVATION act; |
268 |
|
double alist[ALISTSIZ]; |
269 |
|
double rval; |
270 |
< |
register VARDEF *dp; |
270 |
> |
VARDEF *dp; |
271 |
|
/* push environment */ |
272 |
|
dp = resolve(ep->v.kid); |
273 |
|
act.name = dp->name; |
288 |
|
|
289 |
|
|
290 |
|
LIBR * |
291 |
< |
liblookup(fname) /* look up a library function */ |
300 |
< |
char *fname; |
291 |
> |
liblookup(char *fname) /* look up a library function */ |
292 |
|
{ |
293 |
|
int upper, lower; |
294 |
< |
register int cm, i; |
294 |
> |
int cm, i; |
295 |
|
|
296 |
|
lower = 0; |
297 |
|
upper = cm = libsize; |
310 |
|
} |
311 |
|
|
312 |
|
|
322 |
– |
#ifndef VARIABLE |
323 |
– |
VARDEF * |
324 |
– |
varinsert(vname) /* dummy variable insert */ |
325 |
– |
char *vname; |
326 |
– |
{ |
327 |
– |
register VARDEF *vp; |
328 |
– |
|
329 |
– |
vp = (VARDEF *)emalloc(sizeof(VARDEF)); |
330 |
– |
vp->name = savestr(vname); |
331 |
– |
vp->nlinks = 1; |
332 |
– |
vp->def = NULL; |
333 |
– |
vp->lib = NULL; |
334 |
– |
vp->next = NULL; |
335 |
– |
return(vp); |
336 |
– |
} |
337 |
– |
|
338 |
– |
|
339 |
– |
varfree(vp) /* free dummy variable */ |
340 |
– |
register VARDEF *vp; |
341 |
– |
{ |
342 |
– |
freestr(vp->name); |
343 |
– |
efree((char *)vp); |
344 |
– |
} |
345 |
– |
#endif |
346 |
– |
|
347 |
– |
|
348 |
– |
|
313 |
|
/* |
314 |
|
* The following routines are for internal use: |
315 |
|
*/ |
316 |
|
|
317 |
|
|
318 |
|
static double |
319 |
< |
libfunc(fname, vp) /* execute library function */ |
320 |
< |
char *fname; |
321 |
< |
register VARDEF *vp; |
319 |
> |
libfunc( /* execute library function */ |
320 |
> |
char *fname, |
321 |
> |
VARDEF *vp |
322 |
> |
) |
323 |
|
{ |
324 |
< |
VARDEF dumdef; |
324 |
> |
LIBR *lp; |
325 |
|
double d; |
326 |
|
int lasterrno; |
327 |
|
|
328 |
< |
if (vp == NULL) { |
329 |
< |
vp = &dumdef; |
330 |
< |
vp->lib = NULL; |
331 |
< |
} |
332 |
< |
if (((vp->lib == NULL || strcmp(fname, vp->lib->fname)) && |
368 |
< |
(vp->lib = liblookup(fname)) == NULL) || |
369 |
< |
vp->lib->f == NULL) { |
328 |
> |
if (vp != NULL) |
329 |
> |
lp = vp->lib; |
330 |
> |
else |
331 |
> |
lp = liblookup(fname); |
332 |
> |
if (lp == NULL) { |
333 |
|
eputs(fname); |
334 |
|
eputs(": undefined function\n"); |
335 |
|
quit(1); |
336 |
|
} |
337 |
|
lasterrno = errno; |
338 |
|
errno = 0; |
339 |
< |
d = (*vp->lib->f)(); |
340 |
< |
#ifdef IEEE |
341 |
< |
if (!finite(d)) |
342 |
< |
errno = EDOM; |
339 |
> |
d = (*lp->f)(lp->fname); |
340 |
> |
#ifdef isnan |
341 |
> |
if (errno == 0) { |
342 |
> |
if (isnan(d)) |
343 |
> |
errno = EDOM; |
344 |
> |
else if (isinf(d)) |
345 |
> |
errno = ERANGE; |
346 |
> |
} |
347 |
|
#endif |
348 |
< |
if (errno) { |
348 |
> |
if (errno == EDOM || errno == ERANGE) { |
349 |
|
wputs(fname); |
350 |
< |
wputs(": bad call\n"); |
350 |
> |
if (errno == EDOM) |
351 |
> |
wputs(": domain error\n"); |
352 |
> |
else if (errno == ERANGE) |
353 |
> |
wputs(": range error\n"); |
354 |
> |
else |
355 |
> |
wputs(": error in call\n"); |
356 |
|
return(0.0); |
357 |
|
} |
358 |
|
errno = lasterrno; |
366 |
|
|
367 |
|
|
368 |
|
static double |
369 |
< |
l_if() /* if(cond, then, else) conditional expression */ |
369 |
> |
l_if(char *nm) /* if(cond, then, else) conditional expression */ |
370 |
|
/* cond evaluates true if greater than zero */ |
371 |
|
{ |
372 |
|
if (argument(1) > 0.0) |
377 |
|
|
378 |
|
|
379 |
|
static double |
380 |
< |
l_select() /* return argument #(A1+1) */ |
380 |
> |
l_select(char *nm) /* return argument #(A1+1) */ |
381 |
|
{ |
382 |
< |
register int n; |
382 |
> |
int n; |
383 |
|
|
384 |
< |
n = argument(1) + .5; |
384 |
> |
n = (int)(argument(1) + .5); |
385 |
|
if (n == 0) |
386 |
|
return(nargum()-1); |
387 |
|
if (n < 1 || n > nargum()-1) { |
393 |
|
|
394 |
|
|
395 |
|
static double |
396 |
< |
l_rand() /* random function between 0 and 1 */ |
396 |
> |
l_rand(char *nm) /* random function between 0 and 1 */ |
397 |
|
{ |
426 |
– |
extern double floor(); |
398 |
|
double x; |
399 |
|
|
400 |
|
x = argument(1); |
406 |
|
|
407 |
|
|
408 |
|
static double |
409 |
< |
l_floor() /* return largest integer not greater than arg1 */ |
409 |
> |
l_floor(char *nm) /* return largest integer not greater than arg1 */ |
410 |
|
{ |
440 |
– |
extern double floor(); |
441 |
– |
|
411 |
|
return(floor(argument(1))); |
412 |
|
} |
413 |
|
|
414 |
|
|
415 |
|
static double |
416 |
< |
l_ceil() /* return smallest integer not less than arg1 */ |
416 |
> |
l_ceil(char *nm) /* return smallest integer not less than arg1 */ |
417 |
|
{ |
449 |
– |
extern double ceil(); |
450 |
– |
|
418 |
|
return(ceil(argument(1))); |
419 |
|
} |
420 |
|
|
421 |
|
|
455 |
– |
#ifdef BIGLIB |
422 |
|
static double |
423 |
< |
l_sqrt() |
423 |
> |
l_sqrt(char *nm) |
424 |
|
{ |
459 |
– |
extern double sqrt(); |
460 |
– |
|
425 |
|
return(sqrt(argument(1))); |
426 |
|
} |
427 |
|
|
428 |
|
|
429 |
|
static double |
430 |
< |
l_sin() |
430 |
> |
l_sin(char *nm) |
431 |
|
{ |
468 |
– |
extern double sin(); |
469 |
– |
|
432 |
|
return(sin(argument(1))); |
433 |
|
} |
434 |
|
|
435 |
|
|
436 |
|
static double |
437 |
< |
l_cos() |
437 |
> |
l_cos(char *nm) |
438 |
|
{ |
477 |
– |
extern double cos(); |
478 |
– |
|
439 |
|
return(cos(argument(1))); |
440 |
|
} |
441 |
|
|
442 |
|
|
443 |
|
static double |
444 |
< |
l_tan() |
444 |
> |
l_tan(char *nm) |
445 |
|
{ |
486 |
– |
extern double tan(); |
487 |
– |
|
446 |
|
return(tan(argument(1))); |
447 |
|
} |
448 |
|
|
449 |
|
|
450 |
|
static double |
451 |
< |
l_asin() |
451 |
> |
l_asin(char *nm) |
452 |
|
{ |
495 |
– |
extern double asin(); |
496 |
– |
|
453 |
|
return(asin(argument(1))); |
454 |
|
} |
455 |
|
|
456 |
|
|
457 |
|
static double |
458 |
< |
l_acos() |
458 |
> |
l_acos(char *nm) |
459 |
|
{ |
504 |
– |
extern double acos(); |
505 |
– |
|
460 |
|
return(acos(argument(1))); |
461 |
|
} |
462 |
|
|
463 |
|
|
464 |
|
static double |
465 |
< |
l_atan() |
465 |
> |
l_atan(char *nm) |
466 |
|
{ |
513 |
– |
extern double atan(); |
514 |
– |
|
467 |
|
return(atan(argument(1))); |
468 |
|
} |
469 |
|
|
470 |
|
|
471 |
|
static double |
472 |
< |
l_atan2() |
472 |
> |
l_atan2(char *nm) |
473 |
|
{ |
522 |
– |
extern double atan2(); |
523 |
– |
|
474 |
|
return(atan2(argument(1), argument(2))); |
475 |
|
} |
476 |
|
|
477 |
|
|
478 |
|
static double |
479 |
< |
l_exp() |
479 |
> |
l_exp(char *nm) |
480 |
|
{ |
531 |
– |
extern double exp(); |
532 |
– |
|
481 |
|
return(exp(argument(1))); |
482 |
|
} |
483 |
|
|
484 |
|
|
485 |
|
static double |
486 |
< |
l_log() |
486 |
> |
l_log(char *nm) |
487 |
|
{ |
540 |
– |
extern double log(); |
541 |
– |
|
488 |
|
return(log(argument(1))); |
489 |
|
} |
490 |
|
|
491 |
|
|
492 |
|
static double |
493 |
< |
l_log10() |
493 |
> |
l_log10(char *nm) |
494 |
|
{ |
549 |
– |
extern double log10(); |
550 |
– |
|
495 |
|
return(log10(argument(1))); |
496 |
|
} |
553 |
– |
#endif |