Suppose you have a DLL compiled with Intel Fortran. Upon load it consumes a large amount of memory. You want to determine what all the statics / common blocks / whatever are that are consuming the memory upon load.
Tools like AQTime can do an allocation profiling, but that only assesses dynamic memory allocation.
On Linux there are some tools such as this one: http://linux.die.net/man/1/nm
Is there perhaps some sort of tool like this for Windows Intel Fortran? Something that looks at a DLL or OBJ file and tells you what all the statics are and the size of them? You can probably see it in the MAP file, though that can be a little cryptic.
There likely is some sort of tool, I just do not know of it...
Thanks.