about summary refs log tree commit diff stats
path: root/tangle.mu
Commit message (Collapse)AuthorAgeFilesLines
* 2746Kartik K. Agaram2016-03-091-1/+1
|
* 2735 - define recipes using 'def'Kartik K. Agaram2016-03-081-3/+3
| | | | | | | | | | | | I'm dropping all mention of 'recipe' terminology from the Readme. That way I hope to avoid further bike-shedding discussions while I very slowly decide on the right terminology with my students. I could be smarter in my error messages and use 'recipe' when code uses it and 'function' otherwise. But what about other words like ingredient? It would all add complexity that I'm not yet sure is worthwhile. But I do want separate experiences for veteran programmers reading about Mu on github and for people learning programming using Mu.
* 2426Kartik K. Agaram2015-11-111-4/+3
|
* 2235Kartik K. Agaram2015-10-021-4/+4
|
* 1880 - switch .mu files to new type-deducing idiomKartik K. Agaram2015-07-291-6/+6
|
* 1868 - start using naked literals everywhereKartik K. Agaram2015-07-281-4/+4
| | | | First step to reducing typing burden. Next step: inferring types.
* 1780 - now we always reclaim local scopesKartik K. Agaram2015-07-131-1/+1
| | | | | | But still no difference in either memory footprint or in running time. This will teach me -- for the umpteenth time -- to optimize before measuring.
* 1773 - update all mu recipes to new-default-spaceKartik K. Agaram2015-07-131-1/+1
| | | | | Turns out to not affect memory utilization or run-time. At all. But still looks nicer and requires less fudging on our part.
* 1363 - rename 'integer' to 'number'Kartik K. Agaram2015-05-131-8/+8
| | | | ..now that we support non-integers.
* 1345Kartik K. Agaram2015-05-111-3/+6
|
* 1298 - better ingredient/product handlingKartik K. Agaram2015-05-071-3/+1
| | | | | | | | | | | | | | | | | | | All primitives now always write to all their products. If a product is not used that's fine, but if an instruction seems to expect too many products mu will complain. In the process, many primitives can operate on more than two ingredients where it seems intuitive. You can add or divide more than two numbers together, copy or negate multiple corresponding locations, etc. There's one remaining bit of ugliness. Some instructions like get/get-address, index/index-address, wait-for-location, these can unnecessarily load values from memory when they don't need to. Useful vim commands: %s/ingredients\[\([^\]]*\)\]/ingredients.at(\1)/gc %s/products\[\([^\]]*\)\]/products.at(\1)/gc .,$s/\[\(.\)]/.at(\1)/gc
* 1278 - support before/after tangle directivesKartik K. Agaram2015-05-051-0/+36
| | | | | No way to only insert code at a label in a specific recipe. Let's see how that goes.
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-051-35/+0
| | | | I've tried to update the Readme, but there are at least a couple of issues.
* 690 - convention: '$' commands for debugging onlyKartik K. Agaram2015-02-011-2/+2
| | | | | | Swap printing generalized objects using arc's infrastructure to be the $-prefixed debug helper, while the erstwhile $print-key-to-host becomes the primitive print-character to host.
* 578 - switch to non-polymorphic 'print' functionsKartik K. Agaram2015-01-171-1/+1
| | | | | Also clean up various prints from last few commits. As a convention, for debugging we always print directly to host.
* 574 - printing string literals is a hack; hard-code it in for nowKartik K. Agaram2015-01-161-2/+2
|
* 571 - screen primitives take an explicit terminalKartik K. Agaram2015-01-151-3/+3
| | | | | | | | | | | | | | | | | This will let me swap in a fake in tests. Still hacky, though. I'm sure I'm not managing the parameter right in the chessboard app. And then there's the question of whether it should also appear as an output operand. But it's a start. And using nil to mean 'real' is a reasonable convention. If I ever need to handle multiple screens perhaps we'll have to switch to 1:literal/terminal and 2:literal/terminal, etc. But those are equally easy to guard on.
* 497 - strengthen the concept of 'space'Kartik K. Agaram2015-01-021-1/+1
| | | | | | | | | | | | | | | | | | | | 'default-scope' is now 'default-space' 'closure-generator' is now 'next-space-generator' The connection to high-level syntax for closures is now tenuous, so we'll call the 'outer scope' the 'next space'. So, let's try to create a few sentences with all these related ideas: Names map to addresses offset from a default-space when it's provided. Spaces can be strung together. The zeroth variable points to the next space, the one that is accessed when a variable has /space:1. To map a name to an address in the next space, you need to know what function generated that space. A corollary is that the space passed in to a function should always be generated by a single function. Spaces can be used to construct lexical scopes and objects.
* 428 - cleanup odds and endsKartik K. Agaram2014-12-141-13/+13
|
* 403 - 'function' is more clear than 'def'Kartik K. Agaram2014-12-121-2/+2
|
* 401 - stop abbreviating opsKartik K. Agaram2014-12-121-4/+4
| | | | | We expect users to come across mu from arbitrary bits of code, so try to make each line as self-contained as possible.
* 321 - before/after can now come anywhereKartik K. Agaram2014-11-241-24/+9
| | | | | | This pollutes our traces with all 'system software'. Too much trouble to keep it out; just lump it for now. Who knows, might even be useful. Most of the time convert* labels are easy to grep out when debugging.
* 319 - ack, forgot to handle blocks when tanglingKartik K. Agaram2014-11-241-0/+50
Will the 'lightweight tools' really be all that useable if we encourage people to layer them one atop another and track precisely what inputs each can accept? Something to keep an eye on. In the meanwhile, we have a new (but very unrealistic) example demonstrating the tangling directives. There's still a big constraint on ordering: before/after clauses have to come before functions that need them.
6continuation.cc?h=hlt&id=b74744cd5851e034a88d4a335b22a372ebb39237'>^
53ba69a7 ^
f8f22245 ^
d82d9035 ^
53ba69a7 ^





53930831 ^



53ba69a7 ^








d82d9035 ^









53930831 ^


87374384 ^





53930831 ^
87374384 ^
a3195d44 ^
53930831 ^

a3195d44 ^
53930831 ^






d37c983a ^


53930831 ^



7fb1017b ^


53930831 ^


5059f32d ^
f8f22245 ^
53930831 ^
d82d9035 ^
4856c701 ^


53930831 ^

a3195d44 ^
87374384 ^
53930831 ^









4c513685 ^
f8f22245 ^
53930831 ^




f8f22245 ^
53930831 ^
f8f22245 ^
53930831 ^




c6ab07f7 ^
03d673bb ^

a3195d44 ^
fe63e0d6 ^
03d673bb ^
87374384 ^
acce384b ^
03d673bb ^

fe63e0d6 ^
03d673bb ^

53930831 ^
fa76b0b5 ^

3b776ac3 ^
03d673bb ^
a3195d44 ^
0e1ebc3e ^


5059f32d ^
0e1ebc3e ^






5059f32d ^
0e1ebc3e ^

0e1ebc3e ^
0e1ebc3e ^
5059f32d ^


















07de3e95 ^



5059f32d ^
07de3e95 ^








5059f32d ^

1cd83361 ^
07de3e95 ^
5059f32d ^
07de3e95 ^
1cd83361 ^


5059f32d ^

1cd83361 ^



5059f32d ^

1cd83361 ^
07de3e95 ^
20252c5e ^

5059f32d ^
20252c5e ^



5059f32d ^
20252c5e ^


1cd83361 ^


5059f32d ^
1cd83361 ^




5059f32d ^
1cd83361 ^




a3195d44 ^




87374384 ^
2a81a547 ^








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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370