HP 3000

HP 3000

The HP 3000 series is a family of minicomputers released by Hewlett-Packard in 1973 after a difficult development project. The first models were withdrawn from the market until speed improvements could be made. It was intended to be the first minicomputer delivered with a full featured operating system with timesharing. It ultimately became known as a reliable and powerful business system. Early models had large cabinets with front panels, while later models were made that fit into desks using only terminal consoles for diagnostics, with bootstrap routines in ROM.

It was one of the last proprietary minicomputer systems to be retired, outlasting the PDP-11-descended Digital Equipment Corporation VAX, which was acquired by Compaq and then ultimately by Hewlett Packard. After 30 years, a five year phase-out period for the now-named e3000 series servers was announced in November 2001. No more new e3000s are being sold. Support from the vendor to customers for the HP 3000 continues through Dec. 31, 2010. Many third party firms are supporting the system for customers through the year 2013 and beyond.

Classic Memory Segments and 64K Barrier

Code and data reside in variable-length segments, code, read-only, reentrant and limited to 32,760 bytes and data to 65,528 bytes. The operating system, known as MPE (for Multi-Programming Executive), loads code segments from program files and segmented Library (SL) files as needed, up to 256 segments in one process.

There could be as much as 32k of memory in a code segment, but calling a routine was based on segment number and routine number within a segment, so a program could theoretically have 64k routines. This was compared to most 16 bit computers that had 64k of address space for everything. The bigger limitation was the data segment and stack segment, which were also 64k. Shared library routines did not permit static or global data since each process had its own data segment. The AGLgraphic library got around this by requiring the caller to pass in an array from his own stack or data segment to hold all state information, similar to modern object oriented languages where methods are applied to objects passed in allocated by the caller.

Systems programming was done in SPL, an ALGOL-like language, but allowing inline assembler, and other direct access to the ISA. The standard terminals for the HP 3000 were the HP 2640 series, which supported block mode data entry from forms, as well as character mode.

Classic and PA-RISC XL

The HP 3000 family was divided into the "Classic" (16-bit) and "XL" (later IX - 32-bit) families following the introduction of systems based on HP's PA-RISC chips in early 1984. These werenot binary compatible, but would run old code at a slower rate, or run recompiled code faster. The earlier "Classic" machines were based on a custom CISC processor. From about 1988 HP 3000s using PA-RISC processors began shipping in volume and, by 1995, effectively displaced the older family of machines from use although, as with all technology shifts, there remained a significant residue of older machines in service.

The 3000 series operating system was originally styled the Multi-Programming Executive, MPE (later called MPE-XL and then, after POSIX compliance was added in versions 5.0-5.5, MPE-IX). Early versions had a fairly primitive command line interpreter, without a hierarchical file system, and utilities such as compilers would resemble "run fortran.pub.sys" rather than allowing programs to be run as keyword commands. People who used the HP 3000 would notice that machines were fairly reliable compared to other minicomputers of the time.

Part of the tremendous success of the HP 3000 was due to the provision of, with brief exceptions included as part of the Fundamental Operating System (FOS), a vendor developed shallow network database management system (DBMS) called IMAGE (now called TurboIMAGE) that was reputedly inspired by (if not actually based upon) the TOTAL DBMS developed by Cincom Systems, Inc. Almost uniquely in computer history, it remains a feature of MPE that forward binary compatibility of executable programs is preserved across all systems and all version of the operating system, regardless of hardware architecture. Programs that ran on the original series II in 1973 can be reloaded from tape onto the last N-Series machines produced in 2003 and run today without recompiling.

As the market shifted towards standardized Unix systems, which HP had also been promoting, in November 2001, Hewlett-Packard announced that the end-of-life for the HP 3000 would be the end of 2006, and that no new systems would be sold after 2003. In early 2006, Hewlett-Packard announced that limited vendor support for the HP 3000 would be extended by two years for certain clients or geographic regions. In September 2007, HP once more extended its support for the systems, offering Mature Product Support without Sustaining Engineering (creation of software patches). This is one of the longest lifetimes for a proprietary minicomputer system. The computers would outlast the highly regarded PDP-11 and VAX series, although OpenVMS operating system is still being offered on Alpha- and IA-64-based systems as Hewlett Packard products.

