This is the mail archive of the gcc-patches@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]

[tree-ssa] Project page update [patch]


Adds links to the Summit proceedings and daily snapshots of the
branch.  It also re-organizes the table of contents and updates
the introduction text.

Checked with http://validator.w3.org.


Diego.


Index: index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/projects/tree-ssa/index.html,v
retrieving revision 1.12
diff -d -c -p -r1.12 index.html
*** index.html	1 May 2003 16:49:21 -0000	1.12
--- index.html	30 May 2003 03:31:59 -0000
***************
*** 6,29 ****
  <body>
  <h1>SSA for Trees</h1>
  
! <p>This work is part of the <a href="../ast-optimizer.html">AST
! optimization</a> project.  The goal is to build an optimization framework
! for trees based on the Static Single Assignment (SSA) form [<a
  href="#cytron.ea-91">1</a>].  The implementation currently lives in the
  <code>tree-ssa-20020619-branch</code> branch.</p>
  
  <p>API <a
  href="http://people.redhat.com/dnovillo/tree-ssa-doc/html/index.html";>
  documentation</a> for the Tree SSA infrastructure is generated from the
  source code using Doxygen.  The documentation is updated regularly.</p>
  
  
! <h3>Contributing</h3>
  
  <p>Checkout the <code>tree-ssa-20020619-branch</code> branch
  following the instructions found in the <a
  href="../../cvs.html">CVS documentation</a>.</p>
  
  <p>When posting to the development lists, please mark messages and patches with
  <code>[tree-ssa]</code> in the subject.  As this is a branch, and not
  the mainline, the usual maintainer rules do not apply.  This branch is
--- 6,58 ----
  <body>
  <h1>SSA for Trees</h1>
  
! <p>The goal of this project is to build an optimization framework for trees
! based on the Static Single Assignment (SSA) form [<a
  href="#cytron.ea-91">1</a>].  The implementation currently lives in the
  <code>tree-ssa-20020619-branch</code> branch.</p>
  
+ <h2>Table of Contents</h2>
+ 
+ <ul>
+ <li><a href="#documentation">Documentation</a></li>
+ <li><a href="#contributing">Contributing</a></li>
+ <li><a href="#stability">Branch stability</a></li>
+ <li><a href="#gimple">GENERIC and GIMPLE</a></li>
+ <li><a href="#ssa">SSA implementation</a></li>
+ <li><a href="#unparse">Unparsing GENERIC trees</a></li>
+ <li><a href="#tb">Tree Browser</a></li>
+ <li><a href="#status">Implementation Status (last updated: 2003-02-28)</a></li>
+ <li><a href="#status">TODO list (last updated: 2003-02-28)</a></li>
+ </ul>
+ 
+ <hr />
+ <h3><a name="documentation">Documentation</a></h3>
+ 
  <p>API <a
  href="http://people.redhat.com/dnovillo/tree-ssa-doc/html/index.html";>
  documentation</a> for the Tree SSA infrastructure is generated from the
  source code using Doxygen.  The documentation is updated regularly.</p>
  
+ <p>A high-level overview of GENERIC/GIMPLE and the SSA implementation may
+ be found in the <a
+ href="http://www.linux.org.uk/~ajh/gcc/gccsummit-2003-proceedings.pdf";>
+ Proceedings of the 2003 GCC Developers Summit</a> (pages 171-193).
+ Presentation slides for Tree SSA are also <a
+ href="http://people.redhat.com/dnovillo/Papers/tree-ssa-gccs03-slides.pdf";>
+ available</a>.</p>
  
! <hr />
! <h3><a name="contributing">Contributing</a></h3>
  
  <p>Checkout the <code>tree-ssa-20020619-branch</code> branch
  following the instructions found in the <a
  href="../../cvs.html">CVS documentation</a>.</p>
  
+ <p>Daily snapshots of the branch are also <a
+ href="http://people.redhat.com/dnovillo/pub/snapshot/";>
+ available</a>.  These snapshots are known to bootstrap on
+ <code>i686-pc-linux-gnu</code>.</p>
+ 
  <p>When posting to the development lists, please mark messages and patches with
  <code>[tree-ssa]</code> in the subject.  As this is a branch, and not
  the mainline, the usual maintainer rules do not apply.  This branch is
*************** needed when submitting patches from the 
*** 47,53 ****
  <a href="mailto:s.pop@laposte.net";>Sebastian Pop</a> and
  <a href="mailto:graham.stott@btinternet.com";>Graham Stott</a>.</p>
  
! <h3>Branch stability</h3>
  
  <p>While this is an experimental branch and people are encouraged to
  add new features to it, default bootstraps and regression tests for
--- 76,83 ----
  <a href="mailto:s.pop@laposte.net";>Sebastian Pop</a> and
  <a href="mailto:graham.stott@btinternet.com";>Graham Stott</a>.</p>
  
! <hr />
! <h3><a name="stability">Branch stability</a></h3>
  
  <p>While this is an experimental branch and people are encouraged to
  add new features to it, default bootstraps and regression tests for
*************** when we can prove improvements in code q
*** 80,97 ****
  times.  We should be able to either replace or simplify some of
  the existing transformations currently done on RTL.</p>
  
- <hr />
- 
- <h2>Table of Contents</h2>
- 
- <ul>
- <li><a href="#gimple">GENERIC and GIMPLE</a></li>
- <li><a href="#ssa">SSA implementation</a></li>
- <li><a href="#unparse">Unparsing GENERIC trees</a></li>
- <li><a href="#tb">Tree Browser</a></li>
- <li><a href="#status">Implementation Status (last updated: 2003-02-28)</a></li>
- <li><a href="#status">TODO list (last updated: 2003-02-28)</a></li>
- </ul>
  
  <hr />
  <h2><a name="gimple">GENERIC and GIMPLE</a></h2>
--- 110,115 ----


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