Processor Modes The GE-645 has two modes of Instruction Execution (Master and Slave) inherited from the GE-635, however it also adds another dimension by having two modes of memory addressing (Absolute and Appending). When the process is executing in Absolute Mode addressing is limited to 218 words of memory and any instructions are executed in Master mode. In comparison Append Mode calculates the address using "Appending Words" with an address space of 224 words and with instruction execution occurring in either Master or Slave modes. • Registers point to most recently used segment (
Segment Descriptor Word) or most recently used Page (
Page Table) • Performs the function of what would now be classed as a TLB. •
Control Unit: • Performs all control functions • Performs Address modification • Controls the
processor mode (master, slave, absolute) • Interrupt recognition/handling • Opcode decoding •
Operations Unit: • Performs fractional and integer divisions and multiplications. • Performs automatic alignment of floating-point numbers for addition and subtraction. • Performs inverted divisions on floating-point numbers. • Performs automatic normalization of floating-point resultants. • Performs shifts. • Performs indicator register loading and storing. • Performs timer register loading and decrementing. One of the key differences from the GE 635 was the addition of "appending unit" (APU) which was used to implement a hybrid "Paged Segmentation" model of
virtual memory. The APU was also used to implement a
single-level store which is one of the fundamental abstraction that Multics is built around. The instruction format was also extended with the previously unused bit 29 controlling whether the operand address of an instruction used an 18-bit format (bit 29 = 0) or one that was made up of a 3-bit Base Register address with a 15-bit offset (bit 29 = 1). The instruction format with bit 29 set to 1 is: 1 1 2 2 2 2 3 3 0 2 3 7 8 6 7 8 9 0 5 +---+---------------+---------+-+-+-+------+ |BR | Y | OP |0|I|1| Tag | +---+---------------+---------+-+-+-+------+ •
B is the base register field •
Y is the address field (15 bits), addressing 32KW •
OP is the opcode (9 bits), the additional bit 27 is the
opcode extension bit. •
I is the interrupt inhibit bit. •
Tag indicates the type of address modification to be performed; some additional tags are supported by the GE 645. these could operate in either "paired" or "unpaired" modes. The later Honeywell 6180 changed these to 8 pointer registers. Each abr was 24-bits wide consisting of 18 bits for an address and 6 bits for control functions. One bit of the control functions field indicates where an abr is "internal" or "external". If an abr is internal, another 3-bit subfield of the control functions field specifies another abr with which this abr is paired; that other abr is external, with the external abr containing a segment number in the address field and the internal abr containing an offset within the segment specified by the external abr. the standard Multics practice was to label these registers as follows: •
ap for abr 0 •
ab for abr 1 •
bp for abr 2 •
bb for abr 3 •
lp for abr 4 •
lb for abr 5 •
sp for abr 6 •
sb for abr 7 The naming scheme is based around the following: •
a for argument-list pointer •
b for general base •
l for linkage-segment pointer •
s for stack-segment pointer The 8 pointer registers in the Honeywell 6180 and its successors served the same purpose as the 4 paired base registers in the GE-645, referring to an offset within a segment. ==History==