about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 405 - permit loading just low levels of codebaseKartik K. Agaram2014-12-136-8/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | When I'm doing extensive surgery to the internals I want to avoid loading higher levels; they aren't expected to work. But I don't want to keep different levels in separate files just for that. And I definitely don't want to put low-level stuff first. Now I can influence loading in a cross-cutting manner by creating sections with numbers: (section 100 ...code...) And disabling them by running: $ ./anarki/arc 99 mu.arc.t Currently we load all mu 'system software' in level 100, so running at level 99 sidesteps them. Lower levels coming soon. But most of the time we don't need to worry about levels, and the 'mu' script lets us forget about them. Just run .mu files with: $ ./mu factorial.mu To run tests: $ ./mu test mu.arc.t
* 404Kartik K. Agaram2014-12-121-1/+1
|
* 403 - 'function' is more clear than 'def'Kartik K. Agaram2014-12-1211-185/+185
|
* 402Kartik K. Agaram2014-12-121-0/+1
|
* 401 - stop abbreviating opsKartik K. Agaram2014-12-128-163/+169
| | | | | We expect users to come across mu from arbitrary bits of code, so try to make each line as self-contained as possible.
* 400 - another fixKartik K. Agaram2014-12-081-15/+16
|
* 399 - fix mu examplesKartik K. Agaram2014-12-082-4/+4
| | | | Thanks Kristis Makris for the bug report.
* 398 - new space for forked routinesKartik K. Agaram2014-12-042-28/+33
| | | | | Hack: currently restricted to 1000 locations per routine, no way to grow past that. That suffices to pass our failing test.
* 397 - routines encapsulate allocator stateKartik K. Agaram2014-12-042-111/+137
| | | | Still incomplete; one test temporarily disabled.
* 396Kartik K. Agaram2014-12-031-48/+40
|
* 395Kartik K. Agaram2014-12-031-9/+9
|
* 394Kartik K. Agaram2014-12-031-1/+1
|
* 393 - 'defer' should now support all kinds of exitsKartik K. Agaram2014-12-032-1/+26
|
* 392Kartik K. Agaram2014-12-031-7/+11
|
* 391 - start fleshing out 'defer'Kartik K. Agaram2014-12-032-0/+25
|
* 390Kartik K. Agaram2014-11-291-2/+2
|
* 389Kartik K. Agaram2014-11-291-2/+1
|
* 388Kartik K. Agaram2014-11-291-2/+2
|
* 387Kartik K. Agaram2014-11-291-2/+3
|
* 386Kartik K. Agaram2014-11-291-60/+60
|
* 385Kartik K. Agaram2014-11-291-3/+3
|
* 384Kartik K. Agaram2014-11-291-22/+22
|
* 383Kartik K. Agaram2014-11-291-2/+1
|
* 382 - varargs 'interpolate'Kartik K. Agaram2014-11-292-9/+64
| | | | Brilliant, now I didn't need any low-level changes.
* 381Kartik K. Agaram2014-11-291-11/+2
|
* 380Kartik K. Agaram2014-11-291-0/+21
| | | | | A test attempted earlier that now passes from free. Might as well keep it.
* 379Kartik K. Agaram2014-11-292-9/+63
|
* 378Kartik K. Agaram2014-11-281-0/+20
|
* 377Kartik K. Agaram2014-11-281-45/+37
|
* 376 - similarly simplify record helpersKartik K. Agaram2014-11-282-8/+25
|
* 375 - reorg testsKartik K. Agaram2014-11-281-239/+189
|
* 374 - simplify array helpersKartik K. Agaram2014-11-282-21/+35
|
* 373Kartik K. Agaram2014-11-281-6/+5
|
* 372 - size check for arraysKartik K. Agaram2014-11-282-2/+10
|
* 371 - bugfix: don't read destination when writing arrayKartik K. Agaram2014-11-282-4/+21
| | | | | Finally we've gotten to one of the top-level bugs uncovered by 'interpolate'.
* 370 - unit tests for 'setm'Kartik K. Agaram2014-11-282-4/+50
|
* 369Kartik K. Agaram2014-11-281-4/+4
|
* 368 - replace 'sz' with our new 'sizeof'Kartik K. Agaram2014-11-282-21/+20
|
* 367 - start of unit tests for 'm'Kartik K. Agaram2014-11-281-0/+15
|
* 366 - reorg run's helpersKartik K. Agaram2014-11-281-142/+155
| | | | | First step to using our new 'deref' and 'absolutize' helpers more coherently.
* 365 - new primitives let us generalize 'addr'Kartik K. Agaram2014-11-282-4/+8
|
* 364Kartik K. Agaram2014-11-281-16/+2
|
* 363Kartik K. Agaram2014-11-282-1/+29
|
* 362Kartik K. Agaram2014-11-282-0/+4
| | | | Gaining confidence..
* 361 - *now* 'sizeof' on array pointersKartik K. Agaram2014-11-282-0/+7
|
* 360 - back up, let's create a new 'deref' helperKartik K. Agaram2014-11-282-0/+21
|
* 359 - 'sizeof' supports 'deref' pointersKartik K. Agaram2014-11-282-1/+8
| | | | Just non-arrays for now.
* 358 - start of 'sizeof' support for arraysKartik K. Agaram2014-11-282-0/+16
|
* 357Kartik K. Agaram2014-11-281-0/+10
|
* 356 - high time 'sizeof' supported operandsKartik K. Agaram2014-11-282-12/+23
|