about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* 2222Kartik K. Agaram2015-09-303-14/+14
|
* 2221Kartik K. Agaram2015-09-304-19/+46
|
* 2220Kartik K. Agaram2015-09-303-34/+121
|
* 2219Kartik K. Agaram2015-09-301-12/+4
|
* 2218 - check types in instructions much earlierKartik K. Agaram2015-09-3013-132/+177
| | | | | | | | | Front-loads it a bit more than I'd like, but the payoff is that other recipes will now be able to describe the type checks right next to their operation. I'm also introducing a new use of /raw with literals to indicate unsafe typecasts.
* 2217Kartik K. Agaram2015-09-292-0/+0
|
* 2216Kartik K. Agaram2015-09-292-1/+13
|
* 2215Kartik K. Agaram2015-09-291-1/+1
|
* 2214Kartik K. Agaram2015-09-288-33/+39
|
* 2213 - start moving type checks out of 'run'Kartik K. Agaram2015-09-284-43/+88
| | | | | That way we only have to check each static instruction once, rather than every time it runs.
* 2212Kartik K. Agaram2015-09-281-6/+6
|
* 2211Kartik K. Agaram2015-09-281-0/+0
|
* 2209Kartik K. Agaram2015-09-261-4/+4
|
* 2208Kartik K. Agaram2015-09-261-0/+5
|
* 2207Kartik K. Agaram2015-09-261-1/+1
|
* 2206 - fix missing ingredientsKartik K. Agaram2015-09-263-5/+5
| | | | | How the heck was this working until now? There must be redundant moves. And was I clobbering test data?
* 2205 - warn on missing ingredientKartik K. Agaram2015-09-182-1/+13
| | | | ..unless you explicitly ignore the found? result.
* 2204Kartik K. Agaram2015-09-161-2/+8
|
* 2203 - show recipe warnings in 'mu sandbox'Kartik K. Agaram2015-09-152-9/+8
|
* 2202 - don't let editor die on syntax errorsKartik K. Agaram2015-09-153-35/+50
| | | | | Bugfix to 2186. I hadn't taken care of 'reload' as cleanly as I had 'run-interactive'.
* 2201Kartik K. Agaram2015-09-151-2/+4
|
* 2200Kartik K. Agaram2015-09-152-10/+14
|
* 2199 - stop printing numbers in scientific notationKartik K. Agaram2015-09-1413-33/+79
| | | | | | | | | | | Turns out the default format for printing floating point numbers is neither 'scientific' nor 'fixed' even though those are the only two options offered. Reading the C++ standard I found out that the default (modulo locale changes) is basically the same as the printf "%g" format. And "%g" is basically the shorter of: a) %f with trailing zeros trimmed b) %e So we'll just do %f and trim trailing zeros.
* 2197Kartik K. Agaram2015-09-141-1/+1
|
* 2196Kartik K. Agaram2015-09-142-3/+1
|
* 2195Kartik K. Agaram2015-09-141-2/+2
|
* 2194Kartik K. Agaram2015-09-141-2/+2
|
* 2193Kartik K. Agaram2015-09-141-2/+2
|
* 2192Kartik K. Agaram2015-09-141-0/+1
|
* 2191Kartik K. Agaram2015-09-131-28/+26
|
* 2190Kartik K. Agaram2015-09-121-2/+3
|
* 2189Kartik K. Agaram2015-09-121-1/+1
|
* 2188Kartik K. Agaram2015-09-121-2/+2
|
* 2187Kartik K. Agaram2015-09-122-1/+5
|
* 2186 - kill the current routine on first errorKartik K. Agaram2015-09-122-4/+35
| | | | | Exception: allow run-interactive to continue even if it encounters errors in parsing its ingredient as mu code.
* 2185Kartik K. Agaram2015-09-121-0/+1
|
* 2184 - bugfix in trace_countKartik K. Agaram2015-09-122-3/+12
| | | | | | | | | | | | | | | | It was reading lines like this in scenarios: -warn: f: error error as: -warn: f which was causing them to be silently ignored. Also found an insane preprocessor expansion from not parenthesizing preprocessor arguments. SIZE(end+delim) worked even when end was an integer, but it happily didn't ever get the wrong answer.
* 2183 - environment + external editor using tmuxKartik K. Agaram2015-09-1220-19/+8346
| | | | Thanks Jack and Caleb Couch for the idea.
* 2182Kartik K. Agaram2015-09-122-3/+1
|
* 2181 - detect shift-tabKartik K. Agaram2015-09-112-5/+10
| | | | Does nothing useful yet, though.
* 2180 - render the trace even if there's warningsKartik K. Agaram2015-09-102-1/+53
|
* 2179 - undo bugfixKartik K. Agaram2015-09-102-1/+22
|
* 2178 - don't die on divide by 0Kartik K. Agaram2015-09-101-6/+25
|
* 2177Kartik K. Agaram2015-09-0738-9349/+12357
|
* 2176Kartik K. Agaram2015-09-062-3/+35
|
* 2175Kartik K. Agaram2015-09-0655-2999/+3437
|
* 2174Kartik K. Agaram2015-09-061-1/+2
|
* 2173 - 'main' for 'mu edit' running layers 1 and 2Kartik K. Agaram2015-09-061-1/+42
| | | | | | Layer 2 provides an almost fully functioning interactive editor: $ ./mu edit/00[12]* -- abcdef
* 2172 - 'main' for 'mu edit' running just layer 1Kartik K. Agaram2015-09-062-1/+14
| | | | | | | | | Takes the text to render inside the editor on the commandline: $ ./mu edit/001-editor.mu -- abcdef Layer 1 has no interactivity. Just shows the text you pass in on the commandline, wrapping as you would expect. Press any key to exit.
* 2171 - 'main' can take ingredients from the shellKartik K. Agaram2015-09-062-6/+39
| | | | | | | | | | Ingredients of 'main' are always strings (type address:array:character), and are delineated from .mu files to load by a "--", e.g.: $ ./mu x.mu y.mu -- a b c Here 'main' must be defined in one of x.mu and y.mu, and will receive the ingredients "a", "b", and "c".
tter Kartik K. Agaram <vc@akkartik.com> 2015-07-15 22:08:21 -0700 1793 - rudimentary sandboxing for scenarios in the environment' href='/akkartik/mu/commit/081run_interactive.cc?h=main&id=2c3afb53dda7c83c70be4c12bd76930fe568b860'>2c3afb53 ^
b24eb476 ^
2c3afb53 ^
2c3afb53 ^
78c50205 ^
23d3a022 ^
795f5244 ^
0f0d3e7a ^
2429c65c ^
75a00270 ^


