For what purpose I should use std::get_temporary_buffer? Standard says the following:

Obtains a pointer to storage sufficient to store up to n adjacent T objects.

I thought that the buffer will be allocated on the stack, but that is not true. According to the C++ Standard this buffer is actually not temporary. What advantages does this function have over the global function ::operator new, which doesn't construct the objects either. Am I right that the following statements are equivalent?

int* x;
x = std::get_temporary_buffer<int>( 10 ).first;
x = static_cast<int*>( ::operator new( 10*sizeof(int) ) );

Does this function only exist for syntax sugar? Why is there temporary in its name?


One use case was suggested in the Dr. Dobb's Journal, July 01, 1996 for implementing algorithms:

If no buffer can be allocated, or if it is smaller than requested, the algorithm still works correctly, It merely slows down.

link|improve this question

feedback

5 Answers

up vote 9 down vote accepted

Stroustrup says in "The C++ Programming Language" (ยง19.4.4, SE):

The idea is that a system may keep a number of fixed-sized buffers ready for fast allocation so that requesting space for n objects may yield space for more than n. It may also yield less, however, so one way of using get_temporary_buffer() is to optimistically ask for a lot and then use what happens to be available.
[...] Because get_temporary_buffer() is low-level and likely to be optimized for managing temporary buffers, it should not be used as an alternative to new or allocator::allocate() for obtaining longer-term storage.

He also starts the introduction to the two functions with:

Algorithms often require temporary space to perform acceptably.

... but doesn't seem to provide a definition of temporary or longer-term anywhere.

link|improve this answer
1  
Looks like VC++'s implementation of this is simply a loop calling operator new with successively smaller arguments until the allocation succeeds. No special optimizations there. – jalf Jul 16 '10 at 12:43
1  
@jalf, the same code in g++ 4.2.4. – Kirill V. Lyadvinsky Jul 16 '10 at 13:48
Same with g++ 4.5 - seems it was well-intended but ignored by the vendors. – Georg Fritzsche Jul 19 '10 at 23:11
feedback

The standard says it allocates storage for up to n elements. In other words, your example might return a buffer big enough for 5 objects only.

It does seem pretty difficult to imagine a good use case for this though. Perhaps if you're working on a very memory-constrained platform, it's a convenient way to get "as much memory as possible".

But on such a constrained platform, I'd imagine you'd bypass the memory allocator as much as possible, and use a memory pool or something you have full control over.

link|improve this answer
feedback
ptrdiff_t            request = 12
pair<int*,ptrdiff_t> p       = get_temporary_buffer<int>(request);
int*                 base    = p.first;
ptrdiff_t            respond = p.sencond;
assert( is_valid( base, base + respond ) );

respond may be less than request.

size_t require = 12;
int*   base    = static_cast<int*>( ::operator new( require*sizeof(int) ) );
assert( is_valid( base, base + require ) );

the actual size of base must greater or equal to require.

link|improve this answer
feedback

Perhaps (just a guess) it has something to do with memory fragmentation. If you heavily keep allocating and deallocating temporal memory, but each time you do it you allocate some long-term intended memory after allocating the temp but before deallocating it, you may end up with a fragmented heap (I guess).

So the get_temporary_buffer could be intended to be a bigger-than-you-would-need chunk of memory that is allocated once (perhaps there are many chunks ready for accepting multiple requests), and each time you need memory you just get one of the chunks. So the memory doesn't get fragmented.

link|improve this answer
feedback

If you are not affraid of using real standard library (C++ without the ++) then why not use alloca()?

At least, what alloca() does is pretty well-known and is not going to change because a commettee decided that the previous C++ specifications were inappropriate... (yes, it happened several times for the ++).

link|improve this answer
4  
Standard Library was described in the C++ Standard ISO/IEC 14882:2003 as all other parts. It doesn't contain alloca function. And my question wasn't about 'how to allocate memory on the stack'. – Kirill V. Lyadvinsky Jul 16 '10 at 12:27
3  
which previous changes in the C++ spec are you referring to? And what guarantees can you offer that alloca won't be changed in a future revision of C? – jalf Jul 16 '10 at 12:40
feedback

Your Answer

 
or
required, but never shown

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