about summary refs log tree commit diff stats
path: root/apps/mu.subx
Commit message (Collapse)AuthorAgeFilesLines
* 6604 - new appKartik Agaram2020-07-011-1/+1
| | | | | | https://archive.org/details/akkartik-2min-2020-07-01 In the process I found a bug, added a new syscall, and 'emulated' it.
* 6597Kartik Agaram2020-06-291-1/+1
|
* 6595Kartik Agaram2020-06-291-79/+79
|
* 6592 - error-checking for integer stmts feels doneKartik Agaram2020-06-281-1/+50
|
* 6591Kartik Agaram2020-06-281-1/+32
|
* 6590Kartik Agaram2020-06-281-1/+189
|
* 6589Kartik Agaram2020-06-281-12/+5
|
* 6588Kartik Agaram2020-06-281-0/+165
|
* 6587Kartik Agaram2020-06-281-0/+166
|
* 6586 - error-checking for 'get' stmts feels doneKartik Agaram2020-06-281-1/+111
|
* 6585Kartik Agaram2020-06-281-10/+97
|
* 6584Kartik Agaram2020-06-281-0/+55
|
* 6583Kartik Agaram2020-06-281-1/+61
|
* 6582Kartik Agaram2020-06-281-2/+69
|
* 6581Kartik Agaram2020-06-281-6/+259
|
* 6580Kartik Agaram2020-06-281-4/+4
|
* 6579Kartik Agaram2020-06-281-5/+143
|
* 6578 - redo error if 'get' on unknown fieldKartik Agaram2020-06-271-78/+117
| | | | | | This commit reimplements commit 6515 to happen during type-checking rather than as early as possible. That way we naturally get a more informative error message.
* 6577Kartik Agaram2020-06-271-12/+12
|
* 6576Kartik Agaram2020-06-271-8/+56
|
* 6575Kartik Agaram2020-06-271-220/+253
|
* 6574Kartik Agaram2020-06-271-4/+6
|
* 6572Kartik Agaram2020-06-211-6/+36
| | | | | Small change to mu.subx to keep the treeshaker working with it. That's currently the only place where we prevent jumps across 'functions'.
* 6570 - error on use of a clobbered varKartik Agaram2020-06-211-42/+153
| | | | | All tests now passing, and factorial.mu and all other apps now working. The new checks caught one problem in a few prototypes.
* 6569 - correct the second failing testKartik Agaram2020-06-211-34/+31
|
* 6568Kartik Agaram2020-06-211-3/+3
|
* 6567Kartik Agaram2020-06-211-14/+11
|
* 6566 - improve some error messagesKartik Agaram2020-06-211-111/+165
| | | | | I need to pass the function around to fix the failing test; might as well fix the error messages while I'm at it.
* 6564 - second failing testKartik Agaram2020-06-211-0/+61
|
* 6563Kartik Agaram2020-06-211-19/+19
| | | | | | | | | | The desire captured by a test is often hard to verbalize, path-dependent and more fertile for the future than its original impulse. On some level, someone wanting to rip out features has to just ask for each scenario, "what do I want to happen here?" And nobody's gonna do that. At best, somebody may be trying to rip out some complex feature, and run into some collateral damage around the edges that they have to inspect more closely. "Do I care about preserving this behavior?"
* 6562Kartik Agaram2020-06-211-19/+46
| | | | | | | | | | | | | | | | | | | | | | | | The new failing test is now passing, and so is this manual test that had been throwing a spurious error: fn foo { var a/eax: int <- copy 0 var b/ebx: int <- copy 0 { var a1/eax: int <- copy 0 var b1/ebx: int <- copy a1 } b <- copy a } However, factorial.mu is still throwing a spurious error. Some history on this commit's fix: When I moved stack-location tracking out of the parsing phase (commit 6116, Mar 10) I thoughtlessly moved block-depth tracking as well. And the reason that happened: I'd somehow gotten by without ever cleaning up vars from a block during parsing. For all my tests, this is a troubling sign that I'm not testing enough. The good news: clean-up-blocks works perfectly during parsing.
* 6561 - failing testKartik Agaram2020-06-211-8/+122
| | | | | Test `test-shadow-name-2` shows that we aren't popping off more than one variable from each block that we exit.
* 6560Kartik Agaram2020-06-201-10/+3
|
* 6559Kartik Agaram2020-06-201-0/+1
|
* 6558 - dump the stack of local varsKartik Agaram2020-06-201-68/+129
| | | | I'm still tracking down at least one bug in how that stack is managed.
* 6556 - check for uses of clobbered varsKartik Agaram2020-06-191-18/+163
| | | | | Now all tests passing again. In the process I found a bug where one of my tests actually generated incorrect code.
* 6555 - fix one class of failing testsKartik Agaram2020-06-191-15/+78
| | | | | | | | | | Defining a new var in a register based on a previous var in the same register. Unfortunately I don't yet support such an instruction without getting into arrays. Ideally I want `y <- add x, 1` to convert to the same code as `x <- add x, 1` if `y` ends up in the same register. And so on. But I don't yet have a way to specify "output same register as inout 1" in my `Primitives` data structure.
* 6554 - snapshot: error on use of a clobbered varKartik Agaram2020-06-191-1/+111
| | | | | | | | | | | | When looking up a var, ensure that it's the var most recently written to its register. The new test passes, but a handful of tests now start failing when a new var in register X is initialized based on the old var in register X. The way we do lookups is not quite right. At the moment we perform lookups when we parse words. So we look up outputs of a statement before inputs. But old bindings are still valid for the entirety of a statement, and outputs should only take effect for the next statement.
* 6553 - Mu: disallow registers esp and ebpKartik Agaram2020-06-191-6/+24
|
* 6550 - type-checking for function callsKartik Agaram2020-06-181-25/+854
| | | | There were a couple of benign type errors in arith.mu but nowhere else.
* 6549 - starting on type checkingKartik Agaram2020-06-171-1/+1
|
* 6529 - don't let `addr`s escape functionsKartik Agaram2020-06-151-0/+3
| | | | | | | | | | | | | | | | | | I've gone back and forth on this. I initially disallowed this, then allowed it because I forgot why I disallowed it. The reason to disallow it: if you return an `addr` to a variable allocated on the stack, the space might be reused for a different type, which violates type-safety. And once you can reinterpret bits of one type as another you lose memory-safety as well. This has some interesting implications for Mu programs; certain kinds of helper functions become impossible to write. Now I find myself relying a lot more on scopes (and editor folding support) for abstracting details. And they won't help manage duplication. We'll see how this goes. While I'm being draconian about `addr`s on the stack, I'm still abusing `addr`s on the heap, with the expectation that future checks on reclamation will protect me. The boon and bane of stack space is that it's constantly reclaimed.
* 6528Kartik Agaram2020-06-151-19/+146
|
* 6525Kartik Agaram2020-06-151-11/+157
|
* 6524Kartik Agaram2020-06-151-7/+65
|
* 6523Kartik Agaram2020-06-151-0/+95
| | | | | Still some issues; add some tests. I have more that were passing a couple of days ago but aren't currently.
* 6522 - redo support for 'byte'Kartik Agaram2020-06-151-13/+81
| | | | | | | | | | | Before: bytes can't live on the stack, so size(byte) == 1 just for array elements. After: bytes mostly can't live on the stack except for function args (which seem too useful to disallow), so size(byte) == 4 except there's now a new primitive called element-size for array elements where size(byte) == 1. Now apps/browse.subx starts working again.
* 6520 - new app: parse-intKartik Agaram2020-06-141-8/+179
| | | | | | Several bugs fixed in the process, and expectation of further bugs is growing. I'd somehow started assuming I don't need to have separate cases for rm32 as a register vs mem. That's not right. We might need more reg-reg Primitives.
* 6519Kartik Agaram2020-06-131-1/+47
| | | | More fucking amateur hour.
* 6518 - extra args through a whole swathe of placesKartik Agaram2020-06-131-7/+54
| | | | | | | | Most unbelievably, I'd forgotten to pass the output 'out' arg to 'lookup-var' long before the recent additions of 'err' and 'ed' args. But things continued to work because an earlier call just happened to leave the arg at just the right place on the stack. So we only caught all these places when we had to provide error messages.