projects:archevo:isa
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
projects:archevo:isa [2021/04/20 02:33] – Owen Mellema | projects:archevo:isa [2021/04/21 00:03] (current) – [ISAs in ArchEvo] Owen Mellema | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== | + | ====== |
===== What is an ISA? ===== | ===== What is an ISA? ===== | ||
- | An //ISA//, short for Instruction Set Architecture, | + | An //ISA//, short for Instruction Set Architecture, |
===== Brittleness ===== | ===== Brittleness ===== | ||
- | ISAs that are practically used are generally // | + | ISAs that are practically used are generally // |
Brittleness is caused by two main factors. | Brittleness is caused by two main factors. | ||
Line 54: | Line 54: | ||
In ArchEvo, I want cells to be able to look into the registers of adjacent cells, but not to change the value of these registers. That is, cells have read/write privileges on their own registers, but only read privileges on their own. So what happens when a cell attempts to write to a register it does not have access to? | In ArchEvo, I want cells to be able to look into the registers of adjacent cells, but not to change the value of these registers. That is, cells have read/write privileges on their own registers, but only read privileges on their own. So what happens when a cell attempts to write to a register it does not have access to? | ||
+ | To motivate this example, I will use the ASIA instruction set. In this example, REG_A is an internal register referenced by code 0b0011, and I_REG_A is an external register referenced by code 0b1011. Finally, MOVE_REGISTER is 100. If we put these together, we can make an instruction that seems to move REG_A into I_REG_A, overwriting the contents of that register. | ||
+ | < | ||
+ | MOVE_REGISTER REG_A I_REG_A | ||
+ | 100 | ||
+ | </ | ||
+ | |||
+ | All seems lost, until the magical Ghost Bit appears! 👻 The Ghost Bit changes MOVE_REGISTER to UNASSIGNED, which tells the cell to pause. | ||
+ | < | ||
+ | | ||
+ | [1]100 | ||
+ | </ | ||
+ | |||
+ | So where did the Ghost Bit come from? Well, consider that whether or not a register is writable is true or false, so it can be expressed as a bit. This is the Ghost Bit. So, when the result register is writable, the ghost bit is 0, but when it is not writable, the ghost bit is 1. The operation that would have caused a fault is swapped out for an operation that cannot cause a fault. | ||
The Ghost Bit system makes ISAs faultless by making it impossible for a fault to arise. It does this by interpreting any instruction that //could// lead to a fault as an instruction that will not cause a fault. | The Ghost Bit system makes ISAs faultless by making it impossible for a fault to arise. It does this by interpreting any instruction that //could// lead to a fault as an instruction that will not cause a fault. | ||
+ | |||
+ | ===== Other ISA features in ArchEvo ===== | ||
+ | |||
+ | ==== IPLOC ==== | ||
+ | In order for cells to be able to observe other cells' registers, they must be able to manipulate an offset to that cell. We can limit this to the eight adjacent squares around a cell to make this easier. | ||
+ | |||
+ | The naïve approach would be to store each offset as a number in a register. There are two problems with this. Firstly, interpreting the register as an unsigned int, the possible range for observation becomes a square of size 256 around the cell. This is not what we want. Secondly, this requires two registers, which is not ideal. | ||
+ | |||
+ | The IPLOC (**I**nspection **P**ointer **LOC**ation) convention circumvents this by encoding each of the eight offsets as a bit in a single register. The actual offset is the most significant bit in the register. | ||
+ | |||
+ | < | ||
+ | 1xxxxxxx => ( 1, 1) | ||
+ | 01xxxxxx => ( 0, 1) | ||
+ | 001xxxxx => (-1, 1) | ||
+ | 0001xxxx => ( 1, 0) | ||
+ | 00001xxx => (-1, 0) | ||
+ | 000001xx => ( 1, -1) | ||
+ | 0000001x => ( 0, -1) | ||
+ | 00000001 => (-1, -1) | ||
+ | 00000000 => ( 0, 0) | ||
+ | </ | ||
+ | |||
+ | ===== ISAs in ArchEvo ===== | ||
+ | The following is a list of the ISAs in ArchEvo: | ||
+ | * [[projects: |
projects/archevo/isa.1618886015.txt.gz · Last modified: 2021/04/20 02:33 by Owen Mellema