delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin-developers/2001/05/03/17:30:37

Mailing-List: contact cygwin-developers-help AT sourceware DOT cygnus DOT com; run by ezmlm
List-Subscribe: <mailto:cygwin-developers-subscribe AT sources DOT redhat DOT com>
List-Archive: <http://sources.redhat.com/ml/cygwin-developers/>
List-Post: <mailto:cygwin-developers AT sources DOT redhat DOT com>
List-Help: <mailto:cygwin-developers-help AT sources DOT redhat DOT com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-developers-owner AT sources DOT redhat DOT com
Delivered-To: mailing list cygwin-developers AT sources DOT redhat DOT com
Date: Thu, 3 May 2001 17:30:30 -0400
Message-Id: <200105032130.RAA03969@envy.delorie.com>
X-Authentication-Warning: envy.delorie.com: dj set sender to dj AT envy DOT delorie DOT com using -f
From: DJ Delorie <dj AT delorie DOT com>
To: robert DOT collins AT itdomain DOT com DOT au
CC: cygwin-developers AT cygwin DOT com
In-reply-to: <000801c0d415$96ccf4b0$0200a8c0@lifelesswks>
(robert DOT collins AT itdomain DOT com DOT au)
Subject: Re: DJ Please read - profiling
References: <000801c0d415$96ccf4b0$0200a8c0 AT lifelesswks>

>     I recall you have done serious work on profiling cygwin? I don't
> have dejagnu running here, nor _any idea_ on how to profile cygwin.

To use gprof, you need to build cygwin as a static library with -pg.
That in itself is tricky, because you first have to replace malloc
with some other implementation so that it doesn't recurse (cygwin
calls the user's malloc, which *is* cygwin's malloc if you link
statically).  You also have to rewrite all the startup code to work in
a non-dll situation.  It's not easy to get cygwin to run this way, and
expect to end up with a useless mess when you're done profiling.

The next step is the profiler itself - you can use gprof, but the
granularity is pretty bad for quick-lived things like cygwin.  I wrote
something that single-stepped the program using the debug API and
built a profile from that; you'd have to ask Chris if I can publish
it, assuming it still works.  It (my profiler) should work with cygwin
as a DLL, so that makes things easier, but programs run about 1000
times slower :-( and you have to manually specify the range of
addresses you want to profile.  You can, however, profile individual
functions via OutputDebugString controls to the profiler.

I don't remember if my profiler infers call graph counts or if you
have to build cygwin1.dll with -pg.  I think it infers the graph.

I will gladly impart my wisdom and experience in detail if someone is
willing to validate what still currently works and write up a page for
cygwin.com.

You don't need dejagnu at all, unless that's what you're profiling.

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019