Use of stack instead of registers

Most current computer instruction sets are based on a general purpose register model. The processor and memory architecture of the classic HP 3000 were based on a stack machine model, like HP's well-known line of RPN calculators. It was said to be inspired by the famous stack-based Burroughs large systems. Rather than having a small number of registers, for example only an AX and BX register in the case of the HP 1000, operands would be pushed on the same stack used to store local variables and return addresses. So rather than

LOAD AX, 0X0001LOAD BX, 0X0002ADD AX, BX

you would have

PUSH 0X0001PUSH 0X0002ADD

Call instructions enforce a fixed number of arguments, which would have made Corporate Computer Systems CSC/C and Unison's C/3000 C compiler implementations challenging.

The 16-bit microcoded machines (Series I, II, III, 30, 33, 39, 40, 42, 44, 48, 52, 58, 64, 68, 70, 37, ...) implement a 16-bit word addressed, byte-addressable, segmented, Harvard, Stack Instruction Set Architecture (ISA). Most of the ~214 instructions are 16 bits wide. Stack operations pack 2 per 16-bit word and the remaining few are 32 bits wide.

CISC Implementations
* III: 4 Top of stack registers, 175nS microinstruction cycle time → 5.7 MHz
* 30, 33: Silicon on sapphire, 2 Top of stack registers, 90nS microinstruction cycle time → 11 MHz, instructions take 3-7 cycles
* 40, 42, 44, 48: Schottky TTL, 4 Top of stack registers, 105nS microinstruction cycle time → 9.5 MHz
* 64, 68: ECL, 8 Top of Stack registers, 75nS microinstruction cycle time → 13 MHz, 8kB cache, 60kb WCS, 2 16-bit ALUs
* 37: ~8000 gate CMOS Gate array, 4 Top of Stack registers

Later 32-bit models used HP's PA-RISC general register-based RISC architecture.

PA-RISC Implementations
* PA-RISC 1.0 Series 925, 930, 935, 949, 950, 955, 960, 980
* PA-RISC 1.1 Series 917, 920, 922, 927, 937, 947, 948, 957, 958, 967, 977sx, 987, 990, 991, 992, 995
* PA-RISC 2.0 Series 918, 928, 968, 978, 988, 996, A and N class.

References

* Hewlett Package: HP3000 Computer Systems: General Information Manual; August 1983; 5953-7553

ee also

* HP 9000, HP Integrity, HP Superdome

External links

