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]

PATCH: (wwwdocs) two news items


Two news items added to the GCC web page.  Approved by Gerald Pfeifer.


Index: htdocs/index.html
===================================================================
RCS file: /cvs/gcc/wwwdocs/htdocs/index.html,v
retrieving revision 1.189
diff -c -p -r1.189 index.html
*** index.html	2000/03/13 00:49:25	1.189
--- index.html	2000/03/15 00:22:41
*************** maintain and improve quality.
*** 107,118 ****
--- 107,138 ----
  
  <dl>
  
+ <dt><b>March 14, 2000</b></dt>
+ <dd>
+ CodeSourcery, LLC is now providing nightly <a
+ href="http://www.codesourcery.com/gcc-snapshots.html">snapshots of
+ GCC</a>, distributed as RPMs for GNU/Linux on Intel platforms, plus
+ build logs and testsuite results.  In order to allow users to more
+ easily confirm whether the current snapshot of GCC fixes a particular
+ bug, an online compilation <a
+ href="http://www.codesourcery.com/gcc-compile.html">web form</a> is
+ provided.
+ </dd>
+ 
  <dt><b>March 13, 2000</b></dt>
  <dd>
  Denis Chertykov contributed an AVR port.
  AVR is a family of micro controllers made by Atmel with embedded FLASH
  program memory and embedded RAM.  It is the first GCC port to an 8-bit
  microprocessor with a 16-bit address bus.
+ </dd>
+ 
+ <dt><b>March 9, 2000</b></dt>
+ <dd>
+ CodeSourcery, LLC and Cygnus, a RedHat company, have contributed an
+ implementation of <a href="news/ssa.html">static single assignment</a>
+ (SSA) representation.  SSA will facilitate the implementation of
+ powerful code optimizations in GCC.
  </dd>
  
  <dt><b>March 2, 2000</b></dt>



*** /dev/null	Tue May  5 13:32:27 1998
--- htdocs/news/ssa.html	Tue Mar 14 16:24:41 2000
***************
*** 0 ****
--- 1,34 ----
+ <html>
+ 
+ <head>
+ <title>Static Single Assignment</title>
+ </head>
+ 
+ <BODY>
+ 
+ <h1 align="center">Static Single Assignment</h1>
+ 
+ <p>December 9, 1999</p>
+ 
+ <p>We are pleased to announce that 
+ <A HREF="http://www.codesourcery.com">CodeSourcery, LLC</A> 
+ and 
+ <A HREF="http://www.redhat.com">Cygnus, a RedHat company</A> 
+ have
+ contributed an implementation of the static single assignment (SSA)
+ representation for the GCC compiler.  SSA is used in many modern
+ compilers to facilitate a wide range of powerful optimizations.  Now
+ that SSA has been added to GCC, many optimizations can be added that
+ were previously difficult or impossible.</p>
+ 
+ <p>In a function that has been converted to SSA form, each register is
+ assigned a value only once.  This simplification makes implementation
+ of optimization algorithms possible or easier, since the path from
+ assignment to use of a register is more easily determined.  After
+ optimizations have been performed, the function is converted out of
+ SSA form before code generation proceeds.</p>
+ 
+ <HR>
+ 
+ </BODY>
+ </html>


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