I just read that windows programs call _alloca on function entry to grow the stack if they need more than 4k on the stack. I guss that every time the guard page is hit windows allocates a new page for the stack, therefore _alloca accesses the stack in 4k steps to allocate the space.

I also read that this only applies to windows. How does linux (or other oses) solve this problem if they don't need _alloca?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Linux relies on a heavily optimized page fault handling, so what happens is that the program just pushes things on the stack and the page fault handler will extend the stack on the fly.

link|improve this answer
so are holes in the stack allowed? seems logical to do it this way. what are the reasons for windows to use _alloca? – Jochen_0x90h Jul 21 '11 at 14:55
No, the virtual stack is without holes. The real pages in RAM are scattered, of course. _alloca is probably a bit faster when its needed but it's wasted when the stack is big enough. – Aaron Digulla Jul 21 '11 at 15:39
feedback

Your Answer

 
or
required, but never shown

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