* [http://www.robelle.com/library/smugbook/classic.html "The Classic HP 3000"] - detailed early history.
* Edler, C [http://www.3k.com/index_papers_hp3000_history.html The Rise, Fall and Rise of the HP 3000] - more early history.
* [http://www.3k.com/twiki/bin/view/TWiki/HP3000FAQ HP3000 FAQ]
* [http://www.3000newswire.com/blog] - The 3000 NewsWire news blog for HP3000 news, archives
* [http://bitsavers.org/pdf/hp/3000/ Bitsavers] has PDF scans of HP 3000 hardware and software manuals - but use a mirror site.
* [http://www.brooksnet.com/hp3000remoteprinting.html Printing HP3000 MPE/iX to Windows] printing software.
* [http://www.hpmuseum.net/exhibit.php?class=3&acc=32 HP Computer Museum] also has PDF scans of manuals.
* HP 3000 General Information Manual [http://hpmuseum.net/document.php?catfile=408 Sep 79] , [http://hpmuseum.net/document.php?catfile=208 Oct 1984]
* [http://bitsavers.org/pdf/hp/3000/HP_3000_Performance.txt HP 3000 Performance (text file)]
* [http://aics-research.com/first3k.html "HP SYSTEM/3000 system description" promotional material Nov 1971]
* [http://www.itjungle.com/tfh/tfh111901.html November 19, 2001: HP Sunsets Its Proprietary e3000 Server Line]
* [http://news.com.com/Hewlett-Packard+phases+out+server+line/2100-1001_3-275842.html November 14, 2001 Hewlett-Packard phases out server line, the line will be phased out over a five-year period]
* [http://www.hp.com/products1/evolution/e3000/index.html hp.com: HP is committed to continued support of HP e3000 installations]
* [http://www.hp.com/products1/evolution/e3000/faq.html HP e3000 transition program FAQ]
* [http://www.allegro.com/papers/ Classic Genealogy and PA-RISC Systems Performance Spreadsheets]

Pictures

* [http://ed-thelen.org/comp-hist/hp-3000.jpgPicture of HP 3000]


Wikimedia Foundation. 2010.

Игры ⚽ Нужен реферат?

Look at other dictionaries:

  • 3000 Leagues in Search of Mother — 1998 Movie poster 母をたずねて三千里 (Haha o Tazunete Sanzenri) Genre …   Wikipedia

  • 3000 (число) — 3000 три тысячи 2997 · 2998 · 2999 · 3000 · 3001 · 3002 · 3003 2970 · 2980 · 2990 · 3000 · 3010 · 3020 · 3030 2700 · 2800 · 2900 · 3000 · 3100 · 3200 · 3300 0 · 1000 · 2000 · 3000 · 4000 · 5000 · 6000 Факторизация: 23×3×53 Римская запись …   Википедия

  • 3000 — три тысячи 2997 · 2998 · 2999 · 3000 · 3001 · 3002 · 3003 2970 · 2980 · 2990 · 3000 · 3010 · 3020 · 3030 2700 · 2800 · 2900 · 3000 · 3100 · 3200 · 3300 0 · 1000 · 2000 · 3000 · 4000 · 5000 · 6000 Факторизация: 23×3×53 …   Википедия

  • 3000 (nombre) — Article détaillé : nombres 3000 à 3999. 3000 Cardinal trois mille Ordinal trois millième 3000e Préfixe grec …   Wikipédia en Français

  • 3000 — may refer to:* 3000 (number) * 30th century * 3000 metres, a track and field event. * 3000 was the final build number of Windows Me. * Year 3000, song * Lenovo 3000 * Andre 3000 * Class of 3000 * Major League Baseball s 3000 hit club * Mr. 3000 a …   Wikipedia

  • 3000 series — may refer to:Japanese train types* Hankyū 3000 series EMU * Keihan 3000 series EMU * Keiō 3000 series EMU * Odakyū 3000 series EMU * Odakyū 3000 series SE EMU * Seibu 3000 series EMU * Tōbu 3000 series EMU * Tōkyū 3000 series EMUKorean train… …   Wikipedia

  • 3000 Leagues in Search of Mother — 母をたずねて三千里 (Haha o Tazunete Sanzenri) Жанр приключения, историческая драма …   Википедия

  • 3000 (desambiguación) — 3000 puede referirse a: El número 3000. El siglo XXX, incluye al año 3000. Los 3000 metros de atletismo. Year 3000 (Busted), es el segundo sencillo de la banda de pop rock británica Busted. André 3000, un rapero y productor de hip hop. Class of… …   Wikipedia Español

  • 3000 (number) — 3000 (three thousand) is the natural number following 2999 and preceding 3001. It is the smallest number requiring thirteen letters in English (when and is required from 101 forward). In other fields In the novel The Brothers Karamazov by Fyodor… …   Wikipedia

  • 3000 миль до Грэйсленда — англ. 3000 Miles to Graceland Жанр …   Википедия

  • 3000 Miles — Solicita una imagen para este artículo. Título 3000 Miles Ficha técnica …   Wikipedia Español

Share the article and excerpts

Direct link
Do a right-click on the link above
and select “Copy Link”