I have an app with a number of worker threads, one for each core. On a modern 8 core machine, I have 8 of these threads. My app loads a lot of plugins, which also have their own worker threads. Because the app uses huge blocks of memory (photos, eg. 200 MB) I have memory fragmentation problem. The problem is that every thread allocates the {$MAXSTACKSIZE ...} of address space. It's not using the physical memory but the adress space. I reduced the MAXSTACKSIZE from 1MB to 128KB and it seems to work, but I don't now if I'm near to the limit. Is there any possibility to measure how much stack is really used?

link|improve this question

75% accept rate
How many threads in total? – David Heffernan May 27 '11 at 9:05
You can set the stack size separately for each thread, although Delphi TThread implementation does not surface it (see QC #77203), instead of changing the global setting. – user160694 May 27 '11 at 10:20
here's a link to article QC77203: qc.embarcadero.com/wc/qcmain.aspx?d=77203 – Johan May 27 '11 at 12:43
feedback

5 Answers

up vote 7 down vote accepted

Use this to compute the amount of memory committed for the current thread's stack:

function CommittedStackSize: Cardinal;
asm
  mov eax,[fs:$4] // base of the stack, from the Thread Environment Block (TEB)
  mov edx,[fs:$8] // address of lowest committed stack page
                  // this gets lower as you use more stack
  sub eax,edx
end;

Another idea I don't have.

link|improve this answer
@opc0de: Why did you use pastebin instead of embedding your code on so? – Jens Mühlenhoff May 27 '11 at 9:35
old habits die hard ;) – opc0de May 27 '11 at 9:49
Works nice! "var a: array[0..1024*100] of Int64;" gives stack of 800kb :-) – André May 27 '11 at 10:05
3  
Opc0de, could you please put some comments in that code to explain what it's doing? – Rob Kennedy May 27 '11 at 12:56
1  
@user, The idea of having to click out of SO to see code is disturbing! Esp for a 7 line piece of code. Its a classic case of putting will on might (You might want to have line numbers and syntax highlighting, so I will put it on external site X), even though I never care about these things. – Johan May 27 '11 at 16:32
show 15 more comments
feedback

I remember i FillChar'd all available stack space with zeroes upon init years ago, and counted the contiguous zeroes upon deinit, starting from the end. This yielded a good 'high water mark', provided you send your app through its paces for probe runs.

I'll dig out the code when i am back nonmobile.

link|improve this answer
feedback

Even if all 8 threads were to come close to using their 1MB of stack, that's only 8MB of virtual memory. IIRC, the default initial stack size for threads is 64K, increasing upon page-faults unless the process thread-stack limit is reached, at which point I assume your process will be stopped with a 'Stack overflow' messageBox :((

I fear that reducing the process stack limit $MAXSTACKSIZE will not alleviate your fragmentation/paging issue much, if anything. You need more RAM so that the resident page set of your mega-photo-app is bigger & so thrashing reduced.

How many threads are there, overall, on average, in your process? Task manager can show this.

Rgds, Martin

link|improve this answer
feedback

Whilst I am sure that you can reduce the thread stacksize in your app, I don't think it will address the root cause of the problem. You are using an 8 core machine now, but what happens on a 16 core, or a 32 core etc.

With 32 bit Delphi you have a maximum address space of 4GB and so this does limit you to some degree. You may well need to use smaller stacks for some or all of your threads, but you will still face problems on a big enough machine.

If you help your app scale better to larger machines you may need to take one or other of the following steps:

  1. Avoid creating significantly more threads than cores. Use a thread pool architecture that is available to your plug-ins. Without the benefit of the .net environment to make this easy you will be best coding against the Windows thread pool API. That said, there must be a good Delphi wrapper available.
  2. Deal with the memory allocation patterns. If your threads are allocating contiguous blocks in the region of 200MB then this is going to cause undue stress on your allocator. I have found that it is often best to allocate such large amounts of memory in smaller, fixed size blocks. This approach works around the fragmentation problems you are encountering.
link|improve this answer
A Threadpool is definitely the way to go for future development. As for splitting images into blocks: This would make any image manipulation code (based on Gr32) not work or much more complicated (imaging rendering a text over a tile based image). – Stebi May 30 '11 at 8:50
feedback

Reducing $MAXSTACKSIZE won't work because Windows will always align thread stack to 1Mb (?).

One (possible?) way to prevent fragmentation is to reserve (not alloc!) virtual memory (with VirtualAlloc) before creating threads. And release it after the threads are running. This way Windows cannot use the reserved space for the threads so you will have some continuous memory.

Or you could make your own memory manager for large photo's: reserve a lot virtual memory and alloc memory from this pool by hand. (you need to maintain a list of used and used memory yourself).

At least, that's a theory, don't know if it really works...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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