about summary refs log tree commit diff stats
path: root/mu.arc
Commit message (Collapse)AuthorAgeFilesLines
* 58Kartik K. Agaram2014-08-201-9/+11
|
* 57 - multi-word or multi-field opsKartik K. Agaram2014-08-191-7/+25
|
* 56 - 'get' for record accessKartik K. Agaram2014-08-191-6/+17
|
* 53 - simplest possible allocator: just one word at a timeKartik K. Agaram2014-08-191-0/+8
| | | | But with tests this time.
* 51Kartik K. Agaram2014-08-191-1/+6
|
* 50Kartik K. Agaram2014-08-181-10/+8
|
* 48Kartik K. Agaram2014-08-021-4/+0
|
* 47Kartik K. Agaram2014-08-021-13/+1
|
* 46 - there's no continue bug after all in anarkiKartik K. Agaram2014-08-021-2/+2
|
* 45 - 'deref' metadata working in output argsKartik K. Agaram2014-07-311-85/+100
| | | | | Likely still some erroneous corner cases. What happens if I try to write indirectly to a boolean value? Should raise a reasonable error.
* 44 - now 'deref' is a bit of metadata on any operand rather than a special opKartik K. Agaram2014-07-311-4/+9
| | | | Still only works in read, and only in a single instruction. But these are details.
* 11 - fix 'deref'Kartik K. Agaram2014-07-311-1/+1
| | | | It was broken since commit 7.
* 10 - slightly more DRYKartik K. Agaram2014-07-311-6/+12
|
* 9 - shuffle operand type tag to after operand valueKartik K. Agaram2014-07-311-10/+10
| | | | | | This organization should permit multiple metadata tags beyond just type. Starting to feel some pain from code not being DRY. Issues that took debugging: a poor search-and-replace, and shuffling offset in convert-braces.
* 8Kartik K. Agaram2014-07-311-3/+3
|
* 7 - cleanup 'run'Kartik K. Agaram2014-07-271-39/+42
| | | | | Finally gave in to permit user-land macros in 'run'. 'm' should translate to an assembler function to decide what to emit.
* 6Kartik K. Agaram2014-07-271-4/+1
|
* 5 - first stab at allocator, just for intsKartik K. Agaram2014-07-261-0/+5
| | | | Still can't write to a pointer.
* 4 - better name for loadi (thanks FMoS VI)Kartik K. Agaram2014-07-261-1/+1
|
* 3 - don't rely too much on arcKartik K. Agaram2014-07-261-2/+2
| | | | I'm dismissing symbols as 'a simple matter of assembling'.
* 2 - use literal syms instead of type codesKartik K. Agaram2014-07-261-9/+8
|
* 28 - support 'continue'Kartik K. Agaram2014-07-171-0/+20
| | | | | We still haven't verified that the generated code is correct. Also, time to fix that bug in arc's continue.
* 27 - a simple assembler for turning else/break/continue into jumpsKartik K. Agaram2014-07-171-0/+67
|
* 26 - cleanup testsKartik K. Agaram2014-07-171-3/+2
|
* 24Kartik K. Agaram2014-07-171-7/+2
|
* 23 - more comparison opsKartik K. Agaram2014-07-131-0/+12
|
* 22 - better org'n for fn clausesKartik K. Agaram2014-07-111-0/+4
|
* 21 - new boolean typeKartik K. Agaram2014-07-111-3/+16
|
* 20 - relative addressing for jumpsKartik K. Agaram2014-07-111-2/+2
|
* 19 - example function with type-based dispatchKartik K. Agaram2014-07-111-3/+12
| | | | | | | | | I imagined we could just push new clauses at the top, but that isn't realistic; it would mess up all the jump locations. Either we need to append clauses, or we need some sort of relative adddressing for locations. Can't think of a third idea at the moment. Appending clauses is fine as long as functions are restrictive about what they accept.
* 18 - 'read' renamed to 'arg' and can take an indexKartik K. Agaram2014-07-111-12/+6
|
* 17Kartik K. Agaram2014-07-111-6/+16
|
* 16 - conditional and unconditional jumpsKartik K. Agaram2014-07-111-0/+11
|
* 15Kartik K. Agaram2014-07-111-4/+10
|
* 14 - processor model now has a program counterKartik K. Agaram2014-07-111-46/+48
|
* 13Kartik K. Agaram2014-07-111-3/+3
|
* 12 - more arithmetic opsKartik K. Agaram2014-07-111-0/+14
|
* 11 - enhance the language with typesKartik K. Agaram2014-07-101-7/+9
| | | | The types aren't actually used yet. That comes later.
* 9 - rename 'return' to 'reply'Kartik K. Agaram2014-07-061-1/+1
|
* 8Kartik K. Agaram2014-07-061-2/+4
|
* 6 - compound functions now return valuesKartik K. Agaram2014-07-061-5/+11
|
* 5 - compound functions now take argsKartik K. Agaram2014-07-061-2/+6
|
* 4 - output args now optionalKartik K. Agaram2014-07-061-13/+16
|
* 3 - early returnKartik K. Agaram2014-07-061-13/+16
|
* 2 - compound functionsKartik K. Agaram2014-07-061-3/+5
|
* 1Kartik K. Agaram2014-07-061-5/+17
|
* 0Kartik K. Agaram2014-07-061-0/+20