2014-03-31 22:31:30 +00:00
|
|
|
SixtyPical
|
|
|
|
==========
|
|
|
|
|
2018-02-16 09:51:24 +00:00
|
|
|
_Version 0.13. Work-in-progress, everything is subject to change._
|
2018-02-02 16:31:23 +00:00
|
|
|
|
2014-04-01 12:01:27 +00:00
|
|
|
SixtyPical is a very low-level programming language, similar to 6502 assembly,
|
2015-10-16 08:30:24 +00:00
|
|
|
with static analysis through abstract interpretation.
|
2014-04-01 12:01:27 +00:00
|
|
|
|
2015-10-16 08:30:24 +00:00
|
|
|
In practice, this means it catches things like
|
2014-04-01 12:01:27 +00:00
|
|
|
|
2015-10-16 08:30:24 +00:00
|
|
|
* you forgot to clear carry before adding something to the accumulator
|
|
|
|
* a subroutine that you call trashes a register you thought was preserved
|
2015-10-22 18:20:48 +00:00
|
|
|
* you tried to write the address of something that was not a routine, to
|
|
|
|
a jump vector
|
2014-04-04 17:27:51 +00:00
|
|
|
|
2015-10-22 18:20:48 +00:00
|
|
|
and suchlike. It also provides some convenient operations and abstractions
|
|
|
|
based on common machine-language programming idioms, such as
|
|
|
|
|
|
|
|
* copying values from one register to another (via a third register when
|
|
|
|
there are no underlying instructions that directly support it)
|
|
|
|
* explicit tail calls
|
|
|
|
* indirect subroutine calls
|
|
|
|
|
2018-02-05 13:17:23 +00:00
|
|
|
The reference implementation can analyze and compile SixtyPical programs to
|
|
|
|
6502 machine code.
|
2014-04-11 21:50:03 +00:00
|
|
|
|
2015-10-16 09:00:51 +00:00
|
|
|
Documentation
|
|
|
|
-------------
|
2014-04-01 13:33:57 +00:00
|
|
|
|
2017-11-21 11:13:21 +00:00
|
|
|
* [Design Goals](doc/Design%20Goals.md)
|
2015-10-16 09:54:12 +00:00
|
|
|
* [SixtyPical specification](doc/SixtyPical.md)
|
2017-11-21 11:13:21 +00:00
|
|
|
* [SixtyPical revision history](HISTORY.md)
|
2017-11-17 15:48:38 +00:00
|
|
|
* [Literate test suite for SixtyPical syntax](tests/SixtyPical%20Syntax.md)
|
|
|
|
* [Literate test suite for SixtyPical execution](tests/SixtyPical%20Execution.md)
|
|
|
|
* [Literate test suite for SixtyPical analysis](tests/SixtyPical%20Analysis.md)
|
|
|
|
* [Literate test suite for SixtyPical compilation](tests/SixtyPical%20Compilation.md)
|
|
|
|
* [6502 Opcodes used/not used in SixtyPical](doc/6502%20Opcodes.md)
|
2015-10-16 09:00:51 +00:00
|
|
|
|
|
|
|
TODO
|
|
|
|
----
|
|
|
|
|
2018-03-05 10:34:49 +00:00
|
|
|
### `for`-like loop
|
|
|
|
|
|
|
|
We have range-checking in the abstract analysis now, but we lack practical ways
|
|
|
|
to use it.
|
|
|
|
|
|
|
|
We can `and` a value to ensure it is within a certain range. However, in the 6502
|
|
|
|
ISA the only register you can `and` is `A`, while loops are done with `X` or `Y`.
|
|
|
|
Insisting this as the way to do it would result in a lot of `TXA`s and `TAX`s.
|
|
|
|
|
|
|
|
What would be better is a dedicated `for` loop, like
|
|
|
|
|
|
|
|
for x in 0 to 15 {
|
|
|
|
// in here, we know the range of x is exactly 0-15 inclusive
|
|
|
|
// also in here: we are disallowed from changing x
|
|
|
|
}
|
|
|
|
|
|
|
|
However, this is slightly restrictive, and hides a lot.
|
|
|
|
|
|
|
|
However however, options which do not hide a lot, require a lot of looking at
|
|
|
|
(to ensure: did you increment the loop variable? only once? etc.)
|
|
|
|
|
|
|
|
The leading compromise so far is an "open-faced for loop", like
|
|
|
|
|
|
|
|
ld x, 15
|
|
|
|
for x downto 0 {
|
|
|
|
// same as above
|
|
|
|
}
|
|
|
|
|
|
|
|
This makes it a little more explicit, at least, even though the loop
|
|
|
|
decrementation is still hidden.
|
|
|
|
|
2017-12-11 14:18:47 +00:00
|
|
|
### Save registers on stack
|
2017-11-21 12:10:31 +00:00
|
|
|
|
2017-12-08 15:53:18 +00:00
|
|
|
This preserves them, so that, semantically, they can be used later even though they
|
2017-11-23 17:08:40 +00:00
|
|
|
are trashed inside the block.
|
2017-11-21 12:10:31 +00:00
|
|
|
|
2018-02-08 12:18:55 +00:00
|
|
|
### Re-order routines and optimize tail-calls to fallthroughs
|
|
|
|
|
|
|
|
Not because it saves 3 bytes, but because it's a neat trick. Doing it optimally
|
|
|
|
is probably NP-complete. But doing it adeuqately is probably not that hard.
|
|
|
|
|
2017-12-13 16:23:28 +00:00
|
|
|
### And at some point...
|
|
|
|
|
2018-02-16 09:51:24 +00:00
|
|
|
* Confirm that `and` can be used to restrict the range of table reads/writes.
|
2018-02-12 16:40:53 +00:00
|
|
|
* `low` and `high` address operators - to turn `word` type into `byte`.
|
2018-02-12 14:31:26 +00:00
|
|
|
* `const`s that can be used in defining the size of tables, etc.
|
2018-02-09 11:32:16 +00:00
|
|
|
* Tests, and implementation, ensuring a routine can be assigned to a vector of "wider" type
|
2018-02-12 16:40:53 +00:00
|
|
|
* Related: can we simply view a (small) part of a buffer as a byte table? If not, why not?
|
2017-12-01 15:10:16 +00:00
|
|
|
* Check that the buffer being read or written to through pointer, appears in approporiate inputs or outputs set.
|
2018-02-12 14:31:26 +00:00
|
|
|
(Associate each pointer with the buffer it points into.)
|
|
|
|
* `static` pointers -- currently not possible because pointers must be zero-page, thus `@`, thus uninitialized.
|
2018-02-12 14:53:49 +00:00
|
|
|
* Question the value of the "consistent initialization" principle for `if` statement analysis.
|
2017-12-11 14:18:47 +00:00
|
|
|
* `interrupt` routines -- to indicate that "the supervisor" has stored values on the stack, so we can trash them.
|
2018-02-12 14:31:26 +00:00
|
|
|
* Error messages that include the line number of the source code.
|
|
|
|
* Add absolute addressing in shl/shr, absolute-indexed for add, sub, etc.
|
|
|
|
* Automatic tail-call optimization (could be tricky, w/constraints?)
|
|
|
|
* Possibly `ld x, [ptr] + y`, possibly `st x, [ptr] + y`.
|
2018-02-08 12:18:55 +00:00
|
|
|
* Maybe even `copy [ptra] + y, [ptrb] + y`, which can be compiled to indirect LDA then indirect STA!
|