aboutsummaryrefslogtreecommitdiff
path: root/store/works/life/compile-principle-experiment/4/main.c
blob: 258ccc724c25060edb23fad4a2bae54331dee51e (plain)
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
#include "main.h"

#include "syn.h"

#include <errno.h>
#include <math.h>
#include <setjmp.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

static Symbol *symlist = 0; /* symbol table: linked list */

void *emalloc(size_t n) /* check return from malloc */
{
  void *p = malloc(n);
  if (p == 0)
    execerror("out of memory", (char *)0);
  return p;
}

Symbol *cru_symbol_lookup(const char *name) {
  for (Symbol *sp = symlist; sp != NULL; sp = sp->next)
    if (strcmp(sp->name, name) == 0)
      return sp;
  return NULL;
}

Symbol *cru_symbol_install(const char *name, int type, SymbolValue value) {
  Symbol *sp = (Symbol *)emalloc(sizeof(Symbol));
  sp->name = emalloc(strlen(name) + 1);
  strcpy(sp->name, name);
  sp->type = type;
  sp->value = value;
  sp->next = symlist;
  symlist = sp;
  return sp;
}

jmp_buf begin;
int lineno;

void warning(const char *s, const char *t) {
  fprintf(stderr, "%s", s);
  if (t)
    fprintf(stderr, " %s", t);
  fprintf(stderr, " near line %d\n", lineno);
}

void yyerror(const char *s) { warning(s, NULL); }

void execerror(const char *s, const char *t) {
  warning(s, t);
  longjmp(begin, 0);
}

double errcheck(double result, const char *name) {
  if (errno == EDOM) {
    errno = 0;
    execerror(name, "argument out of domain");
  } else if (errno == ERANGE) {
    errno = 0;
    execerror(name, "result out of range");
  }
  return result;
}

double Log(double x) { return errcheck(log(x), "log"); }
double Log10(double x) { return errcheck(log10(x), "log10"); }
double Sqrt(double x) { return errcheck(sqrt(x), "sqrt"); }
double Exp(double x) { return errcheck(exp(x), "exp"); }
double Pow(double x, double y) { return errcheck(pow(x, y), "exponentiation"); }
double integer(double x) { return (double)(long)x; }

static struct { /* Constants */
  char *name;
  double cval;
} consts[] = {
    {"PI", 3.14159265358979323846},    {"E", 2.71828182845904523536},
    {"GAMMA", 0.57721566490153286060}, {"DEG", 57.29577951308232087680},
    {"PHI", 1.61803398874989484820},
};

static struct { /* Built-ins */
  char *name;
  double (*func)();
} builtins[] = {
    {"sin", sin},   {"cos", cos},     {"atan", atan},
    {"log", Log},   {"log10", Log10}, {"exp", Exp},
    {"sqrt", Sqrt}, {"int", integer}, {"abs", fabs},
};

int initcode();
int execute(Inst *p);

void init() {
  initcode();
  for (int i = 0; i < sizeof(consts) / sizeof(*consts); i++)
    cru_symbol_install(consts[i].name, VAR, (SymbolValue)consts[i].cval);
  for (int i = 0; i < sizeof(builtins) / sizeof(*builtins); i++) {
    cru_symbol_install(builtins[i].name, BLTIN, (SymbolValue)builtins->func);
  }
}

int main(int argc, char **argv) {
  init();
  (void)setjmp(begin);
  yyparse();
  execute(prog);

  return 0;
}

#define NSTACK 256
static Datum stack[NSTACK]; /* the stack */
static Datum *stackp;       /* next free spot on stack */

#define NPROG 2000
Inst prog[NPROG]; /* the machine */
Inst *progp;      /* next free spot for code generation */
Inst *pc;         /* program counter during execution */

int initcode() /* initialize for code generation */
{
  stackp = stack;
  progp = prog;
  return 0;
}

int push(Datum d) /* push d onto stack */
{
  if (stackp >= &stack[NSTACK])
    execerror("stack overflow", (char *)0);
  *stackp++ = d;
  return 0;
}

Datum pop() /* pop and return top elem from stack */
{
  if (stackp <= stack)
    execerror("stack underflow", (char *)0);
  return *--stackp;
}

int constpush() /* push constant onto stack */
{
  Datum d;
  d.val = ((Symbol *)*pc++)->value.val;
  push(d);
  return 0;
}

int varpush() /* push variable onto stack */
{
  Datum d;
  d.sym = (Symbol *)(*pc++);
  push(d);
  return 0;
}

int bltin() /* evaluate built-in on top of stack */
{
  Datum d;
  d = pop();
  d.val = (*(double (*)())(*pc++))(d.val);
  push(d);
  return 0;
}

int eval() /* evaluate variable on stack */
{
  Datum d;
  d = pop();
  if (d.sym->type == UNDEF)
    execerror("undefined variable", d.sym->name);
  d.val = d.sym->value.val;
  push(d);
  return 0;
}

int add() /* add top two elems on stack */
{
  Datum d1, d2;
  d2 = pop();
  d1 = pop();
  d1.val += d2.val;
  push(d1);
  return 0;
}

int sub() /* subtract top of stack from next */
{
  Datum d1, d2;
  d2 = pop();
  d1 = pop();
  d1.val -= d2.val;
  push(d1);
  return 0;
}

int mul() {
  Datum d1, d2;
  d2 = pop();
  d1 = pop();
  d1.val *= d2.val;
  push(d1);
  return 0;
}

int mydiv() {
  Datum d1, d2;
  d2 = pop();
  if (d2.val == 0.0)
    execerror("division by zero", (char *)0);
  d1 = pop();
  d1.val /= d2.val;
  push(d1);
  return 0;
}

int negate() {
  Datum d;
  d = pop();
  d.val = -d.val;
  push(d);
  return 0;
}

int power() {
  Datum d1, d2;
  extern double Pow();
  d2 = pop();
  d1 = pop();
  d1.val = Pow(d1.val, d2.val);
  push(d1);
  return 0;
}

int assign() /* assign top value to next value */
{
  Datum d1, d2;
  d1 = pop();
  d2 = pop();
  if (d1.sym->type != VAR && d1.sym->type != UNDEF)
    execerror("assignment to non-variable", d1.sym->name);
  d1.sym->value.val = d2.val;
  d1.sym->type = VAR;
  push(d2);
  return 0;
}

int print() /* pop top value from stack, print it */
{
  Datum d;
  d = pop();
  printf("\t%.8g\n", d.val);
  return 0;
}

Inst *code(Inst f) /* install one instruction or operand */
{
  Inst *oprogp = progp;
  if (progp >= &prog[NPROG])
    execerror("program too big", (char *)0);
  *progp++ = f;
  return oprogp;
}

int execute(Inst *p) /* run the machine */
{
  for (pc = p; *pc != STOP;)
    (*(*pc++))();
  return 0;
}

int mypop() {
  pop();
  return 0;
}