vote up 62 vote down star
17

To commemorate the public launch of Stack Overflow, what's the shortest code to cause a stack overflow? Any language welcome.

ETA: Just to be clear on this question, seeing as I'm an occasional Scheme user: tail-call "recursion" is really iteration, and any solution which can be converted to an iterative solution relatively trivially by a decent compiler won't be counted. :-P

ETA2: I've now selected a “best answer”; see this post for rationale. Thanks to everyone who contributed! :-)

flag
3  
Hope you like my new entry. One byte, and faster overflow than befunge... stackoverflow.com/questions/62188/… – Adam Davis Feb 28 at 2:19
show 1 more comment

112 Answers

prev 1 2 3 4
vote up 1 vote down

Vb6


Public Property Let x(ByVal y As Long)
  x = y
End Property

Private Sub Class_Initialize()
  x = 0
End Sub
link|flag
show 2 more comments
vote up 1 vote down

Short solution in K&R C, could be compiled:

main(){main()}

14 bytes

link|flag
vote up 5 vote down

Here's another interesting one from Scheme:

((lambda (x) (x x)) (lambda (x) (x x)))
link|flag
show 1 more comment
vote up 0 vote down

http://www.google.com/search?q=google.com

link|flag
vote up 0 vote down

Actionscript 3: All done with arrays...

var i=[];
i[i.push(i)]=i;
trace(i);

Maybe not the smallest but I think it's cute. Especially the push method returning the new array length!

link|flag
vote up 0 vote down

In response to the Y combinator comment, i might as well through in the Y-combinator in the SKI calculus:

S (K (S I I)) (S (S (K S) K) (K (S I I)))

There aren't any SKI interpreters that i know of but i once wrote a graphical one in about an hour in actionscript. I would be willing to post if there is interest (though i never got the layout working very efficiently)

read all about it here: http://en.wikipedia.org/wiki/SKI_combinator_calculus

link|flag
vote up 0 vote down

In x86 assembly, place a divide by 0 instruction at the location in memory of the interrupt handler for divide by 0!

link|flag
show 1 more comment
vote up 2 vote down

Groovy (5B):

run()
link|flag
vote up 0 vote down

in perl:

`$0`

As a matter of fact, this will work with any shell that supports the backquote-command syntax and stores its own name in $0

link|flag
show 2 more comments
vote up 1 vote down

False:

[1][1]#

(False is a stack language: # is a while loop that takes 2 closures, a conditional and a body. The body is the one that causes the overflow).

link|flag
vote up 0 vote down

CMD overflow in one line

echo @call b.cmd > b.cmd & b
link|flag
vote up 0 vote down

Prolog

This program crashes both SWI-Prolog and Sicstus Prolog when consulted.

p :- p, q.
:- p.
link|flag
vote up -3 vote down
Redmond.Microsoft.Core.Windows.Start()
link|flag
vote up 32 vote down

PIC18

The PIC18 answer given by TK results in the following instructions (binary):

overflow
   PUSH
   0000 0000 0000 0101
   CALL overflow
   1110 1100 0000 0000
   0000 0000 0000 0000

However, CALL alone will perform a stack overflow:

CALL $
1110 1100 0000 0000
0000 0000 0000 0000

Smaller, faster PIC18

But RCALL (relative call) is smaller still (not global memory, so no need for the extra 2 bytes):

RCALL $
1101 1000 0000 0000

So the smallest on the PIC18 is a single instruction, 16 bits (two bytes). This would take 2 instruction cycles per loop. At 4 clock cycles per instruction cycle you've got 8 clock cycles. The PIC18 has a 31 level stack, so after the 32nd loop it will overflow the stack, in 256 clock cycles. At 64MHz, you would overflow the stack in 4 micro seconds and 2 bytes.

PIC16F5x (even smaller and faster)

However, the PIC16F5x series uses 12 bit instructions:

CALL $
1001 0000 0000

Again, two instruction cycles per loop, 4 clocks per instruction so 8 clock cycles per loop.

However, the PIC16F5x has a two level stack, so on the third loop it would overflow, in 24 instructions. At 20MHz, it would overflow in 1.2 micro seconds and 1.5 bytes.

Intel 4004

The Intel 4004 has an 8 bit call subroutine instruction:

CALL $
0101 0000

For the curious that corresponds to an ascii 'P'. With a 3 level stack that takes 24 clock cycles for a total of 32.4 micro seconds and one byte. (Unless you overclock your 4004 - come on, you know you want to.)

Which is as small as the befunge answer, but much, much faster than the befunge code running in current interpreters.

link|flag
1  
Very nice. :-) I can't accept two answers, so I've just +1'd your answer, and hope everyone else does the same and bump it up. :-P – Chris Jester-Young Mar 6 at 19:26
2  
Ah, I figured that the smallest and fastest might beat out the the smallest, but such is life. Thanks anyway! – Adam Davis Mar 6 at 22:12
1  
Sweet. I started out on Z-80 assembler, and it's nice to know there's still low-level awesomeness in the world! – Mark Harrison Aug 24 at 20:04
vote up 0 vote down

Tail call optimization can be sabotaged by not tail calling. In Common Lisp:

(defun f () (1+ (f)))
link|flag
vote up 0 vote down

In Haskell

fix (1+)

This tries to find the fix point of the (1+) function (λ n → n + 1) . The implementation of fix is

fix f = (let x = f(x) in x)

So

fix (1+)

becomes

(1+) ((1+) ((1+) ...))

Note that

fix (+1)

just loops.

link|flag
vote up 0 vote down

Meta problem in D:

class C(int i) { C!(i+1) c; }
C!(1) c;

compile time stack overflow

link|flag
vote up 0 vote down
_asm t: call t;
link|flag
vote up 0 vote down

A better lua solution:

function c()c()end;

Stick this into SciTE or an interactive command prompt and then call it. Boom!

link|flag
vote up 2 vote down

Please tell me what the acronym "GNU" stands for.

link|flag
show 1 more comment
vote up 0 vote down

OCaml

let rec f l = f l@l;;

This one is a little different. There's only one stack frame on the stack (since it's tail recursive), but it's input keeps growing until it overflows the stack. Just call f with a non empty list like so (at the interpreter prompt):

# f [0];;
Stack overflow during evaluation (looping recursion?).
link|flag
vote up 0 vote down

Even though it doesn't really have a stack...

brainf*ck 5 char

+[>+]
link|flag
prev 1 2 3 4

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.