Re: [fpc-pascal] Basics of profiling -- some comments on fpprofiler bugs

2010-09-18 Thread Darius Blaszyk
On Sat, 2010-09-18 at 15:12 +0300, Žilvinas Ledas wrote: > Sorry, forgot to ask - to what category should I submit bugs for > fpprofiler? I can't find anything mentioning fpprofiler in > http://bugs.freepascal.org ... > Can't tell. Can anyone from FPC core advise on this? Darius __

Re: [fpc-pascal] Basics of profiling -- some comments on fpprofiler bugs

2010-09-18 Thread Žilvinas Ledas
Sorry, forgot to ask - to what category should I submit bugs for fpprofiler? I can't find anything mentioning fpprofiler in http://bugs.freepascal.org ... Regards Žilvinas Ledas ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org http://list

Re: [fpc-pascal] Basics of profiling -- some comments on fpprofiler bugs

2010-09-16 Thread Darius Blaszyk
On Mon, 2010-09-06 at 16:58 +0300, Žilvinas Ledas wrote: > On 2010-09-06 15:48, Darius Blaszyk wrote: > > On Mon, 2010-09-06 at 13:01 +0200, Graeme Geldenhuys wrote: > >> Recently I took a look at Darius's old project 'fpprofiler. Links > >> below. It was over 2 years since anybody worked on it, a

Re: [fpc-pascal] Basics of profiling -- some comments on fpprofiler bugs

2010-09-14 Thread Darius Blaszyk
On Mon, 2010-09-06 at 16:58 +0300, Žilvinas Ledas wrote: > 3) in "procedure TPasTokenList.SaveToFile(const AFileName: string);" > no > need for writeLN's - writes are enough; Fixed in rev2492 ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.org

Re: [fpc-pascal] Basics of profiling -- some comments on fpprofiler bugs

2010-09-14 Thread Darius Blaszyk
On Mon, 2010-09-06 at 16:58 +0300, Žilvinas Ledas wrote: > On 2010-09-06 15:48, Darius Blaszyk wrote: > > On Mon, 2010-09-06 at 13:01 +0200, Graeme Geldenhuys wrote: > >> Recently I took a look at Darius's old project 'fpprofiler. Links > >> below. It was over 2 years since anybody worked on it, a

Re: [fpc-pascal] Basics of profiling

2010-09-09 Thread Felipe Monteiro de Carvalho
Thanks a lot all for the tips =) On Mon, Sep 6, 2010 at 1:01 PM, Graeme Geldenhuys wrote: > fpprofiler was quick and easy to use, and it have me results that was > But for quick and easy profiling, I found fpprofiler to suite my needs > just well. Just remember to have your code in some SCM syste

Re: [fpc-pascal] Basics of profiling -- some comments on fpprofiler bugs

2010-09-06 Thread leledumbo
Talking about profiler, I see that gprof support under Windows is still limited to cygwin's gprof (just take a look at those linklibs). I think I'll try adding support for MinGW's gprof just like I did with MinGW's GDB for FPIDE a couple of months ago (it's broken again with GDB 7.1). -- View thi

Re: [fpc-pascal] Basics of profiling -- some comments on fpprofiler bugs

2010-09-06 Thread Žilvinas Ledas
On 2010-09-06 15:48, Darius Blaszyk wrote: On Mon, 2010-09-06 at 13:01 +0200, Graeme Geldenhuys wrote: Recently I took a look at Darius's old project 'fpprofiler. Links below. It was over 2 years since anybody worked on it, and riddled with bugs. I fixed all memory leaks, added some improvemen

Re: [fpc-pascal] Basics of profiling

2010-09-06 Thread Darius Blaszyk
On Mon, 2010-09-06 at 13:01 +0200, Graeme Geldenhuys wrote: > Recently I took a look at Darius's old project 'fpprofiler. Links > below. It was over 2 years since anybody worked on it, and riddled > with bugs. I fixed all memory leaks, added some improvements, and used > the new fcl-passrc code in

Re: [fpc-pascal] Basics of profiling

2010-09-06 Thread Graeme Geldenhuys
On 6 September 2010 13:10, Jonas Maebe wrote: > > http://wiki.freepascal.org/Profiling Thanks for the link. It seems I need to add information about 'fpprofiler' to that page too. -- Regards,   - Graeme - ___ fpGUI - a cross-platform Free Pascal GU

Re: [fpc-pascal] Basics of profiling

2010-09-06 Thread Jonas Maebe
On 06 Sep 2010, at 10:48, Felipe Monteiro de Carvalho wrote: Does anyone have a link or some info about basic info for doing profiling in fpc apps? http://wiki.freepascal.org/Profiling Jonas ___ fpc-pascal maillist - fpc-pascal@lists.freepascal.

Re: [fpc-pascal] Basics of profiling

2010-09-06 Thread Graeme Geldenhuys
On 6 September 2010 10:48, Felipe Monteiro de Carvalho > > Does anyone have a link or some info about basic info for doing > profiling in fpc apps? You can try Valgrind. I don't know if it is available under Windows. The other problem is... good luck decyphering the results. Valgrind, Callgrind, M

Re: [fpc-pascal] Basics of profiling

2010-09-06 Thread Sven Barth
Am 06.09.2010 10:48, schrieb Felipe Monteiro de Carvalho: Hello, Does anyone have a link or some info about basic info for doing profiling in fpc apps? Basically I would like to know how many miliseconds does my app spend in a couple of drawing routines to calculate the effect of speed optimiza