- Spaghetti stack
A spaghetti stack (also called a cactus stack or
saguaro stack) incomputer science is an N-arytree data structure in whichchild node s have pointers to theparent node s (but not vice-versa). When a list of nodes is traversed from a leaf node to theroot node by chasing these parentpointer s, the structure looks like alinked list stack. You can just pretend that the one and only parent pointer is called "next" or "link", and ignore that the parents have other children, which are not accessible anyway since there are no downward pointers.Spaghetti stack structures arise in situations when records are dynamically pushed and popped onto a stack as execution progresses, but references to the popped records remain in use.
For example, a
compiler for a language such as C creates a spaghetti stack as it opens and closessymbol table s representing block scopes. When a new block scope is opened, a symbol table is pushed onto a stack. When the closing curly brace is encountered, the scope is closed and the symbol table is popped. But that symbol table is remembered, rather than destroyed. And of course it remembers its higher level "parent" symbol table and so on. Thus when the compiler is later performing translations over theabstract syntax tree , for any given expression, it can fetch the symbol table representing that expression's environment and can resolve references to identifiers. If the expression refers to a variable X, it is first sought after in the leaf symbol table representing the inner-most lexical scope, then in the parent and so on.Use in programming language runtimes
The term spaghetti stack is closely associated with implementations of programming languages that support
continuation s. Spaghetti stacks are used to implement the actualrun-time stack containing variable bindings and other environmental features. When continuations must be supported, a function's local variables cannot be destroyed when that function returns: a saved continuation may later re-enter into that function, and will expect not only the variables there to be intact, but it will also expect the entire stack to be there, so it can return again! To resolve this problem,stack frame s can be dynamically allocated in a spaghetti stack structure, and simply left behind to be garbage collected when no continuations refer to them any longer. This type of structure also solves both the upward and downwardfunarg problem s, so first-class lexical closures are readily implemented in that substrate also.Examples of languages that use spaghetti stacks are:
* Languages having first-class continuations such as Scheme,
* TheFelix programming language ee also
*
Persistent data structure References
Wikimedia Foundation. 2010.