vote up 2 vote down star

I have a C++ program that benchmarks various algorithms on input arrays of different length. It looks more or less like this:

# (1)
for k in range(4..20):
  # (2)
  input = generate 2**k random points
  for variant in variants:
    benchmark the following call
    run variant on input array
  # (3)

Is it possible to reset the whole heap management at (2) to the state it had at (1)? All memory allocated on the heap that was allocated during the program is guaranteed to be freed at (3).

I am using g++ 4.3 on Linux.

Edit: I understand that there is no real garbage collection in C/C++. I want to force the memory allocation to join adjacent empty chunks of memory it has in its free list at (2).

flag
C/C++ doesn't even guarantee that a free list exists. The language doesn't care how memory management works. That is all up to the OS. So the only way to ensure a similar state at #2 is, as jpalecek and RnR suggested, to start a new process. – jalf Apr 9 at 12:25
I had hoped that the gcc memory runtime system has a function that I could somehow call. This does not have to be portable. – Manuel Apr 9 at 12:30
Manuel - you've got two solutions at hand - jpalecek's which may be easier/faster to implement and mine which is portable and gives 100% guarantee as to the results (with the fork the succesive processes inherit a different environment - one in which n-1 other processes have been forked), use them:) – RnR Apr 9 at 14:49
I agree, forking is the simplest way to solve this problem. – Manuel Apr 9 at 15:17

6 Answers

vote up 5 vote down check

If you want the test runs to start in the same heap states, you can run them in their own processes created by fork().

link|flag
I came up with just issue about this now - using fork the next process will inherit a different state then the previous one - in detail an environment in which n-1 forks have already been performed - my suggestion was first and has the guarantee of exactly the same conditions for all processes ;) – RnR Apr 9 at 14:51
If you implement it properly, the only difference between the state of the forked processes would be different values in th array of childs' PIDs. No difference in the heap. Unlike the shell script approach, it has the possibility to pass arbitrarily complex structures to the children without fuss. – jpalecek Apr 9 at 21:41
How do you know what the call to fork will do to the heap? Don't you think memory needs to be allocated/released when new processes are executed? For example to copy the file descriptors etc? It is easier - like I've addmited but it's much less "guaranteed" to be identical - at least imho. – RnR Apr 10 at 7:05
vote up 3 vote down

I think there's a simple solution to your problem - you could move the outside loop outside of your application and into a shell script or another application and pass the (k) (and any other) parameters through the command line to the benchmarked app - this way you'll be sure all executions had similar starting conditions.

link|flag
Heh, +1 It's the only sane way to solve the question. – jalf Apr 9 at 12:27
vote up 1 vote down

There is no way of doing this using Standard C++ short of implementing your own versions of new & delete with their own heap management. An alternative would not be to use arrays but use std::vectors instead - you can then use a custom allocator to do the heap management.

link|flag
Since I am using a library for some variants that uses its own containers, I cannot do this. – Manuel Apr 9 at 12:06
vote up 1 vote down

What do you mean? There is no garbage collection in C, and certainly no compaction.

To "reset the state of the heap", you have to call free() for every malloc() call. And as I understand your code, you do that already.

Compaction is pretty much impossible. Unlike higher-level languages like Java or C#, you can not change the address of an object, because any pointers to it would be invalidated.

link|flag
I understand the issue with the pointers. I want to force the memory allocation system to join adjacent empty memory chunks. – Manuel Apr 9 at 12:09
There's more then one way to skin a cat - please see my answer :) (I see jpalecek has a similar idea) – RnR Apr 9 at 12:13
@RnR: heh, true. @Manuel, what you're asking makes no sense. The OS will do whatever it likes, all of the time. On a sane OS it will merge together adjacent chunks, as soon as they become available, and you don't need to do anything. But if it doesn't, there is nothing you can do about it – jalf Apr 9 at 12:22
Your question is outside the scope of the C (and C++) language. C just specifies that "malloc attempts to allocate memory", and "free" frees it. What happens to freed memory, or where allocated memory is taken from is unspecified. Only the OS knows. Which is why RnR's answer works. – jalf Apr 9 at 12:23
As far as I know, the operating system does not know about the chunks at all. – Manuel Apr 9 at 12:32
show 5 more comments
vote up 0 vote down

There's no automatic way, you have to manually delete whatever is on the heap to get back to the state of (1).

link|flag
As far as I understand it, malloc() will have already split off some memory into chunks I used in my program. These chunks should be in a free list but if I have two chunks, each with a size of 1M, they have to be joined if I want to reuse that part of memory when I need 2M. – Manuel Apr 9 at 12:08
Maybe you want to use realloc? You can't join 2 different blocks of memory because they need to be in sequence in memory. – Brian R. Bondy Apr 9 at 12:12
@Manuel: No, malloc will not split off memory into chunk. And they will not be put in a free list afterwards, and they will not have a size of 1M. None of that is specified by the language. It's up to the OS to do all this, and it has nothing to do with C/C++ – jalf Apr 9 at 12:27
vote up 0 vote down

Their are a few pieces of garbage collection code out their. Look at perl/python/lua/ruby/mono/parrot/boehm/pike/slate/self/io etc etc. Also look at alloca() and dynamic arrays. Also consider using structs to implement your own destructor or using gcc attributes to call free when a function leaves scope.

link|flag

Your Answer

Get an OpenID
or

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