FPProfiler

From Free Pascal wiki
Revision as of 12:01, 14 September 2010 by Mischi (talk | contribs) (typos and wording)
Jump to navigationJump to search

Introduction

The Free Pascal Profiler is an effort to create an FPC native profiler, deployable on all platforms and architectures the Free Pascal compiler itself supports. It was initially developed by Darius Blaszyk.

Free Pascal Profiler consists of two tools (fpp and fppview) and some units containing the profiling code that needs to be linked in.

FPP

To compile your project, you pass the same parameters to FPP as you would to FPC. FPP then scans your source code and inserts profiling code in each begin..end block. It also ammends the uses clause to link in the fpprof unit. Once done, it compiles your project, which now includes the profiling code. After that, it restores your units to there original state.

FPPView

When you run your program that contains the profiling code, it generates an xml file containing all the profiling information. FPPView reads this xml file and generates reports from it. Call counts, timing and call graphs are supported at the moment.

Installing

You can get the latest sources from SVN here:

 http://svn.freepascal.org/svn/fpcprojects/fpprofiler

Alternatively Graeme Geldenhuys has created a git repository:

 http://github.com/graemeg/fpprofiler

This repository is an unofficial one. The SVN repository is therefore advised.

Platforms / architectures

Because it is completely FPC native, it should work on all platforms and architectures that FPC supports.