This is the mail archive of the
gcc-help@gcc.gnu.org
mailing list for the GCC project.
Re: help on GIMPLE
- From: Daniel Berlin <dberlin at dberlin dot org>
- To: Virender Kashyap <virenk at cse dot iitb dot ac dot in>
- Cc: GCC HELP <gcc-help at gcc dot gnu dot org>
- Date: Mon, 22 Nov 2004 08:55:08 -0500 (EST)
- Subject: Re: help on GIMPLE
- References: <Pine.LNX.4.61.0411221847010.20855@mars.cse.iitb.ac.in>
On Mon, 22 Nov 2004, Virender Kashyap wrote:
Hi,
I am working on a particuar optimizaiton and need to understand GIMPLE for
that. I would like to know the exact use of BIND_EXPR_VARS that is used in
GIMPLE.> normally if i declare something in block as :
{
int a , b ,c ;
....
}
then in the raw dump file it shows only 'a' being included in BIND_EXPR_VARS
(or in some
cases only the temporary variable).
Which raw dump file?
All of the -fdump-tree flags i tried show
int a;
int b;
int c;
Also, what is the optimization you are trying to perform?
If you are trying to get a list of local or reference variables, there is
a different way to do this.
Could someone please explain this.
Thanks and Regards.
Virender