about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
...
* 146Kartik K. Agaram2014-10-141-1/+1
|
* 145 - delete random programsKartik K. Agaram2014-10-145-48/+1
| | | | | | | | | They need a type table to work, but I'm keeping type tables next to the tests. Everything needs to be a test from now on. (But first some fixes to the terminal primitives.)
* 144Kartik K. Agaram2014-10-142-5/+17
|
* 143Kartik K. Agaram2014-10-121-7/+7
|
* 142 - helper for listsKartik K. Agaram2014-10-122-1/+8
| | | | | Amazing how easy it was to just dump the trace and diff, compared to my old approach of adding new traces and rerunning.
* 141 - list nodes using tagged-valueKartik K. Agaram2014-10-121-1/+46
|
* 140Kartik K. Agaram2014-10-122-4/+35
|
* 139Kartik K. Agaram2014-10-121-1/+14
|
* 138Kartik K. Agaram2014-10-121-5/+3
| | | | | | | | Current todo stack: trace-based assert new-tagged-value - assert that first arg has size 1 test constructing list manually new-list
* 137Kartik K. Agaram2014-10-122-5/+40
|
* 136 - log memory in consistent orderKartik K. Agaram2014-10-121-1/+1
| | | | | This is super slow. Maybe I should keep it commented out until we need it? Open to doing that in future.
* 135Kartik K. Agaram2014-10-121-0/+16
|
* 134 - 'arg' explicitly tells us if an arg was foundKartik K. Agaram2014-10-122-1/+17
| | | | | | Return values can be ignored in mu, in the grand traditions of C programming. Though library writers can impose their conservatism on callers by returning the error condition first.
* 133 - handle missing args without errorKartik K. Agaram2014-10-122-2/+17
|
* 132Kartik K. Agaram2014-10-111-2/+3
|
* 131 - maybe-coerce now allocates new space each callKartik K. Agaram2014-10-112-17/+56
| | | | | | | | | | | | | | | | | | | | | | (Doesn't reclaim yet. Need to build free soon. Then lexical scopes..) This commit showed the benefits of my persisting traces. I realized I needed 'sz' to handle 'deref' args. But I vaguely remembered some earlier instance when some primitive needed to recognize 'deref' at some times but not others. Was it 'sz'? Just added a trace on operands, reran all tests, grepped for deref. $ grep sz .traces -r |grep deref Nothing would fail. Ok, add 'deref' support. Boom, 3 layers of tests passed. Still concerned I'm not using traces enough. Keep vigilant. Mixing print and trace seems like a bad idea. From now on whenever I use any existing commented-out prn's I'm going to turn them into trace calls. That should put pressure on comprehending traces, and tools for doing that, like segmenting by dynamic and static layers.
* 130 - build maybe-coerce in muKartik K. Agaram2014-10-112-25/+32
| | | | | This is more likely to be right. But the limitations of symbolic locations are starting to be a drag. Time to build lexical scope.
* 129Kartik K. Agaram2014-10-101-1/+5
|
* 128Kartik K. Agaram2014-10-101-7/+3
|
* 127 - tagged values for dynamic typingKartik K. Agaram2014-10-102-0/+39
| | | | This is almost certainly wrong.
* 126Kartik K. Agaram2014-10-101-59/+59
|
* 125Kartik K. Agaram2014-10-101-0/+16
|
* 124Kartik K. Agaram2014-10-101-5/+5
|
* 123 - experiment: build the reading flow around the *test* fileKartik K. Agaram2014-10-105-305/+486
|
* 122 - make 'getc' async preparatory to making it testableKartik K. Agaram2014-10-081-1/+1
|
* 121 - finally I can alloc a 2D arrayKartik K. Agaram2014-10-072-23/+37
|
* 120 - forgot to alloc space for array lengthKartik K. Agaram2014-10-072-3/+3
|
* 119 - 'continue' was badly brokenKartik K. Agaram2014-10-072-7/+41
|
* 118 - persist all test tracesKartik K. Agaram2014-10-073-0/+82
|
* 117 - simplify old tests to use literalsKartik K. Agaram2014-10-071-118/+87
|
* 116 - retire 'literal' instruction now that we have 'literal' addressingKartik K. Agaram2014-10-072-152/+150
|
* 115Kartik K. Agaram2014-10-071-4/+4
|
* 114 - break/continue always availableKartik K. Agaram2014-10-071-1/+1
|
* 113 - slight progress working with screen 2D arrayKartik K. Agaram2014-10-063-6/+70
| | | | | Why did it take forever to realize nobody will set the array length, that I have to do it for myself?
* 112Kartik K. Agaram2014-10-062-2/+15
|
* 111 - no, can't mix array and record accessKartik K. Agaram2014-10-052-26/+52
| | | | records need literal offsets; arrays need variables.
* 110 - 107 for 'get-address'Kartik K. Agaram2014-10-052-0/+15
|
* 109Kartik K. Agaram2014-10-052-1/+2
|
* 108Kartik K. Agaram2014-10-051-14/+0
|
* 107 - 'get' can now take an addressKartik K. Agaram2014-10-052-0/+32
|
* 106Kartik K. Agaram2014-10-051-5/+5
|
* 105Kartik K. Agaram2014-10-051-0/+1
|
* 104 - writing to fields/indicesKartik K. Agaram2014-10-052-0/+45
|
* 103 - error on unknown opKartik K. Agaram2014-10-051-1/+3
|
* 102 - fold 'aref' into 'get'Kartik K. Agaram2014-10-052-10/+32
| | | | Also separate op for length of an array.
* 101Kartik K. Agaram2014-10-051-1/+1
|
* 100Kartik K. Agaram2014-10-052-3/+7
|
* 99 - edit.mu looks much cleaner nowKartik K. Agaram2014-10-051-17/+8
|
* 98 - getting sick of loading literals before useKartik K. Agaram2014-10-052-4/+15
|
* 97Kartik K. Agaram2014-10-051-1/+1
|