vote up 1 vote down star

I have understanding how heap and garbage collector works: garbage collection happens in generations, memory allocation happens sequentially, during garbage collection free/unused space compacted by shifting data and forming continues block, etc.

Is there any headers for allocated memory chunks are present and how big are they (I heard it’s 8-16 bytes for .NET CLR) and if byte, word or quad-word alignment present? I’m interested in any information for JIT (Java) and CLR (.NET Framework or Mono) implementation for x86 and x64 processor architectures.

flag

2 Answers

vote up 1 vote down check

I believe the header size is two words - one for the type reference and one for the sync block and other flags. The padding is (I believe) just enough to round the total size up to a whole number of words.

For instance, a reference type with just an "int" in takes 12 bytes on x86, as demonstrated here:

using System;

public class Foo
{
    int x;

    public Foo(int x)
    {
        this.x = x;
    }
}

public class Test
{
    static void Main(string[] args)
    {
        int length = int.Parse(args[0]);

        Foo x = new Foo(0);
        Foo[] array = new Foo[length];
        // Make sure that JITting the string constructor doesn't
        // change things
        long start = GC.GetTotalMemory(true);
        for (int i=0; i < length; i++)
        {
            array[i] = new Foo(i);
        }
        long end = GC.GetTotalMemory(true);

        GC.KeepAlive(array);
        GC.KeepAlive(x);

        decimal totalDecimal = end-start;
        Console.WriteLine(totalDecimal / length);
    }
}

One interesting point - for some reason an instance of System.Object takes 12 bytes (on x86) instead of the 8 that I would otherwise have predicted. It's as if the minimum size is 12 bytes, but you get the first four bytes of real data free :)

I don't know why the size reported isn't exactly an integer, btw - I suspect it's something to do with a little bit of extra memory required for per page in the managed heap, or something like that. Sometimes the result is a little bit over 12, sometimes a little bit under 12 - that seems to depend on the length given. (The previous version of this answer had a bug in, where it would parse the first command line arg but then ignore it. I've fixed that.) Anyway, I don't believe this slight inaccuracy has anything to do with the size of an individual object in memory.

link|flag
That is why the question was asked :-) – LicenseQ Feb 6 at 17:15
"That" being what, exactly? The last bit? That's not related to how big an actual object is - just some other objects being created or freed in the background. – Jon Skeet Feb 6 at 17:18
"presumably something is going on in the background, but I don't know what..." – LicenseQ Feb 6 at 17:19
@LicenseQ: As I say, that's not related to the actual size IMO. Will update answer to explain. – Jon Skeet Feb 6 at 17:33
CLR via C#, by Jeff Richter. I'll see if there's an online article with similar info. – Jon Skeet Feb 6 at 17:37
show 5 more comments
vote up -1 vote down

I don't know about Java but for the CLR there is a 1 native word overhead per reference type allocated. On 32 bit systems it will be 4 bytes and 64 bit systems it will be 8 bytes.

link|flag
its allocated memory. I'm looking how physical heap memory looks like. Usually it's [header][object data][padding][header][object data][padding].... I'm looking for sizes of header and padding. – LicenseQ Feb 6 at 16:51
??? I just told you the size of the header and you comment asking for the size of the header – JaredPar Feb 6 at 16:54
Why would you have reference in the header? – LicenseQ Feb 6 at 16:59
Just plain wrong: there is a 2 native word overhead per reference type, not counting an additional word for each reference to the object. – Qwertie Oct 19 at 16:57

Your Answer

Get an OpenID
or

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