Re: SSA in gcc

"Martin v. =?iso-8859-1?q?L=F6wis?=" <loewis@informatik.hu-berlin.de>
25 Sep 2002 23:50:57 -0400

          From comp.compilers

Related articles
SSA in gcc sumesh_uk@hotmail.com (sumesh) (2002-09-22)
Re: SSA in gcc fjh@cs.mu.OZ.AU (Fergus Henderson) (2002-09-25)
Re: SSA in gcc s.bosscher@student.tudelft.nl (Steven Bosscher) (2002-09-25)
Re: SSA in gcc loewis@informatik.hu-berlin.de (Martin v. =?iso-8859-1?q?L=F6wis?=) (2002-09-25)
Re: SSA in gcc dnovillo@redhat.com (Diego Novillo) (2002-09-25)
| List of all articles for this month |

From: "Martin v. =?iso-8859-1?q?L=F6wis?=" <loewis@informatik.hu-berlin.de>
Newsgroups: comp.compilers
Date: 25 Sep 2002 23:50:57 -0400
Organization: Humboldt University Berlin, Department of Computer Science
References: 02-09-135
Keywords: GCC, optimize
Posted-Date: 25 Sep 2002 23:50:57 EDT

"sumesh" <sumesh_uk@hotmail.com> writes:


> Can any body give me pointers to existence of SSA analysis in GCC.


The gcc 3.2 info file documents the command line options


`-fssa'
          Perform optimizations in static single assignment form. Each
          function's flow graph is translated into SSA form, optimizations
          are performed, and the flow graph is translated back from SSA
          form. Users should not specify this option, since it is not yet
          ready for production use.


`-fssa-ccp'
          Perform Sparse Conditional Constant Propagation in SSA form.
          Requires `-fssa'. Like `-fssa', this is an experimental feature.


`-fssa-dce'
          Perform aggressive dead-code elimination in SSA form. Requires
          `-fssa'. Like `-fssa', this is an experimental feature.


Regards,
Martin


Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.