From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 31277 invoked by alias); 8 Jun 2009 06:34:53 -0000 Received: (qmail 31269 invoked by uid 22791); 8 Jun 2009 06:34:53 -0000 X-SWARE-Spam-Status: No, hits=-1.0 required=5.0 tests=AWL,BAYES_20 X-Spam-Check-By: sourceware.org Received: from thsmsgxrt11p.thalesgroup.com (HELO thsmsgxrt11p.thalesgroup.com) (192.54.144.134) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 08 Jun 2009 06:34:44 +0000 Received: from thsmsgirt21p.corp.thales (unknown [10.33.231.5]) by thsmsgxrt11p.thalesgroup.com (Postfix) with ESMTP id 40361488947 for ; Mon, 8 Jun 2009 08:34:41 +0200 (CEST) Received: from thsmsgiav13p.corp.thales (10.33.231.33) by thsmsgirt21p.corp.thales (8.5.103) id 49D612C0006144C5 for gcc@gcc.gnu.org; Mon, 8 Jun 2009 08:34:41 +0200 Received: from (unknown [10.33.231.2]) by thsmsgiav13p.corp.thales with smtp id 5cbd_03e2_72401ce8_53f6_11de_bfb6_0013725f4d82; Mon, 08 Jun 2009 08:34:41 +0200 Received: from tasplex.srv.cn.tasfr.thales (unknown [10.33.12.75]) by thsmsgirt12p.corp.thales (Postfix) with ESMTP id 107B8391BAE for ; Mon, 8 Jun 2009 08:34:41 +0200 (CEST) Received: from xpscuspmail.psc.tasfr.thales (60.1.33.225) by tasplex.srv.cn.tasfr.thales (NPlex 6.5.026) id 49DB5E950019821D for gcc@gcc.gnu.org; Mon, 8 Jun 2009 08:34:40 +0200 Received: from xpscuspmail.psc.tasfr.thales (60.1.33.225) by xpscuspmail.psc.tasfr.thales (7.3.006) id 4A2C866D00000312 for gcc@gcc.gnu.org; Mon, 8 Jun 2009 08:34:40 +0200 Received: from xpscuspmail.psc.tasfr.thales (localhost.localdomain [127.0.0.1]) by localhost (Postfix) with SMTP id D46BD13805B for ; Mon, 8 Jun 2009 08:34:40 +0200 (CEST) Received: from [60.1.33.194] (jatec37.psc.tasfr.thales [60.1.33.194]) by xpscuspmail.psc.tasfr.thales (Postfix) with ESMTP id C61CD138054 for ; Mon, 8 Jun 2009 08:34:40 +0200 (CEST) Message-ID: <4A2CB100.4030307@fr.thalesgroup.com> Date: Mon, 08 Jun 2009 06:34:00 -0000 From: Nicolas COLLIN User-Agent: Mozilla Thunderbird 1.0.2 (Windows/20050317) MIME-Version: 1.0 To: gcc@gcc.gnu.org Subject: Intermediate representation Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Mailing-List: contact gcc-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-owner@gcc.gnu.org X-SW-Source: 2009-06/txt/msg00145.txt.bz2 Hello, I want to go through the entire internal tree in GCC but I have a problem with functions. Indeed I would like to know the declarations and functions called by a function. I assume I have to go into the function's scope but I don't know how. I read the source code but I didn't find anything. Thanks.