Zero Address Arithmetic
   HOME

TheInfoList



OR:

In computer science,
computer engineering Computer engineering (CoE or CpE) is a branch of electrical engineering and computer science that integrates several fields of computer science and electronic engineering required to develop computer hardware and software. Computer engineers ...
and programming language implementations, a stack machine is a computer processor or a virtual machine in which the primary interaction is moving short-lived temporary values to and from a push down
stack Stack may refer to: Places * Stack Island, an island game reserve in Bass Strait, south-eastern Australia, in Tasmania’s Hunter Island Group * Blue Stack Mountains, in Co. Donegal, Ireland People * Stack (surname) (including a list of people ...
. In the case of a hardware processor, a hardware stack is used. The use of a stack significantly reduces the required number of
processor register A processor register is a quickly accessible location available to a computer's processor. Registers usually consist of a small amount of fast storage, although some registers have specific hardware functions, and may be read-only or write-only. ...
s. Stack machines extend push-down automata with additional load/store operations or multiple stacks and hence are Turing-complete.


Design

Most or all stack machine instructions assume that operands will be from the stack, and results placed in the stack. The stack easily holds more than two inputs or more than one result, so a rich set of operations can be computed. In stack machine code (sometimes called
p-code Bytecode (also called portable code or p-code) is a form of instruction set designed for efficient execution by a software interpreter. Unlike human-readable source code, bytecodes are compact numeric codes, constants, and references (normal ...
), instructions will frequently have only an
opcode In computing, an opcode (abbreviated from operation code, also known as instruction machine code, instruction code, instruction syllable, instruction parcel or opstring) is the portion of a machine language instruction that specifies the operat ...
commanding an operation, with no additional fields identifying a constant, register or memory cell, known as a zero address format. This greatly simplifies instruction decoding. Branches, load immediates, and load/store instructions require an argument field, but stack machines often arrange that the frequent cases of these still fit together with the opcode into a compact group of bits. The selection of operands from prior results is done implicitly by ordering the instructions. Some stack machine instruction sets are intended for interpretive execution of a virtual machine, rather than driving hardware directly. Integer constant operands are pushed by or instructions. Memory is often accessed by separate or instructions containing a memory address or calculating the address from values in the stack. All practical stack machines have variants of the load–store opcodes for accessing local variables and
formal parameter In computer programming, a parameter or a formal argument is a special kind of variable used in a subroutine to refer to one of the pieces of data provided as input to the subroutine. These pieces of data are the values of the arguments (often ca ...
s without explicit address calculations. This can be by offsets from the current top-of-stack address, or by offsets from a stable frame-base register. The
instruction set In computer science, an instruction set architecture (ISA), also called computer architecture, is an abstract model of a computer. A device that executes instructions described by that ISA, such as a central processing unit (CPU), is called an ' ...
carries out most ALU actions with postfix ( reverse Polish notation) operations that work only on the expression stack, not on data registers or main memory cells. This can be very convenient for executing high-level languages, because most arithmetic expressions can be easily translated into postfix notation. For example, consider the expression ''A''*(''B''-''C'')+(''D''+''E''), written in reverse Polish notation as ''A'' ''B'' ''C'' - * ''D'' ''E'' + +. Compiling and running this on a simple imaginary stack machine would take the form: # stack contents (leftmost = top = most recent): push A # A push B # B A push C # C B A subtract # B-C A multiply # A*(B-C) push D # D A*(B-C) push E # E D A*(B-C) add # D+E A*(B-C) add # A*(B-C)+(D+E) The arithmetic operations 'subtract', 'multiply', and 'add' act on the two topmost operands of the stack. The computer takes both operands from the topmost (most recent) values of the stack. The computer replaces those two values with the calculated difference, sum, or product. In other words the instruction's operands are "popped" off the stack, and its result(s) are then "pushed" back onto the stack, ready for the next instruction. Stack machines may have their expression stack and their call-return stack separated or as one integrated structure. If they are separated, the instructions of the stack machine can be pipelined with fewer interactions and less design complexity, so it will usually run faster. Optimisation of compiled stack code is quite possible. Back-end optimisation of compiler output has been demonstrated to significantly improve code, and potentially performance, whilst global optimisation within the compiler itself achieves further gains.


Stack storage

Some stack machines have a stack of limited size, implemented as a register file. The ALU will access this with an index. A large register file uses a lot of transistors and hence this method is only suitable for small systems. A few machines have both an expression stack in memory and a separate register stack. In this case, software, or an interrupt may move data between them. Some machines have a stack of unlimited size, implemented as an array in RAM, which is cached by some number "top of stack" address registers to reduce memory access. Except for explicit "load from memory" instructions, the order of operand usage is identical with the order of the operands in the data stack, so excellent prefetching can be accomplished easily. Consider . It compiles to ; ; . With a stack stored completely in RAM, this does implicit writes and reads of the in-memory stack: * Load X, push to memory * Load 1, push to memory * Pop 2 values from memory, add, and push result to memory for a total of 5 data cache references. The next step up from this is a stack machine or interpreter with a single top-of-stack register. The above code then does: * Load X into empty TOS register (if hardware machine) or Push TOS register to memory, Load X into TOS register (if interpreter) * Push TOS register to memory, Load 1 into TOS register * Pop left operand from memory, add to TOS register and leave it there for a total of 5 data cache references, worst-case. Generally, interpreters don't track emptiness, because they don't have to—anything below the stack pointer is a non-empty value, and the TOS cache register is always kept hot. Typical Java interpreters do not buffer the top-of-stack this way, however, because the program and stack have a mix of short and wide data values. If the hardwired stack machine has 2 or more top-stack registers, or a register file, then all memory access is avoided in this example and there is only 1 data cache cycle.


History and implementations

Description of such a method requiring only two values at a time to be held in registers, with a limited set of pre-defined operands that were able to be extended by definition of further operands, functions and subroutines, was first provided at conference by Robert S. Barton in 1961.


Commercial stack machines

Examples of stack instruction sets directly executed in hardware include * the Z4 (1945) computer by Konrad Zuse. * the Burroughs large systems architecture (since 1961) * the English Electric KDF9 machine. First delivered in 1964, the KDF9 had a 19-level deep pushdown stack of arithmetic registers, and a 17-level deep stack for subroutine return addresses * the Collins Radio
Collins Adaptive Processing System Collins may refer to: People Surname Given name * Collins O. Bright (1917–?), Sierra Leonean diplomat * Collins Chabane (1960–2015), South African Minister of Public Service and Administration * Collins Cheboi (born 1987), Kenyan middle- ...
minicomputer (CAPS, since 1969) and Rockwell Collins Advanced Architecture Microprocessor (AAMP, since 1981). * the Xerox Dandelion introduced 27 April 1981, utilized a stack machine architecture to save memory. * the UCSD Pascal p-machine (as the
Pascal MicroEngine Pascal MicroEngine is a series of microcomputer products manufactured by Western Digital from 1979 through the mid-1980s, designed specifically to run the UCSD p-System efficiently. Compared to other microcomputers, which use a machine language p-c ...
and many others) supported a complete student programming environment on early 8-bit microprocessors with poor instruction sets and little RAM, by compiling to a virtual stack machine. * MU5 and ICL 2900 Series. Hybrid stack and accumulator machines. The accumulator register buffered the memory stack's top data value. Variants of load and store opcodes controlled when that register was spilled to the memory stack or reloaded from there. * HP 3000 (Classic, not PA-RISC) * Tandem Computers T/16. Like HP 3000, except that compilers, not microcode, controlled when the register stack spilled to the memory stack or was refilled from the memory stack. * the
Atmel Atmel Corporation was a creator and manufacturer of semiconductors before being subsumed by Microchip Technology in 2016. Atmel was founded in 1984. The company focused on embedded systems built around microcontrollers. Its products included micr ...
MARC4
microcontroller A microcontroller (MCU for ''microcontroller unit'', often also MC, UC, or μC) is a small computer on a single VLSI integrated circuit (IC) chip. A microcontroller contains one or more CPUs (processor cores) along with memory and programmable i ...
* Several "Forth chips" such as the RTX2000, the RTX2010, the F21 and the PSC1000 * The
Setun Setun (russian: Сетунь) was a computer developed in 1958 at Moscow State University. It was built under the leadership of Sergei Sobolev and Nikolay Brusentsov. It was the most modern ternary computer, using the balanced ternary numeral ...
Ternary computer performed balanced ternary using a stack. * The 4stack processor by Bernd Paysan has four stacks. * Patriot Scientific's
Ignite To ignite is the first step of firelighting. Ignite may also refer to: Music *Ignite (band), a melodic hardcore band from Orange County, California * ''Ignite'' (Econoline Crush album), 2007 * ''Ignite'' (Shihad album), 2010 * "Ignite" (Eir Aoi s ...
stack machine designed by Charles H. Moore holds a leading ''functional density'' benchmark. * Saab Ericsson Space Thor radiation hardened microprocessor * Inmos transputers. * ZPU A physically-small CPU designed to supervise
FPGA A field-programmable gate array (FPGA) is an integrated circuit designed to be configured by a customer or a designer after manufacturinghence the term '' field-programmable''. The FPGA configuration is generally specified using a hardware de ...
systems. * The F18A architecture of the 144-processor GA144 chip from GreenArrays, Inc. *Some technical handheld calculators use reverse Polish notation in their keyboard interface, instead of having parenthesis keys. This is a form of stack machine. The Plus key relies on its two operands already being at the correct topmost positions of the user-visible stack.


Virtual stack machines

Examples of virtual stack machines interpreted in software: * the Whetstone
ALGOL 60 ALGOL 60 (short for ''Algorithmic Language 1960'') is a member of the ALGOL family of computer programming languages. It followed on from ALGOL 58 which had introduced code blocks and the begin and end pairs for delimiting them, representing a k ...
interpretive code, on which some features of the Burroughs B6500 were based * the UCSD Pascal p-machine; which closely resembled Burroughs * the Niklaus Wirth p-code machine *
Smalltalk Smalltalk is an object-oriented, dynamically typed reflective programming language. It was designed and created in part for educational use, specifically for constructionist learning, at the Learning Research Group (LRG) of Xerox PARC by Alan Ka ...
* the
Java virtual machine A Java virtual machine (JVM) is a virtual machine that enables a computer to run Java programs as well as programs written in other languages that are also compiled to Java bytecode. The JVM is detailed by a specification that formally describes ...
instruction set (note that only the abstract instruction set is stack based, HotSpot, the Sun Java Virtual Machine for instance, does not implement the actual interpreter in software, but as handwritten assembly stubs) * the WebAssembly bytecode * the Virtual Execution System (VES) for the Common Intermediate Language (CIL) instruction set of the
.NET Framework The .NET Framework (pronounced as "''dot net"'') is a proprietary software framework developed by Microsoft that runs primarily on Microsoft Windows. It was the predominant implementation of the Common Language Infrastructure (CLI) until bein ...
(ECMA 335) * the Forth programming language, especially the integral virtual machine * Adobe's
PostScript PostScript (PS) is a page description language in the electronic publishing and desktop publishing realm. It is a dynamically typed, concatenative programming language. It was created at Adobe Systems by John Warnock, Charles Geschke, Doug Br ...
* Parakeet programming language *
Sun Microsystems Sun Microsystems, Inc. (Sun for short) was an American technology company that sold computers, computer components, software, and information technology services and created the Java programming language, the Solaris operating system, ZFS, the ...
' SwapDrop programming language for
Sun Ray The Sun Ray was a stateless thin client computer (and associated software) aimed at corporate environments, originally introduced by Sun Microsystems in September 1999 and discontinued by Oracle Corporation in 2014. It featured a smart card r ...
smartcard identification * Adobe's ActionScript Virtual Machine 2 (AVM2) * Ethereum's EVM * the CPython
bytecode Bytecode (also called portable code or p-code) is a form of instruction set designed for efficient execution by a software interpreter. Unlike human-readable source code, bytecodes are compact numeric codes, constants, and references (norma ...
interpreter * the Ruby YARV bytecode interpreter * the Rubinius virtual machine * the bs (programming language) in Unix uses a virtual stack machine to process commands, after first transposing provided input language form, into reverse-polish notation * the Lua (programming language) C API


Hybrid machines

Pure stack machines are quite inefficient for procedures which access multiple fields from the same object. The stack machine code must reload the object pointer for each pointer+offset calculation. A common fix for this is to add some register-machine features to the stack machine: a visible register file dedicated to holding addresses, and register-style instructions for doing loads and simple address calculations. It is uncommon to have the registers be fully general purpose, because then there is no strong reason to have an expression stack and postfix instructions. Another common hybrid is to start with a register machine architecture, and add another memory address mode which emulates the push or pop operations of stack machines: 'memaddress = reg; reg += instr.displ'. This was first used in DEC's
PDP-11 The PDP-11 is a series of 16-bit minicomputers sold by Digital Equipment Corporation (DEC) from 1970 into the 1990s, one of a set of products in the Programmed Data Processor (PDP) series. In total, around 600,000 PDP-11s of all models were sold, ...
minicomputer. This feature was carried forward in VAX computers and in Motorola 6800 and M68000 microprocessors. This allowed the use of simpler stack methods in early compilers. It also efficiently supported virtual machines using stack interpreters or threaded code. However, this feature did not help the register machine's own code to become as compact as pure stack machine code. Also, the execution speed was less than when compiling well to the register architecture. It is faster to change the top-of-stack pointer only occasionally (once per call or return) rather than constantly stepping it up and down throughout each program statement, and it is even faster to avoid memory references entirely. More recently, so-called second-generation stack machines have adopted a dedicated collection of registers to serve as address registers, off-loading the task of memory addressing from the data stack. For example, MuP21 relies on a register called "A", while the more recent GreenArrays processors relies on two registers: A and B. The Intel x86 family of microprocessors have a register-style (accumulator) instruction set for most operations, but use stack instructions for its
x87 x87 is a floating-point-related subset of the x86 architecture instruction set. It originated as an extension of the 8086 instruction set in the form of optional floating-point coprocessors that worked in tandem with corresponding x86 CPUs. These ...
,
Intel 8087 The Intel 8087, announced in 1980, was the first x87 floating-point coprocessor for the 8086 line of microprocessors. The purpose of the 8087 was to speed up computations for floating-point arithmetic, such as addition, subtraction, multiplicati ...
floating point arithmetic, dating back to the iAPX87 (8087) coprocessor for the 8086 and 8088. That is, there are no programmer-accessible floating point registers, but only an 80-bit wide, 8-level deep stack. The x87 relies heavily on the x86 CPU for assistance in performing its operations.


Computers using call stacks and stack frames

Most current computers (of any instruction set style) and most compilers use a large call-return stack in memory to organize the short-lived local variables and return links for all currently active procedures or functions. Each nested call creates a new stack frame in memory, which persists until that call completes. This call-return stack may be entirely managed by the hardware via specialized address registers and special address modes in the instructions. Or it may be merely a set of conventions followed by the compilers, using generic registers and register+offset address modes. Or it may be something in between. Since this technique is now nearly universal, even on register machines, it is not helpful to refer to all these machines as stack machines. That term is commonly reserved for machines which also use an expression stack and stack-only arithmetic instructions to evaluate the pieces of a single statement. Computers commonly provide direct, efficient access to the program's global variables and to the local variables of only the current innermost procedure or function, the topmost stack frame. 'Up level' addressing of the contents of callers' stack frames is usually not needed and not supported as directly by the hardware. If needed, compilers support this by passing in frame pointers as additional, hidden parameters. Some Burroughs stack machines do support up-level refs directly in the hardware, with specialized address modes and a special 'display' register file holding the frame addresses of all outer scopes. Currently, only MCST
Elbrus Mount Elbrus ( rus, links=no, Эльбрус, r=Elbrus, p=ɪlʲˈbrus; kbd, Ӏуащхьэмахуэ, 'uaşhəmaxuə; krc, Минги тау, Mingi Taw) is the highest and most prominent peak in Russia and Europe. It is situated in the we ...
has done this in hardware. When Niklaus Wirth developed the first
Pascal Pascal, Pascal's or PASCAL may refer to: People and fictional characters * Pascal (given name), including a list of people with the name * Pascal (surname), including a list of people and fictional characters with the name ** Blaise Pascal, Fren ...
compiler for the CDC 6000, he found that it was faster overall to pass in the frame pointers as a chain, rather than constantly updating complete arrays of frame pointers. This software method also adds no overhead for common languages like C which lack up-level refs. The same Burroughs machines also supported nesting of tasks or threads. The task and its creator share the stack frames that existed at the time of task creation, but not the creator's subsequent frames nor the task's own frames. This was supported by a
cactus stack In computer science, an in-tree or parent pointer tree is an -ary tree data structure in which each node has a pointer to its parent node, but no pointers to child nodes. When used to implement a set of stacks, the structure is called a spaghetti ...
, whose layout diagram resembled the trunk and arms of a Saguaro cactus. Each task had its own memory segment holding its stack and the frames that it owns. The base of this stack is linked to the middle of its creator's stack. In machines with a conventional flat address space, the creator stack and task stacks would be separate heap objects in one heap. In some programming languages, the outer-scope data environments are not always nested in time. These languages organize their procedure 'activation records' as separate heap objects rather than as stack frames appended to a linear stack. In simple languages like Forth that lack local variables and naming of parameters, stack frames would contain nothing more than return branch addresses and frame management overhead. So their return stack holds bare return addresses rather than frames. The return stack is separate from the data value stack, to improve the flow of call setup and returns.


Comparison with register machines

Stack machines are often compared to register machines, which hold values in an array of registers. Register machines may store stack-like structures in this array, but a register machine has instructions which circumvent the stack interface. Register machines routinely outperform stack machines, and stack machines have remained a niche player in hardware systems. But stack machines are often used in implementing virtual machines because of their simplicity and ease of implementation.


Instructions

Stack machines have higher
code density In computer science, an instruction set architecture (ISA), also called computer architecture, is an abstract model of a computer. A device that executes instructions described by that ISA, such as a central processing unit (CPU), is called an ' ...
. In contrast to common stack machine instructions which can easily fit in 6 bits or less, register machines require two or three register-number fields per ALU instruction to select operands; the densest register machines average about 16 bits per instruction plus the operands. Register machines also use a wider offset field for load-store opcodes. A stack machine's compact code naturally fits more instructions in cache, and therefore could achieve better cache efficiency, reducing memory costs or permitting faster memory systems for a given cost. In addition, most stack-machine instructions are very simple, made from only one opcode field or one operand field. Thus, stack-machines require very little electronic resources to decode each instruction. A program has to execute more instructions when compiled to a stack machine than when compiled to a register machine or memory-to-memory machine. Every variable load or constant requires its own separate Load instruction, instead of being bundled within the instruction which uses that value. The separated instructions may be simple and faster running, but the total instruction count is still higher. Most register interpreters specify their registers by number. But a host machine's registers can't be accessed in an indexed array, so a memory array is allotted for virtual registers. Therefore, the instructions of a register interpreter must use memory for passing generated data to the next instruction. This forces register interpreters to be much slower on microprocessors made with a fine process rule (i.e. faster transistors without improving circuit speeds, such as the Haswell x86). These require several clocks for memory access, but only one clock for register access. In the case of a stack machine with a data forwarding circuit instead of a register file, stack interpreters can allot the host machine's registers for the top several operands of the stack instead of the host machine's memory In a stack machine, the operands used in the instructions are always at a known offset (set in the stack pointer), from a fixed location (the bottom of the stack, which in a hardware design might always be at memory location zero), saving precious in- cache or in-
CPU A central processing unit (CPU), also called a central processor, main processor or just processor, is the electronic circuitry that executes instructions comprising a computer program. The CPU performs basic arithmetic, logic, controlling, and ...
storage from being used to store quite so many memory addresses or index numbers. This may preserve such registers and cache for use in non-flow computation.


Temporary / local values

Some in the industry believe that stack machines execute more data cache cycles for temporary values and local variables than do register machines. On stack machines, temporary values often get spilled into memory, whereas on machines with many registers these temps usually remain in registers. (However, these values often need to be spilled into "activation frames" at the end of a procedure's definition, basic block, or at the very least, into a memory buffer during interrupt processing). Values spilled to memory add more cache cycles. This spilling effect depends on the number of hidden registers used to buffer top-of-stack values, upon the frequency of nested procedure calls, and upon host computer interrupt processing rates. On register machines using optimizing compilers, it is very common for the most-used local variables to remain in registers rather than in stack frame memory cells. This eliminates most data cache cycles for reading and writing those values. The development of "stack scheduling" for performing live-variable analysis, and thus retaining key variables on the stack for extended periods, helps this concern. On the other hand, register machines must spill many of their registers to memory across nested procedure calls. The decision of which registers to spill, and when, is made statically at compile time rather than on the dynamic depth of the calls. This can lead to more data cache traffic than in an advanced stack machine implementation.


Common subexpressions

In register machines, a common subexpression (a subexpression which is used multiple times with the same result value) can be evaluated just once and its result saved in a fast register. The subsequent reuses have no time or code cost, just a register reference. This optimization speeds simple expressions (for example, loading variable X or pointer P) as well as less-common complex expressions. With stack machines, in contrast, results can be stored in one of two ways. Firstly, results can be stored using a temporary variable in memory. Storing and subsequent retrievals cost additional instructions and additional data cache cycles. Doing this is only a win if the subexpression computation costs more in time than fetching from memory, which in most stack CPUs, almost always is the case. It is never worthwhile for simple variables and pointer fetches, because those already have the same cost of one data cache cycle per access. It is only marginally worthwhile for expressions such as . These simpler expressions make up the majority of redundant, optimizable expressions in programs written in non-concatenative languages. An optimizing compiler can only win on redundancies that the programmer could have avoided in the source code. The second way leaves a computed value on the data stack, duplicating it as needed. This uses operations to copy stack entries. The stack must be depth shallow enough for the CPU's available copy instructions. Hand-written stack code often uses this approach, and achieves speeds like general-purpose register machines. Unfortunately, algorithms for optimal "stack scheduling" are not in wide use by programming languages.


Pipelining

In modern machines, the time to fetch a variable from the data cache is often several times longer than the time needed for basic ALU operations. A program runs faster without stalls if its memory loads can be started several cycles before the instruction that needs that variable. Complex machines can do this with a deep pipeline and "out-of-order execution" that examines and runs many instructions at once. Register machines can even do this with much simpler "in-order" hardware, a shallow pipeline, and slightly smarter compilers. The load step becomes a separate instruction, and that instruction is statically scheduled much earlier in the code sequence. The compiler puts independent steps in between. Scheduling memory accesses requires explicit, spare registers. It is not possible on stack machines without exposing some aspect of the micro-architecture to the programmer. For the expression A B -, B must be evaluated and pushed immediately prior to the Minus step. Without stack permutation or hardware multithreading, relatively little useful code can be put in between while waiting for the Load B to finish. Stack machines can work around the memory delay by either having a deep out-of-order execution pipeline covering many instructions at once, or more likely, they can permute the stack such that they can work on other workloads while the load completes, or they can interlace the execution of different program threads, as in the Unisys A9 system. Today's increasingly parallel computational loads suggests, however, this might not be the disadvantage it's been made out to be in the past. Stack machines can omit the operand fetching stage of a register machine. For example, in the Java Optimized Processor (JOP) microprocessor the top 2 operands of stack directly enter a data forwarding circuit that is faster than the register file.


Out-of-order execution

The Tomasulo algorithm finds instruction-level parallelism by issuing instructions as their data becomes available. Conceptually, the addresses of positions in a stack are no different than the register indexes of a register file. This view permits the
out-of-order execution In computer engineering, out-of-order execution (or more formally dynamic execution) is a paradigm used in most high-performance central processing units to make use of instruction cycles that would otherwise be wasted. In this paradigm, a proce ...
of the Tomasulo algorithm to be used with stack machines. Out-of-order execution in stack machines seems to reduce or avoid many theoretical and practical difficulties. The cited research shows that such a stack machine can exploit instruction-level parallelism, and the resulting hardware must cache data for the instructions. Such machines effectively bypass most memory accesses to the stack. The result achieves throughput (instructions per clock) comparable to
RISC In computer engineering, a reduced instruction set computer (RISC) is a computer designed to simplify the individual instructions given to the computer to accomplish tasks. Compared to the instructions given to a complex instruction set comput ...
register machines, with much higher code densities (because operand addresses are implicit). One issue brought up in the research was that it takes about 1.88 stack-machine instructions to do the work of a register machine's RISC instruction. Competitive out-of-order stack machines therefore require about twice as many electronic resources to track instructions ("issue stations"). This might be compensated by savings in instruction cache and memory and instruction decoding circuits.


Hides a faster register machine inside

Some simple stack machines have a chip design which is fully customized all the way down to the level of individual registers. The top of stack address register and the N top of stack data buffers are built from separate individual register circuits, with separate adders and ad hoc connections. However, most stack machines are built from larger circuit components where the N data buffers are stored together within a register file and share read/write buses. The decoded stack instructions are mapped into one or more sequential actions on that hidden register file. Loads and ALU ops act on a few topmost registers, and implicit spills and fills act on the bottommost registers. The decoder allows the instruction stream to be compact. But if the code stream instead had explicit register-select fields which directly manipulated the underlying register file, the compiler could make better use of all registers and the program would run faster. Microprogrammed stack machines are an example of this. The inner microcode engine is some kind of RISC-like register machine or a VLIW-like machine using multiple register files. When controlled directly by task-specific microcode, that engine gets much more work completed per cycle than when controlled indirectly by equivalent stack code for that same task. The object code translators for the HP 3000 and Tandem T/16 are another example. They translated stack code sequences into equivalent sequences of RISC code. Minor 'local' optimizations removed much of the overhead of a stack architecture. Spare registers were used to factor out repeated address calculations. The translated code still retained plenty of emulation overhead from the mismatch between original and target machines. Despite that burden, the cycle efficiency of the translated code matched the cycle efficiency of the original stack code. And when the source code was recompiled directly to the register machine via optimizing compilers, the efficiency doubled. This shows that the stack architecture and its non-optimizing compilers were wasting over half of the power of the underlying hardware. Register files are good tools for computing because they have high bandwidth and very low latency, compared to memory references via data caches. In a simple machine, the register file allows reading two independent registers and writing of a third, all in one ALU cycle with one-cycle or less latency. Whereas the corresponding data cache can start only one read or one write (not both) per cycle, and the read typically has a latency of two ALU cycles. That's one third of the throughput at twice the pipeline delay. In a complex machine like Athlon that completes two or more instructions per cycle, the register file allows reading of four or more independent registers and writing of two others, all in one ALU cycle with one-cycle latency. Whereas the corresponding dual-ported data cache can start only two reads or writes per cycle, with multiple cycles of latency. Again, that's one third of the throughput of registers. It is very expensive to build a cache with additional ports. Since a stack is a component of most software programs, even when the software used is not strictly a stack machine, a hardware stack machine might more closely mimic the inner workings of its programs. Processor registers have a high thermal cost, and a stack machine might claim higher energy efficiency.


Interrupts

Responding to an interrupt involves saving the registers to a stack, and then branching to the interrupt handler code. Often stack machines respond more quickly to interrupts, because most parameters are already on a stack and there is no need to push them there. Some register machines deal with this by having multiple register files that can be instantly swapped but this increases costs and slows down the register file.


Interpreters

Interpreters for virtual stack machines are easier to build than interpreters for register machines; the logic for handling memory address modes is in just one place rather than repeated in many instructions. Stack machines also tend to have fewer variations of an opcode; one generalized opcode will handle both frequent cases and obscure corner cases of memory references or function call setup. (But code density is often improved by adding short and long forms for the same operation.) Interpreters for virtual stack machines are often slower than interpreters for other styles of virtual machine. This slowdown is worst when running on host machines with deep execution pipelines, such as current x86 chips. In some interpreters, the interpreter must execute a N-way switch jump to decode the next opcode and branch to its steps for that particular opcode. Another method for selecting opcodes is threaded code. The host machine's prefetch mechanisms are unable to predict and fetch the target of that indexed or indirect jump. So the host machine's execution pipeline must restart each time the hosted interpreter decodes another virtual instruction. This happens more often for virtual stack machines than for other styles of virtual machine. One example is the Java programming language. Its canonical virtual machine is specified as an 8-bit stack machine. However, the Dalvik virtual machine for Java used on
Android Android may refer to: Science and technology * Android (robot), a humanoid robot or synthetic organism designed to imitate a human * Android (operating system), Google's mobile operating system ** Bugdroid, a Google mascot sometimes referred to ...
smartphones A smartphone is a portable computer device that combines mobile telephone and computing functions into one unit. They are distinguished from feature phones by their stronger hardware capabilities and extensive mobile operating systems, which ...
is a 16-bit virtual-register machine - a choice made for efficiency reasons. Arithmetic instructions directly fetch or store local variables via 4-bit (or larger) instruction fields. Similarly version 5.0 of Lua replaced its virtual stack machine with a faster virtual register machine. Since Java virtual machine became popular, microprocessors have employed advanced branch predictors for indirect jumps. This advance avoids most of pipeline restarts from N-way jumps and eliminates much of the instruction count costs that affect stack interpreters.


See also

*
Stack-oriented programming language Stack-oriented programming, is a programming paradigm which relies on a stack machine model for passing Parameter (computer programming), parameters. Stack-oriented languages operate on one or more Stack (data structure), stacks, each of which ...
* Concatenative programming language * Comparison of application virtual machines * SECD machine * Accumulator machine * Belt machine * Random-access machine


References

{{reflist, refs= {{cite book , title=Computer architecture: Concepts and evolution , author-first1=Gerrit Anne , author-last1=Blaauw , author-link1=Gerrit Anne Blaauw , author-first2=Frederick Phillips , author-last2=Brooks, Jr. , author-link2=Frederick Phillips Brooks , publisher=
Addison-Wesley Longman Publishing Co., Inc. Addison-Wesley is an American publisher of textbooks and computer literature. It is an imprint of Pearson PLC, a global publishing and education company. In addition to publishing books, Addison-Wesley also distributes its technical titles through ...
, publication-place=Boston, Massachusetts, USA , date=1997
{{cite web , title=ZPU - the world's smallest 32-bit CPU with a GCC tool-chain: Overview , url=http://opencores.org/project,zpu , publisher=opencores.org , access-date=2015-02-07 {{cite web , url=https://www.greenarraychips.com/home/documents/index.php#F18A , title=Documents , at=F18A Technology , website=GreenArrays, Inc. , access-date=2022-07-07 {{cite web , url=http://www.colorforth.com/inst.htm , title=colorForth Instructions , website=Colorforth.com , access-date=2017-10-08 , archive-url=https://web.archive.org/web/20160310112802/http://colorforth.com/inst.htm , archive-date=2016-03-10 (Instruction set of the F18A cores, named colorForth for historical reasons.) {{cite web , author-last=Koopman, Jr. , author-first=Philip John , url=http://www.ece.cmu.edu/~koopman/stack_computers/ , title=Stack Computers: the new wave , website=Ece.cmu.edu , access-date=2017-10-08 {{cite web , author-last1=Chatterji , author-first1=Satrajit , author-last2=Ravindran , author-first2=Kaushik , title=BOOST: Berkeley's Out of Order Stack Thingie , url=https://www.researchgate.net/publication/228556746 , website=Research Gate , publisher=Kaushik Ravindran , access-date=2016-02-16 {{cite magazine , first=Bob , last=Beard , magazine=Computer RESURRECTION , date=Autumn 1997 , url=http://www.cs.man.ac.uk/CCS/res/res18.htm#c , title=The KDF9 Computer - 30 Years On {{cite journal , author-last=Koopman, Jr. , author-first=Philip John , title=A Preliminary Exploration of Optimized Stack Code Generation , journal=Journal of Forth Applications and Research , date=1994 , volume=6 , issue=3 , url=http://www.ece.cmu.edu/~koopman/stack_compiler/stack_co.pdf {{cite journal , author-last=Bailey , author-first=Chris , title=Inter-Boundary Scheduling of Stack Operands: A preliminary Study , journal=Proceedings of Euroforth 2000 Conference , date=2000 , url=http://www.complang.tuwien.ac.at/anton/euroforth/ef00/bailey00.pdf {{cite journal , author-last1=Shannon , author-first1=Mark , author-last2=Bailey , author-first2=Chris , title=Global Stack Allocation: Register Allocation for Stack Machines , journal=Proceedings of Euroforth Conference 2006 , date=2006 , url=http://www.complang.tuwien.ac.at/anton/euroforth2006/papers/shannon.pdf {{cite conference , conference=1961 Western Joint IRE-AIEE-ACM Computer Conference , title=A new approach to the functional design of a digital computer , author-last=Barton , author-first=Robert S. , author-link=Robert S. Barton , date=1961 , book-title=Papers Presented at the May 9-11, 1961, Western Joint IRE-AIEE-ACM Computer Conference , pages=393–396 , doi=10.1145/1460690.1460736 , isbn=978-1-45037872-7 , s2cid=29044652 , url=https://dl.acm.org/doi/10.1145/1460690.1460736 {{cite journal , journal=IEEE Annals of the History of Computing , title=A new approach to the functional design of a digital computer , author-last=Barton , author-first=Robert S. , author-link=Robert S. Barton , date=1987 , volume=9 , pages=11–15 , doi=10.1109/MAHC.1987.10002 , url=http://doi.ieeecomputersociety.org/10.1109/MAHC.1987.10002 {{cite journal , url=http://hokiepokie.org/docs/EETimes.ps , title=The World's First Java Processor , author-first1=David A. , author-last1=Greve , author-first2=Matthew M. , author-last2=Wilding , journal=Electronic Engineering Times , date=1998-01-12 {{cite web , title=Mesa Processor Principles of Operation , url=http://www.digibarn.com/friends/alanfreier/princops/00yTableOfContents.html , website=DigiBarn Computer Museum , publisher=Xerox , access-date=2019-12-23 {{cite web , title=DigiBarn: The Xerox Star 8010 "Dandelion" , url=http://www.digibarn.com/collections/systems/xerox-8010/index.html , publisher=DigiBarn Computer Museum , access-date=2019-12-23 {{cite manual , url=https://en.wikichip.org/w/images/4/44/MARC4_4-bit_Microcontrollers_Programmer%27s_Guide.pdf , title=MARC4 4-bit Microcontrollers Programmer's Guide , publisher=
Atmel Atmel Corporation was a creator and manufacturer of semiconductors before being subsumed by Microchip Technology in 2016. Atmel was founded in 1984. The company focused on embedded systems built around microcontrollers. Its products included micr ...
{{cite web , url=http://www.colorforth.com/chips.html , title=Forth chips , website=Colorforth.com , access-date=2017-10-08 , url-status=dead , archive-url=https://web.archive.org/web/20060215200605/http://www.colorforth.com/chips.html , archive-date=2006-02-15 {{cite web , url=http://www.ultratechnology.com/f21.html , title=F21 Microprocessor Overview , website=Ultratechnology.com , access-date=2017-10-08 {{cite web , url=https://github.com/ForthHub/ForthFreak , title=ForthFreak wiki , date=2017-08-25 , access-date=2017-10-08 , website=GitHub.com {{cite web , url=https://www.developer.com/guides/a-java-chip-available-now/ , title=A Java chip available -- now! , website=Developer.com , date=1999-04-08 , access-date=2022-07-07 {{cite web , url=http://bernd-paysan.de/4stack.html , title=4stack Processor , website=bernd-paysan.de , access-date=2017-10-08 {{cite web , url=http://lundqvist.dyndns.org/Publications/thesis95/ThorGCC.pdf , title=Porting the GNU C Compiler to the Thor Microprocessor , date=1995-12-04 , access-date=2011-03-30 , url-status=dead , archive-url=https://web.archive.org/web/20110820085702/http://lundqvist.dyndns.org/Publications/thesis95/ThorGCC.pdf , archive-date=2011-08-20 {{cite web , url=http://www.greenarraychips.com/ , title=GreenArrays, Inc. , website=Greenarraychips.com , access-date=2017-10-08 {{cite book , author-last1=Randell , author-first1=Brian , author-link1=Brian Randell , author-last2=Russell , author-first2=Lawford John , url=http://www.softwarepreservation.org/projects/ALGOL/book/Randell_ALGOL_60_Implementation_1964.pdf , title=Algol 60 Implementation , location=London, UK , publisher= Academic Press , date=1964 , isbn=0-12-578150-4 {{cite journal , author-last1=Shi , author-first1=Yunhe , author-last2=Gregg , author-first2=David , author-last3=Beatty , author-first3=Andrew , author-last4=Ertl , author-first4=M. Anton , title=Virtual machine showdown: stack versus registers , journal=Proceedings of the 1st ACM/USENIX International Conference on Virtual Execution Environments - VEE '05 , date=2005 , pages=153 , doi=10.1145/1064979.1065001 , s2cid=811512 {{cite book , author-last=Hyde , author-first=Randall , author-link=Randall Hyde , title=Write Great Code, Vol. 2: Thinking Low-Level, Writing High-Level , date=2004 , volume=2 , publisher= No Starch Press , isbn=978-1-59327-065-0 , page=391 , url=https://www.google.com/books/edition/Write_Great_Code_Vol_2/mM58oD4LATUC?hl=en&gbpv=1&dq=stack%20machines%20simplicity&pg=PA391&printsec=frontcover&bsq=stack%20machines%20simplicity , access-date=2021-06-30 , language=en "Computer Architecture: A Quantitative Approach", John L. Hennessy,
David Andrew Patterson David Andrew Patterson (born November 16, 1947) is an American computer pioneer and academic who has held the position of professor of computer science at the University of California, Berkeley since 1976. He announced retirement in 2016 after s ...
; See the discussion of stack machines.
{{cite book , title=Second-Generation Stack Computer Architecture , chapter=2.1 Lukasiewicz and the First Generation: 2.1.2 Germany: Konrad Zuse (1910–1995); 2.2 The First Generation of Stack Computers: 2.2.1 Zuse Z4 , author-first=Charles Eric , author-last=LaForest , type=thesis , publisher= University of Waterloo , location=Waterloo, Canada , date=April 2007 , page=8, 11, etc. , url=http://fpgacpu.ca/publications/Second-Generation_Stack_Computer_Architecture.pdf , access-date=2022-07-02 , url-status=live , archive-url=https://web.archive.org/web/20220120155616/http://fpgacpu.ca/publications/Second-Generation_Stack_Computer_Architecture.pdf , archive-date=2022-01-20 (178 pages

/ref> {{cite manual , url=http://www.bitsavers.org/pdf/burroughs/A-Series/MCP_3.6/1170057_Introduction_to_A_Series_Systems_3.6_Apr86.pdf , title=Introduction to A Series Systems , date=April 1986 , publisher= Burroughs Corporation , access-date=2022-07-07 {{cite web , url=http://www.jopdesign.com/doc/stack.pdf , title=Design and Implementation of an Efficient Stack Machine , website=Jopdesign.com , access-date=2017-10-08 {{cite journal , title=HP3000 Emulation on HP Precision Architecture Computers , author-first1=Arndt , author-last1=Bergh , author-first2=Keith , author-last2=Keilman , author-first3=Daniel , author-last3=Magenheimer , author-first4=James , author-last4=Miller , journal= Hewlett-Packard Journal , publisher=
Hewlett Packard The Hewlett-Packard Company, commonly shortened to Hewlett-Packard ( ) or HP, was an American multinational information technology company headquartered in Palo Alto, California. HP developed and provided a wide variety of hardware components ...
, date=December 1987 , pages=87–89 , url=http://www.hpl.hp.com/hpjournal/pdfs/IssuePDFs/1987-12.pdf , access-date=2017-10-08
Migrating a CISC Computer Family onto RISC via Object Code Translation. Kristy Andrews, Duane Sand: Proceedings of ASPLOS-V, October 1992 8051 CPU Manual, Intel, 1980 {{cite web , title=Virtual Machine Showdown: Stack vs. Register Machine , author-first1=Yunhe , author-last1=Shi , author-first2=David , author-last2=Gregg , author-first3=Andrew , author-last3=Beatty , author-first4=M. Anton , author-last4=Ertle , url=http://usenix.org/events/vee05/full_papers/p153-yunhe.pdf , website=Usenix.org , access-date=2017-10-08 {{cite web , title=The Case for Virtual Register Machines , author-first1=Brian , author-last1=Davis , author-first2=Andrew , author-last2=Beatty , author-first3=Kevin , author-last3=Casey , author-first4=David , author-last4=Gregg , author-first5=John , author-last5=Waldron , url=http://www.scss.tcd.ie/David.Gregg/papers/Gregg-SoCP-2005.pdf , website=Scss.tcd.ie , access-date=2017-10-08 {{cite web , url=http://sites.google.com/site/io/dalvik-vm-internals/2008-05-29-Presentation-Of-Dalvik-VM-Internals.pdf?attredirects=0 , title=Presentation of Dalvik VM Internals , author-first=Dan , author-last=Bornstein , date=2008-05-29 , access-date=2010-08-16 , format=PDF , page=22 {{cite web , url=http://www.lua.org/doc/jucs05.pdf , title=The Implementation of Lua 5.0 , website=Lua.org , access-date=2017-10-08 {{cite web , url=http://www.inf.puc-rio.br/~roberto/talks/lua-ll3.pdf , title=The Virtual Machine of Lua 5.0 , website=Inf.puc-rio.br , access-date=2017-10-08 {{cite web , url=https://hal.inria.fr/hal-01100647/document , title=Branch Prediction and the Performance of Interpreters - Don't Trust Folklore , website=Hal.inria.fr , access-date=2017-10-08


External links


Homebrew CPU in an FPGA
— homebrew stack machine using FPGA

— homebrew stack machine using discrete logical circuits

— homebrew stack machine using bitslice/PLD
Second-Generation Stack Computer Architecture
— Thesis about the history and design of stack machines. Models of computation Stack machines Microprocessors