The stackoverflow.com logo suggests a certain description of a stack overflow. I don't mean to say that logos must be correct in what they depict. The logo is perfectly all right as a logo. But how apt is it as a description of the "real" stack overflow? I mean, if the stack overflow condition is detected as an error, the picture is not right. And if it is NOT detected, again the picture is not right. Is what I say correct?
|
migrated from stackoverflow.com Nov 10 '09 at 4:39
|
About the logo itself: The logo itself is like a real stack overflow in some ways and not in others.
The logo properly displays that it is a stack:
About what a stack overflow is: A stack has a maximum address that should not be exceeded. This maximum address can be exceeded by pushing something onto the stack. The size of the stack determines what this maximum address can be. You can set this stack size for your programs. As an aside, the opposite is a stack underflow, where you try to pop from the stack when nothing is on it, resuling in going under the minimum address that cannot be exceeded. Here is an example of a stack overflow:
Here is another example of a stack overflow, In this example the stack is exceeded because every function call pushes something on the stack:
|
|||||||||||||||||||||||||
|
|
It's just a logo, and you are all crazy people. For the humour-impaired, ;), but also, come on... :|. |
|||
|
What is a stack overflow? Well my friends, years ago, back in the dark ages of computing, a colleague came to me with a problem. His code was randomly crashing, and he couldn't figure out where the bug was. By crash I mean write random characters to random spots on the screen, lock up, and require physical powering down. Yes, this was the world of DOS, the IBM pc, back when we ran without virtual memory or "protected" memory segments. So it turns out my colleague was running with the default 4k stack. Yes, 4 kilobytes. Get out your magnifying glass. Back in those days, the stack started at one end of memory. Code went at another. Heap went at another. The heap and stack kind-of worked up/down toward each other. When they met, it was "troublesome". Only my colleague's compiler put his compiled binary code up at the end of the stack. And he declared a large array of floats on the stack. A very large array, for his stack size. It took up a little over 3k. Eventually, when his function call tree got deep enough, he overwrote his code. Eventually, he called that code. My friends, THAT is a stack overflow. You people today, with your virtual memory and coredumps. You have it easy! |
|||||
|
|
Generally a stack is a Last In - First Out (FIFO) structure. In most systems the storage allocated to the stack is finite in nature. A common way is to segment the address space such that the heap grows from one end address space and the stack from the other end. when the number of elements in the stack exceed the storage space it is said to overflow. There are CPU stacks keeping track of various values, there are stack frames for tracking function calls in a language run-time and various other stacks keeping track of temporary values. the reason the stack is used is because allocating memory on the stack really just copying a value and incrementing a pointer just past the size of the pushed element. |
|||||||||||||||||||
|
|
The meaning "stack overflow" becomes apparent from the logo if you think at "stack" and "overflow" with the common, dictionary meaning in mind instead of the CS meaning. Think of a pile of cookies that overflows from a cup... |
|||||
|
|
I don't know how to compare the logo to a real stack overflow. Strictly speaking, a stack overflow could apply to any kind of stack, not just the function call stack that the two existing answers refer to. As they describe, a stack overflow happens when a stack has more things pushed onto it than its fixed allocation of memory can accommodate. In that sense, the logo is completely wrong because the items wouldn't curve as they overflowed, nor would they change color, because they wouldn't have a geometric orientation or a color to begin with. In any case, I always thought the stackoverflow.com name referred more to the problem of developers being overwhelmed with things to do, things to learn, and in general, too many mental contexts over the course of a day. In that sense, there's nothing technical about the name at all... |
|||
|
|
|
For a technical description of a stack overflow see http://stackoverflow.com/questions/26158/how-does-a-stack-overflow-occur-and-how-do-you-prevent-it#27132 The logo does not accurately depict a computational stack overflow, but it gives a sense of the words "stack" and "overflow." As a logo goes it's great, for several reasons:
As far as technical issues:
But, at the end of the day, a logo is about branding. It's not meant to be a teaching object, and this one is very good for it's purpose. -Adam |
|||
|
|
|
Unfortunately, the logo, in all its beauty, does not suggest the undesirability of the stack overflow condition. It looks inviting! |
|||||
|
|
A stack overflow occurs when the pile of papers to be handled in your inbox gets so high that it cascades sideways onto the floor, causing a complete brain reset in panic at dealing with so many issues. The friction of the paper sliding sideways causes it to burst into flames, thus the change in color to a fiery orange as the stack gets higher and higher. |
|||
|
|
|
Technically, for a call stack a "stack overflow" is detected when the CPU issues a write to the stack at a higher address than "allowed", which leads to an exception being raised to the operating system. The range of "allowed" addresses is determined by the memory tables for that process and is set up by the operating system. When creating a thread in windows, you can decide what size the stack should have. (Even though, the physical memory is probably not committed to this stack until actually required.) |
|||||||||
|
|
I agree with Federico about the common use of the term. Thinking further back, consider a cafeteria line that has a special stacker for clean trays at the start of the line. The stack has a spring mechanism so that the stack will sink into the container as more clean trays are placed on top. At some point, the stack can't descend any farther and new trays will start to pile up higher and higher above the normal height maintained by the stacking mechanism. Keep this up and the stack will be unstable and topple. This is not unlike the stack used diagramatically in the Stack Overflow logo. There is another case too, referred to as stacker or hopper overflow. In the era of punched cards, card readers and card punches attached to computers would often stack their output face down where it could be removed from the output hopper with the cards in proper sequence. The stack of output or already-read cards was usually fed onto a spring-loaded piston under a plate that could move up and down inside of a channel that kept the cards from falling out. (You could remove the cards sideways from the vertical hopper.) When it was sensed that the plate had descended too far, there was a mechanical mechanism (patented by IBM) involving a spring-loaded toggle switch. When the toggle was thrown by the weight of the descending stack of cards, the card transport would be stopped until an operator removed the stack from the hopper that overflowed. |
|||
|
|
|
Thanks for informative answers, incisive comments and eloquent markdowns. I clarify again: the logo is good enough as a logo. My question was only about whether it depicted the stack overflow condition properly. I appreciate the historical(nostalgic for me too) references to the various connotations of stack. |
|||
|
|