User Tools

Site Tools


projects:archevo:isa

This is an old revision of the document!


Evolvable ISA

What is an ISA?

An ISA, short for Instruction Set Architecture, is the convention that allows programmers to talk to computers. The programmer can write a string of bits, give it to a CPU, and the CPU will do something. It is the most basic form of programming language. In fact, all programming languages are eventually turned into a series of bits based off of the ISA. 9The series of bits is sometimes called Assembly Language, but that isn't important here.)

Brittleness

ISAs that are practically used are generally brittle. This means that if a random bit flips in an instruction, the results will likely be catastrophic (for the execution of the program, that is). Although this isn't a purposeful choice on the parts of the designers of these ISAs, it isn't necessarily a bad thing. Consider, for example, an ATM. if a “cosmic ray” hits the CPU, and an instruction has a bit flip, we (or, at least, the bankers) don't want it to continue running as if nothing had happened, as this could lead to a loss of money. Instead, they would rather the program fail, and just be rebooted.

Brittleness is caused by two main factors.

  • The first factor is what I call structural fragility. The most important aspect of an ISA is control flow. This is because a program is really only useful when it can make decisions. Since programs are written as a 1D string of commands, decisions are made by jumping to certain locations in the program. This is no problem for normal programs written by normal people, but when mutation occurs, the changes can be drastic.
  • The second factor is what I call fault intolerance. In a normal computer, errors do happen. Someone will open up calc.exe and divide 5 by 0. For modern computers, this is no problem. When an error, or fault, occurs, the operating system will step in and deal with it, and give the program a slap on the wrist. This means that mutations to source code occur, they are quickly stopped if they happen to cause a fault.

Evolvable ISAs

Evolvable ISAs are simply ISAs that lack the fragility of normal ISAs. They do this at a cost to human comprehension - it is generally extremely difficult for a human to program in these languages.

Template Jumps

One way to avoid the problems with structural fragility is to use template jumps. Template jumps were introduced in TIERRA. The TIERRA paper explains the motivation behind templating in this quote:

A second feature that has been borrowed from molecular biology in the design of the Tierran language is the addressing mode, which is called “address by template”. In most machine codes, when a piece of data is addressed, or the IP jumps to another piece of code, the exact numeric address of the data or target code is specified in the machine code. Consider that in the biological system by contrast, in order for protein molecule A in the cytoplasm of a cell to interact with protein molecule B, it does not specify the exact coordinates where B is located. Instead, molecule A presents a template on its surface which is complementary to some surface on B. Diffusion brings the two together, and the complementary conformations allow them to interact. 1)

The basic idea of template jumps is that instead of jumping to an absolute location in the program, the program jumps to a certain pattern. In ASIA, the two instructions that form these patterns are called NOP_A and NOP_B. Consider the following program:

> 0 JUMP
  1 NOP_A
  2 NOP_B
  3 ...
  4 ...
  5 NOP_A
  6 NOP_B
  7 ...

When the JUMP instruction is executed, it will go to the end of the template to line 7:

  0 JUMP
  1 NOP_A
  2 NOP_B
  3 ...
  4 ...
  5 NOP_A
  6 NOP_B
> 7 ...
1)
See TIERRA, page 7
projects/archevo/isa.1618885054.txt.gz · Last modified: 2021/04/20 02:17 by Owen Mellema