about summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* 6720Kartik Agaram2020-08-2239-106/+106
|
* 6719 - error-checking for 'index' instructionsKartik Agaram2020-08-2113-5/+1219
| | | | | | | | 1000+ LoC spent; just 300+ excluding tests. Still one known gap; we don't check the entirety of an array's element type if it's a compound. So far we just check if say both sides start with 'addr'. Obviously that's not good enough.
* 6718Kartik Agaram2020-08-163-0/+14
|
* 6717Kartik Agaram2020-08-152-0/+82
|
* 6716Kartik Agaram2020-08-1512-21538/+22310
|
* 6715Kartik Agaram2020-08-032-0/+7
| | | | | | | | | | | | | | | | | | | | | | | There's a question of how we should match array types with a capacity on ones without. For now we're going to do the simplest possible thing and just make type-match? more robust. It'll always return false if the types don't match exactly. For ignoring capacity we'll rely on the checks of the `address` operation (which don't exist yet). This means we should do this to pass an address to an array to a function f with signature `f (addr array int)`: var a: (array int 3) var b/eax: (addr array int) <- address a f b rather than this: var a: (array int 3) var b/eax: (addr array int 3) <- address a f b Similar reasoning applies to stream types. Arrays and streams are currently the only types that can have an optional capacity.
* 6714Kartik Agaram2020-08-021-0/+3
|
* 6713 - move-cursor on fake screenKartik Agaram2020-08-021-0/+9
|
* 6712 - new prototype with cleaner box shapesKartik Agaram2020-08-021-0/+437
|
* 6711Kartik Agaram2020-08-021-21/+0
|
* 6710 - utf-8 encodingKartik Agaram2020-08-021-54/+34
| | | | | | | | | | | | | | | | Example program: fn main -> r/ebx: int { var x/eax: code-point <- copy 0x2192 # unicode character 'rightwards arrow' print-code-point 0, x print-string 0, "\n" r <- copy 0 } Run: $ ./translate_mu x.mu && ./a.elf → $
* snapshot: encoding code-points to utf-8Kartik Agaram2020-08-022-0/+183
| | | | | I have it partly working, but just realized I've been reversing the output bytes.
* 6708Kartik Agaram2020-08-022-0/+0
|
* 6707Kartik Agaram2020-08-021-3/+32
|
* 6706 - support utf-8Kartik Agaram2020-08-023-2/+48
| | | | | | | | | | | | | | For example: fn main -> r/ebx: int { var x/eax: grapheme <- copy 0x9286e2 # code point 0x2192 in utf-8 print-grapheme-to-real-screen x print-string-to-real-screen "\n" } Graphemes must fit in 4 bytes (21 bits for code points). Unclear what we should do for longer clusters since graphemes are a fixed-size type at the moment.
* 6705Kartik Agaram2020-08-021-1/+1
| | | | Another stupid bug: I've been printing out 3 nulls for every byte of ascii.
* 6704Kartik Agaram2020-08-022-28/+28
| | | | | This is stupid; all this while I've been writing escape sequences to the screen they've been going out on stderr.
* 6703 - new types: code-point and graphemeKartik Agaram2020-08-0251-75/+144
| | | | | | | | | | Both have the same size: 4 bytes. So far I've just renamed print-byte to print-grapheme, but it still behaves the same. I'm going to support printing code-points next, but grapheme 'clusters' spanning multiple code-points won't be supported for some time.
* 6702Kartik Agaram2020-08-022-3/+18
|
* 6701Kartik Agaram2020-08-022-2/+4
|
* 6700 - clear fake screenKartik Agaram2020-08-011-0/+24
| | | | | | One thing I hadn't realized in all my hacking on the mu1 prototype: clear-screen doesn't modify active attributes. It's equivalent to printing spaces all over the screen with the current attributes.
* 6699 - start building out fake screenKartik Agaram2020-08-0166-442/+705
| | | | | We now have all existing apps and prototypes going through the dependency-injected wrapper, even though it doesn't actually implement the fake screen yet.
* 6698Kartik Agaram2020-08-012-2/+2
|
* 6697Kartik Agaram2020-08-013-94/+86
|
* 6696Kartik Agaram2020-07-311-0/+13
|
* 6695Kartik Agaram2020-07-313-11/+13
|
* 6694Kartik Agaram2020-07-312-20/+22
|
* 6693Kartik Agaram2020-07-316-19746/+20046
|
* 6692Kartik Agaram2020-07-311-1/+6
|
* 6691 - start building a fake screenKartik Agaram2020-07-312-6/+98
| | | | There was a bug in defining types containing other user-defined types.
* 6690Kartik Agaram2020-07-301-1/+2
|
* 6689 - some little white lies to GitHubKartik Agaram2020-07-301-1/+5
|
* 6688Kartik Agaram2020-07-301-0/+1
|
* 6687 - stream-empty? and stream-full?Kartik Agaram2020-07-306-3/+154
|
* 6686Kartik Agaram2020-07-302-0/+0
|
* 6685Kartik Agaram2020-07-2913-21171/+21593
|
* 6684 - experimental primitives for streamsKartik Agaram2020-07-294-0/+320
| | | | | | | | | | | | | | | | | | | | | This is a hacky special case. The alternative would be more general support for generics. One observation: we might be able to type-check some primitives using `sig`s. Only if they don't return anything, since primitives usually need to support arbitrary registers. I'm not doing that yet, though. It eliminates the possibility of writing tests for them in mu.subx, which can't see 400.mu. But it's an alternative: sig allocate out: (addr handle _) sig populate out: (addr handle array _), n: int sig populate-stream out: (addr handle stream _), n: int sig read-from-stream s: (addr stream _T), out: (addr _T) sig write-to-stream s: (addr stream _T), in: (addr _T) We could write the tests in Mu. But then we're testing behavior rather than the code generated. There are trade-offs. By performing type-checking in mu.subx I retain the option to write both kinds of tests.
* 6683Kartik Agaram2020-07-282-10/+6
|
* 6682 - experimental support for streams and slicesKartik Agaram2020-07-284-12/+213
| | | | | | | | | Slices contain `addr`s so the same rules apply to them. They can't be stored in structs and so on. But they may be an efficient temporary while parsing. Streams are currently a second generic type after arrays, and gradually strengthening the case to just bite the bullet and support first-class generics in Mu.
* 6681Kartik Agaram2020-07-262-2/+2
|
* 6680Kartik Agaram2020-07-261-3/+0
|
* 6679Kartik Agaram2020-07-256-11/+9
|
* 6678Kartik Agaram2020-07-251-10045/+10021
|
* 6677 - prototype: spreadsheet for treesKartik Agaram2020-07-251-0/+427
|
* 6676 - type checks for 'lookup'Kartik Agaram2020-07-252-24/+0
|
* 6675Kartik Agaram2020-07-251-0/+390
|
* 6674Kartik Agaram2020-07-252-8/+9
|
* 6673Kartik Agaram2020-07-253-19444/+20898
|
* 6672 - error on addr or array inside typeKartik Agaram2020-07-252-7/+150
|
* 6671 - bugfix in generic functionsKartik Agaram2020-07-252-0/+1
| | | | | | We need to remember to clear local variables. And there's a good question here of how Mu supports variables of type stream or table. Or other user-defined types that inline arrays.