hi !
i'm generation a "gmon.out" file to profile my cocoa app.
i'm particularly suprised to discover that the gprof report does NOT contain my methods, but instead is full of low level function calls of the cocoa API
i don't want to analyse cocoa API performance but my methods one
ex :
_objc_msgSend
_szone_calloc
_szone_malloc
___CFStringEncodeByteStream
etc...
does anyone know how to use gprof to obtains "high level" report, with only my methods getting reported ?
thanks