about summary refs log tree commit diff stats
path: root/mu.arc
Commit message (Collapse)AuthorAgeFilesLines
* 142 - helper for listsKartik K. Agaram2014-10-121-0/+7
| | | | | Amazing how easy it was to just dump the trace and diff, compared to my old approach of adding new traces and rerunning.
* 140Kartik K. Agaram2014-10-121-1/+19
|
* 137Kartik K. Agaram2014-10-121-2/+2
|
* 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.
* 134 - 'arg' explicitly tells us if an arg was foundKartik K. Agaram2014-10-121-1/+2
| | | | | | 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-121-1/+2
|
* 131 - maybe-coerce now allocates new space each callKartik K. Agaram2014-10-111-15/+24
| | | | | | | | | | | | | | | | | | | | | | (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-111-22/+28
| | | | | This is more likely to be right. But the limitations of symbolic locations are starting to be a drag. Time to build lexical scope.
* 127 - tagged values for dynamic typingKartik K. Agaram2014-10-101-0/+16
| | | | This is almost certainly wrong.
* 124Kartik K. Agaram2014-10-101-5/+5
|
* 123 - experiment: build the reading flow around the *test* fileKartik K. Agaram2014-10-101-59/+42
|
* 122 - make 'getc' async preparatory to making it testableKartik K. Agaram2014-10-081-1/+1
|
* 120 - forgot to alloc space for array lengthKartik K. Agaram2014-10-071-1/+1
|
* 119 - 'continue' was badly brokenKartik K. Agaram2014-10-071-7/+16
|
* 118 - persist all test tracesKartik K. Agaram2014-10-071-0/+19
|
* 116 - retire 'literal' instruction now that we have 'literal' addressingKartik K. Agaram2014-10-071-2/+0
|
* 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-061-6/+30
| | | | | 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-061-1/+1
|
* 111 - no, can't mix array and record accessKartik K. Agaram2014-10-051-20/+30
| | | | records need literal offsets; arrays need variables.
* 110 - 107 for 'get-address'Kartik K. Agaram2014-10-051-0/+3
|
* 109Kartik K. Agaram2014-10-051-0/+1
|
* 108Kartik K. Agaram2014-10-051-14/+0
|
* 107 - 'get' can now take an addressKartik K. Agaram2014-10-051-0/+19
|
* 106Kartik K. Agaram2014-10-051-5/+5
|
* 105Kartik K. Agaram2014-10-051-0/+1
|
* 104 - writing to fields/indicesKartik K. Agaram2014-10-051-0/+20
|
* 103 - error on unknown opKartik K. Agaram2014-10-051-1/+3
|
* 102 - fold 'aref' into 'get'Kartik K. Agaram2014-10-051-4/+8
| | | | Also separate op for length of an array.
* 101Kartik K. Agaram2014-10-051-1/+1
|
* 100Kartik K. Agaram2014-10-051-2/+6
|
* 98 - getting sick of loading literals before useKartik K. Agaram2014-10-051-4/+7
|
* 97Kartik K. Agaram2014-10-051-1/+1
|
* 96Kartik K. Agaram2014-10-051-0/+3
|
* 95Kartik K. Agaram2014-10-041-18/+19
|
* 94 - old multiprocessing experimentKartik K. Agaram2014-10-041-1/+8
|
* 93 - new project: a text-mode editorKartik K. Agaram2014-10-041-0/+17
| | | | New planet racket dependency: neil/charterm:3:1
* 92Kartik K. Agaram2014-08-311-2/+2
|
* 91 - just implement ops natively to maintain momentumKartik K. Agaram2014-08-311-0/+3
|
* 90Kartik K. Agaram2014-08-311-5/+5
|
* 89 - a simple round-robin schedulerKartik K. Agaram2014-08-281-5/+13
|
* 88 - a different trace testing helperKartik K. Agaram2014-08-281-13/+30
| | | | Verifies a set of lines in order.
* 87Kartik K. Agaram2014-08-281-2/+5
|
* 86Kartik K. Agaram2014-08-281-6/+0
|
* 85 - trace testing ahoy (http://akkartik.name/post/tracing-tests)Kartik K. Agaram2014-08-281-0/+26
|
* 84Kartik K. Agaram2014-08-281-45/+59
|
* 83 - extract a function to run a short slice of instructionsKartik K. Agaram2014-08-281-30/+38
|
* 82Kartik K. Agaram2014-08-281-6/+12
|
* 81 - reify machine state into a 'context' variableKartik K. Agaram2014-08-281-45/+70
| | | | Beginning of concurrency primitives.