From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5554 invoked by alias); 20 Feb 2014 23:42:23 -0000 Mailing-List: contact gcc-help-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-help-owner@gcc.gnu.org Received: (qmail 5544 invoked by uid 89); 20 Feb 2014 23:42:22 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-vc0-f194.google.com Received: from mail-vc0-f194.google.com (HELO mail-vc0-f194.google.com) (209.85.220.194) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-SHA encrypted) ESMTPS; Thu, 20 Feb 2014 23:42:22 +0000 Received: by mail-vc0-f194.google.com with SMTP id hu8so809004vcb.1 for ; Thu, 20 Feb 2014 15:42:19 -0800 (PST) MIME-Version: 1.0 X-Received: by 10.52.243.164 with SMTP id wz4mr2280996vdc.31.1392939739604; Thu, 20 Feb 2014 15:42:19 -0800 (PST) Received: by 10.58.84.200 with HTTP; Thu, 20 Feb 2014 15:42:19 -0800 (PST) Date: Thu, 20 Feb 2014 23:42:00 -0000 Message-ID: Subject: gprof output question From: MR ZenWiz To: gcc-help@gcc.gnu.org Content-Type: text/plain; charset=ISO-8859-1 X-IsSubscribed: yes X-SW-Source: 2014-02/txt/msg00128.txt.bz2 In using gprof on a large C++ app, there are a number of functions in the output that do not have any class name or parameters associated with them. In a thorough search of the app source, I cannot find any functions defined with a particular name that shows up like this in the gprof output. How can I track down where these functions live? In the call trace section, they show up as "spontaneous," so I can't even tell from where they are called. Any guidance would be most appreciated. Thanks. MR