-
Notifications
You must be signed in to change notification settings - Fork 0
/
runtime.c
116 lines (98 loc) · 2.65 KB
/
runtime.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
//#undef __STDC__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int *initArray(int size, int init) {
int i;
long *a = (long *)malloc(size * sizeof(long));
for (i = 0; i < size; i++) a[i] = init;
return (int *)a;
}
int *allocRecord(int size) {
int i;
int *p, *a;
p = a = (int *)malloc(size);
for (i = 0; i < size; i += sizeof(int)) *p++ = 0;
return a;
}
struct string {
int length;
unsigned char chars[1];
};
int stringEqual(struct string *s, struct string *t) {
int i;
if (s == t) return 1;
if (s->length != t->length) return 0;
for (i = 0; i < s->length; i++)
if (s->chars[i] != t->chars[i]) return 0;
return 1;
}
void print(struct string *s) {
int i;
unsigned char *p = s->chars;
for (i = 0; i < s->length; i++, p++) putchar(*p);
}
void printi(int k) { printf("%d", k); }
void flush() { fflush(stdout); }
struct string consts[256];
struct string empty = {0, ""};
extern int tigermain(int *);
int main() {
int i;
for (i = 0; i < 256; i++) {
consts[i].length = 1;
consts[i].chars[0] = i;
}
return tigermain(0 /* static link */);
}
int ord(struct string *s) {
if (s->length == 0)
return -1;
else
return s->chars[0];
}
struct string *chr(int i) {
if (i < 0 || i >= 256) {
printf("chr(%d) out of range\n", i);
exit(1);
}
return consts + i;
}
int size(struct string *s) { return s->length; }
struct string *substring(struct string *s, int first, int n) {
if (first < 0 || first + n > s->length) {
printf("substring([%d],%d,%d) out of range\n", s->length, first, n);
exit(1);
}
if (n == 1) return consts + s->chars[first];
{
struct string *t = (struct string *)malloc(sizeof(int) + n);
int i;
t->length = n;
for (i = 0; i < n; i++) t->chars[i] = s->chars[first + i];
return t;
}
}
struct string *concat(struct string *a, struct string *b) {
if (a->length == 0)
return b;
else if (b->length == 0)
return a;
else {
int i, n = a->length + b->length;
struct string *t = (struct string *)malloc(sizeof(int) + n);
t->length = n;
for (i = 0; i < a->length; i++) t->chars[i] = a->chars[i];
for (i = 0; i < b->length; i++) t->chars[i + a->length] = b->chars[i];
return t;
}
}
int not(int i) { return !i; }
#undef getchar
struct string *__wrap_getchar() {
int i = getc(stdin);
if (i == EOF)
return ∅
else
return consts + i;
}