79 | 79 |
prelude &
|
80 | 80 |
tamsin_parser:find_module('main', Ms) → MainMod &
|
81 | 81 |
get_prods(MainMod) → MMPs &
|
82 | |
compile_all(program(Ms), MMPs) &
|
|
82 |
compile_all(program(Ms), nil, MMPs) &
|
83 | 83 |
postlude &
|
84 | 84 |
''.
|
85 | 85 |
|
|
92 | 92 |
emitln('();') &
|
93 | 93 |
emit_prototypes(MMPs).
|
94 | 94 |
|
95 | |
compile_all(P, nil) = 'ok'.
|
96 | |
compile_all(P, list(H,T)) = compile_r(P, H) & compile_all(P, T).
|
97 | |
|
98 | |
compile_r(P, production(N, Bs)) =
|
|
95 |
compile_all(P, B, nil) = 'ok'.
|
|
96 |
compile_all(P, B, list(H,T)) = compile_r(P, B, H) & compile_all(P, B, T).
|
|
97 |
|
|
98 |
compile_r(P, B, production(N, Bs)) =
|
99 | 99 |
emit('void prod_main_') &
|
100 | 100 |
emit(N) &
|
101 | 101 |
emitln('() {') &
|
102 | 102 |
indent &
|
103 | |
compile_all(P, Bs) &
|
104 | |
outdent &
|
105 | |
emitln('}').
|
106 | |
|
107 | |
compile_r(P, prodbranch(Fs, Ls, E)) =
|
|
103 |
compile_all(P, B, Bs) &
|
|
104 |
outdent &
|
|
105 |
emitln('}').
|
|
106 |
|
|
107 |
compile_r(P, B, prodbranch(Fs, Ls, E)) =
|
108 | 108 |
emitln('/* formals and locals go here... */') &
|
109 | |
compile_r(P, E).
|
110 | |
|
111 | |
compile_r(P, call(prodref('$', 'expect'), list(T, nil))) =
|
|
109 |
compile_r(P, prodbranch(Fs, Ls, E), E).
|
|
110 |
|
|
111 |
compile_r(P, B, call(prodref('$', 'expect'), list(T, nil))) =
|
112 | 112 |
emit_term(T, 'temp') &
|
113 | 113 |
emitln('tamsin_expect(scanner, temp);').
|
114 | 114 |
|
115 | |
compile_r(P, call(prodref('$', 'return'), list(T, nil))) =
|
|
115 |
compile_r(P, B, call(prodref('$', 'return'), list(T, nil))) =
|
116 | 116 |
emit_term(T, 'temp') &
|
117 | 117 |
emitln('result = temp;') &
|
118 | 118 |
emitln('ok = 1;').
|
119 | 119 |
|
120 | |
compile_r(P, call(prodref('$', 'print'), list(T, nil))) =
|
|
120 |
compile_r(P, B, call(prodref('$', 'print'), list(T, nil))) =
|
121 | 121 |
emit_term(T, 'temp') &
|
122 | 122 |
emitln('result = temp;') &
|
123 | 123 |
emitln('term_fput(result, stdout);') &
|
124 | 124 |
emitln('fprintf(stdout, "\\n");') &
|
125 | 125 |
emitln('ok = 1;').
|
126 | 126 |
|
127 | |
compile_r(P, call(prodref(M, N), A)) =
|
|
127 |
compile_r(P, B, call(prodref(M, N), A)) =
|
128 | 128 |
emit('prod_main_') &
|
129 | 129 |
emit(N) &
|
130 | 130 |
emitln('();').
|
131 | 131 |
|
132 | |
compile_r(P, and(L, R)) =
|
133 | |
compile_r(P, L) &
|
|
132 |
compile_r(P, B, and(L, R)) =
|
|
133 |
compile_r(P, B, L) &
|
134 | 134 |
emitln('if (ok) {') &
|
135 | 135 |
indent &
|
136 | |
compile_r(P, R) &
|
137 | |
outdent &
|
138 | |
emitln('}').
|
139 | |
|
140 | |
compile_r(P, or(L, R)) =
|
|
136 |
compile_r(P, B, R) &
|
|
137 |
outdent &
|
|
138 |
emitln('}').
|
|
139 |
|
|
140 |
compile_r(P, B, or(L, R)) =
|
141 | 141 |
emitln('{') &
|
142 | 142 |
indent &
|
143 | |
emit_decl_state &
|
144 | |
emit_save_state &
|
145 | |
compile_r(P, L) &
|
|
143 |
emit_decl_state(B) &
|
|
144 |
emit_save_state(B) &
|
|
145 |
compile_r(P, B, L) &
|
146 | 146 |
emitln('if (!ok) {') &
|
147 | 147 |
indent &
|
148 | |
emit_restore_state &
|
149 | |
compile_r(P, R) &
|
|
148 |
emit_restore_state(B) &
|
|
149 |
compile_r(P, B, R) &
|
150 | 150 |
outdent &
|
151 | 151 |
emitln('}') &
|
152 | 152 |
outdent &
|
153 | 153 |
emitln('}').
|
154 | |
compile_r(P, send(R, V)) =
|
155 | |
compile_r(P, R) &
|
|
154 |
compile_r(P, B, send(R, V)) =
|
|
155 |
compile_r(P, B, R) &
|
156 | 156 |
emit(V) &
|
157 | 157 |
emitln(' = result;').
|
158 | |
compile_r(P, set(V, T)) =
|
|
158 |
compile_r(P, B, set(V, T)) =
|
159 | 159 |
emit_term(T, 'temp') &
|
160 | 160 |
emitln('result = temp;') &
|
161 | 161 |
emit(V) &
|
162 | 162 |
emitln(' = result;') &
|
163 | 163 |
emitln('ok = 1;').
|
164 | |
compile_r(P, while(R)) =
|
|
164 |
compile_r(P, B, while(R)) =
|
165 | 165 |
emitln('{') &
|
166 | 166 |
indent &
|
167 | |
emit_decl_state &
|
|
167 |
emit_decl_state(B) &
|
168 | 168 |
emit_term(atom(nil), 'successful_result') &
|
169 | 169 |
emitln('ok = 1;') &
|
170 | 170 |
emitln('while (ok) {') &
|
171 | 171 |
indent &
|
172 | |
emit_save_state &
|
173 | |
compile_r(P, R) &
|
|
172 |
emit_save_state(B) &
|
|
173 |
compile_r(P, B, R) &
|
174 | 174 |
emitln('if (ok) {') &
|
175 | 175 |
indent &
|
176 | 176 |
emitln('successful_result = result;') &
|
|
178 | 178 |
emitln('}') &
|
179 | 179 |
outdent &
|
180 | 180 |
emitln('}') & # endwhile
|
181 | |
emit_restore_state &
|
|
181 |
emit_restore_state(B) &
|
182 | 182 |
emitln('result = successful_result;') &
|
183 | 183 |
emitln('ok = 1;') &
|
184 | 184 |
outdent &
|
185 | 185 |
emitln('}').
|
186 | 186 |
|
187 | |
emit_decl_state = 'ok'.
|
188 | |
emit_save_state = 'ok'.
|
189 | |
emit_restore_state = 'ok'.
|
|
187 |
|
|
188 |
|
|
189 |
emit_decl_state(prodbranch(Fs, Ls, E)) =
|
|
190 |
emit_decl_state_locals(Ls) &
|
|
191 |
emitln('int position;') &
|
|
192 |
emitln('int reset_position;').
|
|
193 |
|
|
194 |
emit_decl_state_locals(nil) = 'ok'.
|
|
195 |
emit_decl_state_locals(list(H,T)) =
|
|
196 |
emit('struct term *save_') &
|
|
197 |
emit(H) &
|
|
198 |
emitln(';') &
|
|
199 |
emit_decl_state_locals(T).
|
|
200 |
|
|
201 |
emit_save_state(prodbranch(Fs, Ls, E)) =
|
|
202 |
emit_save_state_locals(Ls) &
|
|
203 |
emitln('position = scanner->position;') &
|
|
204 |
emitln('reset_position = scanner->reset_position;').
|
|
205 |
|
|
206 |
emit_save_state_locals(nil) = 'ok'.
|
|
207 |
emit_save_state_locals(list(H,T)) =
|
|
208 |
emit('save_') &
|
|
209 |
emit(H) &
|
|
210 |
emit(' = ') &
|
|
211 |
emit(H) &
|
|
212 |
emitln(';') &
|
|
213 |
emit_save_state_locals(T).
|
|
214 |
|
|
215 |
emit_restore_state(prodbranch(Fs, Ls, E)) =
|
|
216 |
emitln('scanner->position = position;') &
|
|
217 |
emitln('scanner->reset_position = reset_position;') &
|
|
218 |
emit_restore_state_locals(Ls).
|
|
219 |
|
|
220 |
emit_restore_state_locals(nil) = 'ok'.
|
|
221 |
emit_restore_state_locals(list(H,T)) =
|
|
222 |
emit(H) &
|
|
223 |
emit(' = ') &
|
|
224 |
emit('save_') &
|
|
225 |
emit(H) &
|
|
226 |
emitln(';') &
|
|
227 |
emit_restore_state_locals(T).
|
|
228 |
|
|
229 |
|
190 | 230 |
|
191 | 231 |
emit_term(variable(VN), N) =
|
192 | 232 |
emit('struct term *') &
|