It happens that function uses local buffer to prepare some block of data of limited size and pass it to the other function, just like this:
void foo()
{
char buffer[MAX_SIZE];
size_t size = write_fancy_things(buffer);
bar(buffer, size);
}
However, depending on value of MAX_SIZE, you might be worried about eating too much stack and replace the code with something similar to the following example (but hopefully with more care about memory management):
void foo()
{
static char *buffer = new char[MAX_SIZE];
size_t size = write_fancy_things(buffer);
bar(buffer, size);
}
In general case, these two functions should behave the same. However, in the first example, if MAX_SIZE is too large, we're more likely to hit stack limit. Using large values might be fine if you're aware where the function is used, but sometimes you're not.
In the second example we're dealing with additional indirection and buffer is more prone to CPU cache miss, which may be a case if foo lies on a low latency critical path and we expect the cost of preparing the buffer to be very low in most cases.
What size would you consider as being too large to put on stack? Also is there any penalty on putting big block of data on the stack, but using only small portion of it?
EDIT: The write_fancy _things is just a synonym for saying *I'm writing some data to the buffer, between 1 and MAX_SIZE bytes*. You can think about the second foo example as a class method, and the static pointer as a class member allocated in constructor. I've just probably oversimplified things, but didn't want to introduce more complexity than needed and focus on the stack concerns.
newis using "the heap"? – Lightness Races in Orbit Jul 17 '11 at 14:40malloc). It's a common misconception that "dynamic allocation" equates to "the heap". – Lightness Races in Orbit Jul 17 '11 at 14:58