Tagged Questions
The heap-fragmentation tag has no wiki summary.
14
votes
3answers
2k views
Memory Fragmentation Profiler
Are there any good memory fragmentation profilers? (linux gcc version would be nice). Valgrind cannot analyze this because it uses custom malloc/free functions.
Thanks,
Andrew
9
votes
1answer
625 views
How to monitor or visualize memory fragmentation of a delphi application
How can I monitor or visualize memory fragmentation of a delphi application?
8
votes
2answers
287 views
managed heap fragmentation
I am trying to understand how heap fragmenation works. What does the following output tell me?
Is this heap overly fragmented?
I have 243010 "free objects" with a total of 53304764 bytes. Are those ...
8
votes
5answers
1k views
7
votes
5answers
1k views
Defragmenting C++ Heap Allocator & STL
I'm looking to write a self defragmenting memory manager whereby a simple incrementing heap allocator is used in combination with a simple compacting defragmenter.
The rough scheme would be to ...
6
votes
2answers
2k views
Is my heap fragmented
0:000> !dumpheap -stat
total 1755874 objects
Statistics:
MT Count TotalSize Class Name
7b9b0c64 1 12 System.Windows.Forms.Layout.TableLayout+ColumnSpanComparer
....
7933303c ...
5
votes
1answer
728 views
Basic heap usage statistics in GCC on 64-bit platform
I need to answer a basic question from inside my C program compiled by GCC for Linux: how much of process heap is currently in use (allocated by malloc) and how much resides if free heap blocks. GNU ...
3
votes
2answers
78 views
Best way to represent formatted text in memory? C++
I'm writing a basic text editor, well it's really an edit control box where I want to write code, numerical values and expressions for my main program.
The way I'm currently doing it is that I feed ...
3
votes
4answers
954 views
How do I workaround heap fragmentation in a C++ server program?
Heap fragmentation can cause a server application that is expected to run continuously for many months to suddenly start malfunctioning thinking that it's out of memory.
Let's assume that I've done ...
3
votes
2answers
373 views
Flash/ActionScript Memory Fragmentation
In addition to mark-and-sweep, the garbage collectors for .Net and Java both also run a compaction phase to cut down on memory fragmentation. I am not able to find any documentation on a ...
3
votes
2answers
1k views
Heap fragmentation in 64 bit land
In the past, when I've worked on long-running C++ daemons I've had to deal with heap fragmentation issues. Tricks like keeping a pool of my large allocations were necessary to keep from running out ...
2
votes
1answer
702 views
Where is my iPad runtime memory going?
I'm causing the device (iPad) to run out of memory apparently, so it is jettisoning my app. I'm trying to understand what is going on as Instruments is telling me that I'm using about 80Mb, and there ...
2
votes
4answers
497 views
When to address managed heap fragmentation
I was reading a blog entry by Josh Smith where he used a cache mechanism in order to "reduce managed heap fragmentation". His caching reduces the number of short-lived objects being created at the ...
1
vote
1answer
62 views
garbage collection for specific circumstances
I'm working with just the basics of garbage collection and the different algorithms of each (plus pro's con's etc..). I'm trying to determine that best garbage collection algorithm to use for ...
1
vote
1answer
333 views
System.Security.Policy.Evidence, Web Services and Blowing Out the LoH
A new application that has been developed has a heavy use of web services. We started hitting out of memory exceptions on a regular basis (as usage has increased). Upon reviewing the memory dumps I ...
0
votes
0answers
108 views
System.WeakReference Fragmenting Virtual Address Space in c#
I have a process which seems to be creating very large numbers of WeakReferences. I believe this is causing a fragmentation of the Virtual Memory Address Space for the process, as I can see in CDB ...
-1
votes
2answers
906 views
Fighting fragmentation in custom memory manager
I've written a c/c++ memory manager for heap allocations (overloaded new/delete and malloc/realloc/free, based on Doug Lea's malloc but designed to be wait free) and seem to be having some trouble ...