Wikiwand AI

SQUOZE

Compression scheme From Wikipedia, the free encyclopedia

SQUOZE (abbreviated as SQZ) is a memory-efficient representation of a combined source and relocatable object program file with a symbol table on punched cards which was introduced in 1958 with the SCAT assembler[1][2] on the SHARE Operating System (SOS) for the IBM 709.[3][4] A program in this format was called a SQUOZE deck.[5][6][7] It was also used on later machines including the IBM 7090 and 7094.

SQUOZE deck

A SQUOZE deck contains an encoded binary form of the original assembly language code. That encoded form is not executable code that can be run by the machine; SQUOZE decks are converted to absolute machine code and stored in memory by a loader program.[8][9][10][11]

Identifier name character encoding

In the SQUOZE encoding, identifiers in the symbol table were represented in a 50-character alphabet, allowing a 36-bit machine word to represent six alphanumeric characters plus two flag bits, thus saving two bits per six characters,[6][1] because the six bits normally allocated for each character could store up to 64 states rather than only the 50 states needed to represent the 50 letters of the alphabet, and 506 < 234.

More information Mostsignificant digits, Least significant digits ...
SQUOZE character codes[1]
Most
significant
digits
Least significant digits
Dec +0 +1 +2 +3 +4 +5 +6 +7
Oct 0 1 2 3 4 5 6 7
Dec Oct Bin 000 001 010 011 100 101 110 111
+0 0 000 space0123456
+8 1 001 789ABCDE
+16 2 010 FGHIJKLM
+24 3 011 NOPQRSTU
+32 4 100 VWXYZ= #/ %) ⌑
+40 5 101 + &-- @+ &-*/$
+48 6 110 ,.N/aN/aN/aN/aN/aN/a
Close

Using base 50 already saves a single bit every three characters, so it was used in two three-character chunks. The manual[1] has a formula for encoding six characters ABCDEF:

For example "SQUOZE", normally 36 bits: 35 33 37 31 44 17(base 8) would be encoded in two 17-bit pieces to fit in the 34 bits as ( 0o220231 << 17 ) | 0o175473 == 0o110114575473.

A simpler example of the same logic would be how a three-digit BCD number would take up 12 bits, such as 987: 9 8 7(base 16) 1001 1000 0111(base 2), but any such value could be stored in 10 bits directly, saving two bits, such as 987: 3db(base 16) 11 1101 1011(base 2).

Etymology

"Squoze" is a facetious past participle of the verb 'to squeeze'.[5][6]

The name SQUOZE was later borrowed for similar character encoding schemes used on DEC machines;[4] they had a 40-character alphabet (50 in octal) and were called DEC RADIX 50 and MOD40,[12] but sometimes nicknamed DEC Squoze.

See also

References

Further reading

Related Articles

Timelines

Top Qs

Fact Checks