Alloca implementation

implementing alloca actually requires compiler assistance. A few people here are saying it’s as easy as: sub esp, <size> which is unfortunately only half of the picture. Yes that would “allocate space on the stack” but there are a couple of gotchas. if the compiler had emitted code which references other variables relative to esp … Read more