views:

82

answers:

4

Is there a .NET API for getting detailed info on VM use? I'm specifically interested in determining how fragmented my address space is.

Thanks!

+1  A: 

Short answer: no. You need to tap into the Win32 API for that. I really don't know what API call you would use though...

A quick search on http://www.pinvoke.net led me to this:

[DllImport("coredll.dll", SetLastError=true)]
static extern void GlobalMemoryStatus(ref MEMORYSTATUS lpBuffer);

But the MEMORYSTATUS struct doesn't seem to have all the info you need (just physical & virtual memory usage and other info).

You should dig around MSDN to find the necessary method.

statichippo
A: 

Such a call doesn't make sense in the managed world, since different CLR hosts may handle things different (like the normal application host or SQL Server). And don't forget that the GC can move things around, so that the fragmentation isn't really a problem is the GC compacts the heap.

However, this brings me to the next point, you should be able to get this information by hosting the CLR yourself. You may want to look at this blog post about this topic.

Lucero
+1  A: 

The kind of Windows API functions that can give you some insight in this are VirtualQueryEx() to enumerate the virtual memory sections and discover unused space, GetProcessHeaps() to find what heaps are created inside the process and HeapWalk() to discover how blocks in each heap are used.

This is not going to be easy, particularly HeapWalk() is a troublesome function in a running program. You ought to take a look at the SysInternals' VMMap utility, it provides excellent virtual memory diagnostics.

The downfall with this is that it doesn't really help you solve a memory fragmentation problem. There is nothing you can do to affect the way the Windows memory manager sub-allocates the virtual memory space. Short from not allocating memory. If you are struggling now with OOM, you really ought to consider re-architecting your app. Or switching to a 64-bit operating system, the two hundred dollar solution.

Hans Passant
The VMMap app is awesome. Thanks!!
Christopher
A: 

You really have to get down into the Win32/Win64 API to get this information at the page level. Any more detailed and you need to know the internal workings of whichever heap you are looking at, whether its a C heap, Win32 heap, a CLR small object heap or a CLR large object heap.

However you can use Virtual Memory Validator (which is commercial, but free) to visualise the virtual memory space, and also examine the memory space page by page and paragraph by paragraph. Look at the visuals first as that makes it easy to see general problems and trends. Then look at the detailed info on pages and paragraphs when you've decided what memory areas are problematic.

Here is a blog article describing what pages and paragraphs are.

Stephen Kellett