MarkW

257
Reputation
86 views

Registered User

Name MarkW
Member for 1 year
Seen Nov 26 at 14:24
Website
Location
Age
Oct
22
comment Macro to replace C++ operator new
I like this solution for debug builds. It isn't thread safe, but a bit of thread local storage fixes that. I think that would make it a bit costly for a release build ... but there are never any leaks in release builds anyway <grin>
Sep
30
awarded  Yearling
Aug
21
awarded  Critic
Jul
21
answered Is relational comparison between int and float directly possible in C?
Jul
21
accepted What’s the best method for getting the local computer name in Delphi
Jul
20
answered What’s the best method for getting the local computer name in Delphi
Jul
15
comment What is the Cost of an L1 Cache Miss?
Thanks for that link. It looks like a useful document. If I understand it correctly, it points out that read miss (in the level 1 cache) would maybe incur 10 extra cycles and a write miss about 18 cycles with current architectures. So the ballpark numbers that are coming up in this whole thread seem to fit pretty well.
Jul
15
comment What is the Cost of an L1 Cache Miss?
Very nice. Thanks for the pointer to it. I've been aware of Valgrind but haven't used it before (most of my development is on Win32). I just now ran it on a Linux box and it reported a 41% miss rate for the "random" portion of the test. And the "in order" portion of the test had a negligible miss rate. Neither portion had any L2 miss rate to speak of.
Jul
14
comment What is the Cost of an L1 Cache Miss?
I agree - good point. If the cache is 32K and it is largely dedicated to holding the array, then maybe 40% of the references would be hits. So a 60% miss rate would take the cost up to about 17 cycles per miss (again assuming my math is correct).
Jul
14
comment What is the Cost of an L1 Cache Miss?
Sorry - I kind of buried the question in too much text. But yes, the question is if the numbers make sense. Are 10 cycles for an L1 cache miss about right?
Jul
14
asked What is the Cost of an L1 Cache Miss?
Jul
13
awarded  Scholar
Jul
13
accepted Possible to force Delphi threadvar Memory to be Freed?
Jul
8
awarded  Teacher
Jul
8
answered When is it appropriate to use UDP instead of TCP?
Jul
6
awarded  Supporter
Jul
3
answered Possible to force Delphi threadvar Memory to be Freed?
Jul
2
awarded  Editor
Jul
2
revised Possible to force Delphi threadvar Memory to be Freed?
Added code sample
Jul
2
comment Possible to force Delphi threadvar Memory to be Freed?
The test case is using a 4 byte integer (which does not need to be freed); it is not using any kind of dynamic variable. The memory that is being leaked is the memory that Delphi allocates under the covers for storing threadvar variables.
Jul
1
comment Possible to force Delphi threadvar Memory to be Freed?
Ah yes - I had not realized it was just one TLS slot per thread. Thanks for pointing that out. I believe, though, this solution would require making that call on each thread. And as you correctly stated, it is not possible/desirable to interrupt the other threads from whatever they are doing to make a call to TlsGetValue to get the pointer and free it. Incidentally, I believe the TlsFree call does occur on the DLL_PROCESS_DETACH call. But knowing that it is a single TLS slot per thread is useful. I will ponder that. Mark
Jul
1
answered Sequence combinations
Jul
1
awarded  Student
Jul
1
asked Possible to force Delphi threadvar Memory to be Freed?