87fbfc2d ^
7ecb3374 ^
f8a6721d ^
760f683f ^
5db2faeb ^
32cd40ec ^
5db2faeb ^
1ead3562 ^
32cd40ec ^
87fbfc2d ^
75a00270 ^
5f98a10c ^
5db2faeb ^

77cdc6d0 ^
c442a5ad ^


77cdc6d0 ^
795f5244 ^
b17c196d ^
87fbfc2d ^
12c3ee1e ^
2429c65c ^


b2f699e1 ^
2429c65c ^





28103e50 ^
61fb1da0 ^

1625e908 ^
2429c65c ^
0f0d3e7a ^
06584c52 ^
5f98a10c ^
a0b9fa55 ^
b2f699e1 ^

0f0d3e7a ^
2429c65c ^
06584c52 ^
c442a5ad ^
6bcdfa87 ^
06584c52 ^
092cede5 ^

06584c52 ^


5f98a10c ^
a0b9fa55 ^
b2f699e1 ^

9e0f70d5 ^


06584c52 ^

6bcdfa87 ^
06584c52 ^
06584c52 ^
c442a5ad ^
322ce34d ^
2429c65c ^





9e4f1844 ^
2429c65c ^
9e4f1844 ^
2429c65c ^
9e4f1844 ^
2429c65c ^
9e4f1844 ^
2429c65c ^
9e4f1844 ^
2429c65c ^
9e4f1844 ^
2429c65c ^
28103e50 ^

