This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: RTL to Simple Three instruction code


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.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]