about summary refs log tree commit diff stats
path: root/mu.arc.t
Commit message (Collapse)AuthorAgeFilesLines
* 427 - ..and we're back. All mu.arc.t tests passing.Kartik K. Agaram2014-12-141-126/+136
|
* 424 - layer 20 passingKartik K. Agaram2014-12-141-650/+666
| | | | Seemingly large diff but most changes are peephole.
* 422Kartik K. Agaram2014-12-141-6/+7
| | | | Further cleanup of convert-names tests.
* 421Kartik K. Agaram2014-12-141-0/+4
|
* 420 - no unnecessary structure in testsKartik K. Agaram2014-12-141-84/+83
| | | | It makes them harder to appreciate.
* 419 - layer 11 now passingKartik K. Agaram2014-12-141-30/+46
|
* 418 - more progress in layer 11Kartik K. Agaram2014-12-141-62/+30
| | | | | | | | | With the notion of layers we add the constraint of only being able to formulate loop tests without 'run' -- otherwise they'd have to leave layer 11 because they have so many more dependencies. Might bring back the run-based tests afresh later. Especially since loop-fail test is now totally gone.
* 417 - partially through layer 11Kartik K. Agaram2014-12-141-191/+197
|
* 416 - renumber layers, but still passing until layer 10Kartik K. Agaram2014-12-131-8/+8
| | | | $ arc load.arc 10 mu.arc.t
* 415Kartik K. Agaram2014-12-131-0/+2
|
* 414Kartik K. Agaram2014-12-131-119/+119
|
* 413Kartik K. Agaram2014-12-131-1/+1
|
* 412 - tests passing at level 10Kartik K. Agaram2014-12-131-11/+13
|
* 411 - 'tokenize-args' must handle blocksKartik K. Agaram2014-12-131-0/+16
|
* 409 - new arg representationKartik K. Agaram2014-12-131-56/+116
| | | | | Tests only passing at level 9: $ arc load.arc 9 mu.arc.t
* 408Kartik K. Agaram2014-12-131-15/+15
| | | | Within a level we can now just rely on simple ordering.
* 406 - mu tests run at level 10Kartik K. Agaram2014-12-131-28/+12
| | | | We're now going to start doing surgery on low-level helpers.
* 405 - permit loading just low levels of codebaseKartik K. Agaram2014-12-131-1/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* 403 - 'function' is more clear than 'def'Kartik K. Agaram2014-12-121-164/+164
|
* 401 - stop abbreviating opsKartik K. Agaram2014-12-121-73/+73
| | | | | We expect users to come across mu from arbitrary bits of code, so try to make each line as self-contained as possible.
* 398 - new space for forked routinesKartik K. Agaram2014-12-041-27/+27
| | | | | 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-041-96/+118
| | | | 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-031-0/+22
|
* 391 - start fleshing out 'defer'Kartik K. Agaram2014-12-031-0/+21
|
* 386Kartik K. Agaram2014-11-291-60/+60
|
* 382 - varargs 'interpolate'Kartik K. Agaram2014-11-291-1/+20
| | | | Brilliant, now I didn't need any low-level changes.
* 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-291-0/+48
|
* 378Kartik K. Agaram2014-11-281-0/+20
|
* 376 - similarly simplify record helpersKartik K. Agaram2014-11-281-0/+18
|
* 375 - reorg testsKartik K. Agaram2014-11-281-239/+189
|
* 374 - simplify array helpersKartik K. Agaram2014-11-281-1/+18
|
* 372 - size check for arraysKartik K. Agaram2014-11-281-0/+5
|
* 371 - bugfix: don't read destination when writing arrayKartik K. Agaram2014-11-281-1/+11
| | | | | Finally we've gotten to one of the top-level bugs uncovered by 'interpolate'.
* 370 - unit tests for 'setm'Kartik K. Agaram2014-11-281-0/+43
|
* 368 - replace 'sz' with our new 'sizeof'Kartik K. Agaram2014-11-281-0/+14
|
* 367 - start of unit tests for 'm'Kartik K. Agaram2014-11-281-0/+15
|
* 365 - new primitives let us generalize 'addr'Kartik K. Agaram2014-11-281-0/+3
|
* 363Kartik K. Agaram2014-11-281-0/+15
|
* 362Kartik K. Agaram2014-11-281-0/+3
| | | | Gaining confidence..
* 361 - *now* 'sizeof' on array pointersKartik K. Agaram2014-11-281-0/+3
|
* 360 - back up, let's create a new 'deref' helperKartik K. Agaram2014-11-281-0/+8
|
* 359 - 'sizeof' supports 'deref' pointersKartik K. Agaram2014-11-281-0/+2
| | | | Just non-arrays for now.
* 358 - start of 'sizeof' support for arraysKartik K. Agaram2014-11-281-0/+12
|
* 357Kartik K. Agaram2014-11-281-0/+10
|
* 356 - high time 'sizeof' supported operandsKartik K. Agaram2014-11-281-0/+9
|
* 355Kartik K. Agaram2014-11-281-0/+11
|