Date: Wed, 11 Jun 2003 18:15:00 -0400 Message-Id: <200306112215.h5BMF0uT032121@envy.delorie.com> From: DJ Delorie To: djgpp-workers AT delorie DOT com In-reply-to: <7704-Thu12Jun2003010728+0300-eliz@elta.co.il> Subject: Re: Fwd: GCC 3.3.1 and GCC 3.4 Schedule References: <200306112035 DOT h5BKZReG030855 AT envy DOT delorie DOT com> <7704-Thu12Jun2003010728+0300-eliz AT elta DOT co DOT il> Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk > Forgive my ignorance, but what is this ``tree-ssa'' thingie that > Mark Mitchell is so excited about? SSA is "static single assignment" which is a way of canonicalizing the instruction flow for optimizing and trees are parse trees produced by gcc's front ends. So, "tree-ssa" is a drastic change to the way gcc organizes its internal data structures for optimization. http://gcc.gnu.org/projects/tree-ssa/