- AT&T Hobbit
The Hobbit is a
microprocessor design of the early 1990s fromAT&T . It developed from their CRISP ("C-language Reduced Instruction Set Processor") design that was in turn developed from the C Machine experimental efforts in the late 1980s atBell Labs . C Machine, CRISP and Hobbit were optimized for running the C programming language. The design concentrated on fast instruction decoding, indexed array access andprocedure call s. Although it wasRISC -like in some aspects, it was an "oddball" design in most others. It failed to garner a successful market niche, and production ended in the mid-1990s with no serious commercial use. However, its concepts and ideas were used in, and inspired, more famous hardware.Features
In a traditional
RISC design, better referred to as "load-store architecture", memory is accessed explicitly through commands that load data intoregister s and back out to memory. Instructions that manipulate that data generally work solely on the registers. This allows the processor to clearly separate the movement of data from the processing done on it, making it easier to tune theinstruction pipeline s and addsuperscalar support. However, programming languages do not actually operate in this fashion. Generally they use astack containing local variables and other information for subroutines known as a "stack frame " or "activation record". Thecompiler writes code to create activation records using the underlying processor's load-store design.The C Machine, and the CRISP and Hobbit that followed, directly supported the types of memory access that programming languages used and was optimized for running the C programming language. [ [http://www.byte.com/art/9401/sec7/art8.htm "The AT&T Hobbit Enters Its Second Generation"] , "BYTE Magazine", January 1994] Instructions included the ability to talk directly to memory, notably structures within memory such as stack frames and arrays. Although this "memory-data" model was typical of the earlier CISC designs, in the C Machine data access was handled entirely via a stack of 64 32-bit registers; the registers were not otherwise addressable (in contrast with the
INMOS Transputer and other stack-based designs). Using a stack for data access can dramatically reduce code size as there is no need to specify the location of the data needed by the instructions. On such astack machine , most instructions implicitly use the data on the top of the stack. Highercode density means less data movement on the memory bus, improving performance.One interesting side-effect of the Hobbit design was that it inspired designers of the Dis
virtual machine (an offshoot of Plan 9) to use a memory-to-memory-based system that more closely matched the internal register-based workings of real-world processors. They found, as RISC designers would have expected, that without a load-store design it was difficult to improve theinstruction pipeline and thereby operate at higher speeds. They felt that all future processors would thus move to a load-store design, and built Inferno to reflect this. In contrast, Java and .NET virtual machines are stack based, a side-effect of being designed by language programmers as opposed to chip designers. Translating from a stack based language to a register-basedassembly language is a "heavyweight" operation; Java'svirtual machine and compiler are many times larger and slower than the Disvirtual machine and the Limbo (the most common language compiled for Dis) compiler. [Winterbottom, Phil, Pike, Rob. [http://herpolhode.com/rob/hotchips.html "The design of the Inferno virtual machine"] , "Bell Labs, Lucent Technologies"]History and Usage
CRISP was produced in 1987, largely for experimental purposes. According to a major computing timeline,
Apple Computer approached AT&T and paid them to develop a newer version of the CRISP suitable for low-power use in the Newton. [Bayko, John. [http://jbayko.sasktelwebsite.net/cpu7.html#Sec7Part4 "AT&T CRISP/Hobbit, CISC amongst the RISC (1987)"] , "Great Microprocessors of the Past and Present, Section Six: Weird and Innovative Chips", May 2003] The result was the Hobbit, which was initially produced as the 92010 in 1992 with a 3 kB instruction buffer and the 92020 in 1994 with 6 kB. Although it did not end up being used by Apple, Hobbit did see use in AT&T's ownEO Personal Communicator ,cite web|url=http://money.cnn.com/magazines/fortune/fortune_archive/1993/05/17/77857/index.htm|title=COULD AT&T RULE THE WORLD?|last=Kirkpatrick|first=David|date=1993-05-17|accessdate=2008-06-10] an early PDA running GO Corporation's PenPoint operating system, as well as the earliest (unreleased) versions of theBeBox . With these exceptions there was almost no commercial use of the design, and production was ended.References
External links
* [http://www.bebox.nu/images.php?s=images/hobbit The BeBox Zone - "Prototype Hobbit BeBox" Gallery]
* [http://findarticles.com/p/articles/mi_m3311/is_n3-4_v28/ai_13604566 Computer Industry Report 1992 article - "Hobbit - AT&T Microelectronics' most visible new product - takes on Intel, ARM, Motorola, Microsoft - Intel Corp.; Motorola Inc.; Microsoft Corp"]
* [http://lowendmac.com/orchard/06/0207.html Low End Mac - "Sculley's Dream: The Story Behind the Newton", by Tom Hormby]
Wikimedia Foundation. 2010.