-
Content Count
3710 -
Joined
-
Last visited
-
Days Won
185
Everything posted by David Heffernan
-
Is a "bare-minimum" EurekaLog possible?
David Heffernan replied to aehimself's topic in Delphi Third-Party
And what about Mathias' response in that thread? -
Is a "bare-minimum" EurekaLog possible?
David Heffernan replied to aehimself's topic in Delphi Third-Party
madExcept does support nested exceptions. -
Has anyone tried running Delphi on Windows ARM?
David Heffernan replied to Chris Pim's topic in Delphi IDE and APIs
That does sound funny. Is it true though? -
SetLength TBytes Memory Leak
David Heffernan replied to Hafedh TRIMECHE's topic in RTL and Delphi Object Pascal
Are you saying that it was in the end nothing to do with your SetLength calls and was just a defect somewhere else in your code that corrupted the heap? -
SetLength TBytes Memory Leak
David Heffernan replied to Hafedh TRIMECHE's topic in RTL and Delphi Object Pascal
That doesn't change anything. That is just wasteful. We know that dynamic arrays work correctly. If you really want to resolve the problem you need to clearly identify it first. -
SetLength TBytes Memory Leak
David Heffernan replied to Hafedh TRIMECHE's topic in RTL and Delphi Object Pascal
The code that we can see can't leak. There is likely a bug in some other code, probably your code. If you show a minimal repro we'll find it easily. -
Using all your memory doesn't necessarily mean that your computer would be slower with less. It usually just means that your computer is making the disk cache as large as possible.
-
If running Delphi is the biggest concern that you have, as you stated above, then it looks like you are significantly over-speccing this machine.
-
I don't see l any good reason why the IDE stability would have anything to do with hardware. It's just bug ridden. Those AMD processors are pretty tasty. Gamers love them. But they are way over powered for Delphi. Most important thing you can do for Delphi IDE perf is have a good SSD.
-
Build managed dll in Delphi
David Heffernan replied to BastiFantasti's topic in RTL and Delphi Object Pascal
I meant the startup cost for the developer to learn how to create and maintain and deploy com servers. -
Build managed dll in Delphi
David Heffernan replied to BastiFantasti's topic in RTL and Delphi Object Pascal
Whether you opt for pinvoke or a COM server depends very much on what the interface surface area looks like. I don't think anybody can give you a valid recommendation without knowledge of that. Broadly speaking, for more larger and more complex interfaces, then a COM server may be preferable. For simpler interfaces, then p/invoke may be preferable. It is more effort to setup a COM server (especially if you have to learn COM), but having done so the coding on both sides will likely be simpler. For larger and more complex interfaces the startup cost of a COM server will yield time savings to offset that. For an interface that can be represented by a small number of functions, then you will never recover that startup cost, hence why p/invoke would win. To my mind at least those are the main factors to consider in your decision. -
MAP2PDB - Profiling with VTune
David Heffernan replied to Anders Melander's topic in Delphi Third-Party
What other tools use pdb? I think pdb files can be used to get stack traces in Process Explorer and Process Hacker 2. Obviously there is Visual Studio and there must be many others. I wonder if anybody has tried using the pdb files generated by map2pdb with other tools such as these. -
I will be less active for a few weeks
David Heffernan replied to Lars Fosdal's topic in Community Management
Hope you and your family recover fully @Lars Fosdal. -
List of usable RegEx for source code
David Heffernan replied to Mike Torrettinni's topic in Tips / Blogs / Tutorials / Videos
The fact that the term "scalable memory manager" exists shows that heap allocation is a particular issue for multi-threaded programs. That's the same point that I have been making. -
Unicode string - how element iterating?
David Heffernan replied to vfbb's topic in RTL and Delphi Object Pascal
Selecting text in an edit control is for sure a use case where this is needed. -
MAP2PDB - Profiling with VTune
David Heffernan replied to Anders Melander's topic in Delphi Third-Party
Amazing work. Well done!! Thank you. Although it can't be compiled in older versions, presumably it works with programs built with older versions of Delphi? And do you have plans to support 64 bit? -
Unicode string - how element iterating?
David Heffernan replied to vfbb's topic in RTL and Delphi Object Pascal
I don't think this is true. TEdit is the Win32 EDIT control. What are you doing with strings that need to know what you are asking about? What's your usage scenario? -
Unicode string - how element iterating?
David Heffernan replied to vfbb's topic in RTL and Delphi Object Pascal
Why would you need to know this, unless you are rendering the text -
List of usable RegEx for source code
David Heffernan replied to Mike Torrettinni's topic in Tips / Blogs / Tutorials / Videos
Isn't that going to claim a global lock 31 times? -
Getting Label Name from Label.Caption
David Heffernan replied to Henry Olive's topic in RTL and Delphi Object Pascal
Put the labels in an array, and then access them by index, or Use a single label, and include linebreaks in the caption, or Create the labels dynamically, or Probably some other solutions that I have not thought of. -
List of usable RegEx for source code
David Heffernan replied to Mike Torrettinni's topic in Tips / Blogs / Tutorials / Videos
It's always a good idea to minimise contention on process wide locks, which is why it is best not to call SetLength over and over when that can readily be avoided. -
Returning a dynamic array from DLL
David Heffernan replied to Tim Chilvers's topic in RTL and Delphi Object Pascal
Thus can't work. You need both sides of the interface to use the same memory allocator and the same dynamic array implementation. Which ties you to specific delphi versions. That forces your plugins writers to use Delphi. Amongst other requirements. -
List of usable RegEx for source code
David Heffernan replied to Mike Torrettinni's topic in Tips / Blogs / Tutorials / Videos
Really? Contention on a lock has the same impact irrespective of how many items are in the collection. -
List of usable RegEx for source code
David Heffernan replied to Mike Torrettinni's topic in Tips / Blogs / Tutorials / Videos
Well, won't they suffer when you make lots of reallocations. That's always been my experience. -
List of usable RegEx for source code
David Heffernan replied to Mike Torrettinni's topic in Tips / Blogs / Tutorials / Videos
What about multithreaded programs?