This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: RTL to Simple Three instruction code
- From: Diego Novillo <dnovillo at redhat dot com>
- To: Aditya Kanade <aditya at cse dot iitb dot ac dot in>
- Cc: gcc at gcc dot gnu dot org
- Date: Wed, 11 Dec 2002 09:30:52 -0500
- Subject: Re: RTL to Simple Three instruction code
- Organization: Red Hat Canada
- References: <Pine.GSO.4.40.0212111221350.25729-100000@chandra.cse.iitb.ac.in>
On Wed, 11 Dec 2002, Aditya Kanade wrote:
> I'm working on a project which involves performing some optimizations
> and annotating three-address code. We've been looking for some suitable
> framework which can give us IR (in three-instruction format). We studied
> many compiler infrastructures like SUIF, trimaran, zephyr and so on.
>
Take a look at GIMPLE and tree SSA. GIMPLE is an IL that sits
between FE trees and RTL. It's a 3-address format that we are
using to build a new high-level optimizer framework for GCC.
http://gcc.gnu.org/projects/tree-ssa/
Diego.