61fb1da0 ^



2429c65c ^









28103e50 ^
61fb1da0 ^

06584c52 ^

257add0f ^
5db2faeb ^




23d3a022 ^
760f683f ^
7a84094a ^
8ee53369 ^

23d3a022 ^
7a84094a ^
8ee53369 ^
7a84094a ^
80df524b ^
23d3a022 ^
d559f68b ^
23d3a022 ^

d559f68b ^

1625e908 ^
1ead3562 ^
5db2faeb ^
5db2faeb ^
5ed9bb13 ^
3e31f29a ^

4814bf94 ^
4a943d4e ^













1d13dac8 ^
5db2faeb ^


795f5244 ^
166e3c0d ^



5db2faeb ^


09125ea2 ^
5db2faeb ^





795f5244 ^
166e3c0d ^



5db2faeb ^








795f5244 ^
166e3c0d ^



5db2faeb ^


23d3a022 ^
78c50205 ^
5db2faeb ^



05331766 ^
5f98a10c ^
05331766 ^
5f98a10c ^
05331766 ^
5f98a10c ^


05331766 ^
5f98a10c ^
23d3a022 ^
5ed9bb13 ^
5f98a10c ^



7afe09fb ^
5db2faeb ^
795f5244 ^
166e3c0d ^
7afe09fb ^
166e3c0d ^

5db2faeb ^
7afe09fb ^
5db2faeb ^
23d3a022 ^
e00d4854 ^
5db2faeb ^



1625e908 ^
5db2faeb ^
1625e908 ^
166e3c0d ^
1625e908 ^
166e3c0d ^

5db2faeb ^
1625e908 ^
06584c52 ^
5db2faeb ^


4a943d4e ^












































































































































957ca9c9 ^
d35595fd ^





3eb81335 ^
09125ea2 ^
d35595fd ^
23d3a022 ^
90938fcb ^
9fdda88b ^
d35595fd ^
9fdda88b ^
b24eb476 ^
9e0f70d5 ^









76d22198 ^
78c50205 ^
23d3a022 ^

76d22198 ^

76d22198 ^
b24eb476 ^
4082acd2 ^
9fdda88b ^

d35595fd ^
9fdda88b ^
f2564285 ^
9fdda88b ^
be13beeb ^

b24eb476 ^
be13beeb ^



957ca9c9 ^
be13beeb ^
be13beeb ^

be13beeb ^


b24eb476 ^
548cd00a ^

795f5244 ^
78c50205 ^
548cd00a ^

b24eb476 ^
5f98a10c ^


5ed9bb13 ^
5f98a10c ^



5f98a10c ^
294b2ab3 ^
78c50205 ^
5f98a10c ^

b24eb476 ^
0685569c ^
0685569c ^

e00d4854 ^
0685569c ^


0cfc678f ^
e00d4854 ^
0cfc678f ^
78c50205 ^
0cfc678f ^


fda4f091 ^

0cfc678f ^



0685569c ^
f0eb3556 ^
1625e908 ^
5ed9bb13 ^
06584c52 ^
f0eb3556 ^


795f5244 ^
166e3c0d ^
f0eb3556 ^
166e3c0d ^
8d72e565 ^
e4630643 ^

78c50205 ^
9dcbec39 ^
e4630643 ^

166e3c0d ^



093036e8 ^
23d3a022 ^
0f0d3e7a ^
06584c52 ^

1625e908 ^
0a2026a6 ^
f0eb3556 ^
4efc0ff3 ^
1625e908 ^
06584c52 ^
cfb142b9 ^
23d3a022 ^
5ed9bb13 ^
06584c52 ^
f0eb3556 ^

06584c52 ^
4a943d4e ^






























































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
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711