Skip to content

Commit 362f4b3

Browse files
author
John Criswell
committed
Updated release notes from mainline.
llvm-svn: 15594
1 parent 67dee05 commit 362f4b3

File tree

1 file changed

+19
-14
lines changed

1 file changed

+19
-14
lines changed

llvm/docs/ReleaseNotes.html

Lines changed: 19 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@
7373
release primarily improves the <a href="#codequality">performance of the
7474
code</a> produced by all aspects of the LLVM compiler, adds many <a
7575
href="#newfeatures">new features</a>, <a href="#bugfix">fixes a few
76-
bugs</a>, and speeds up the compiler.</p>
76+
bugs</a>, speeds up the compiler, and introduces a new (experimental)
77+
PowerPC code generator.</p>
7778

7879
<p> At this time, LLVM is known to correctly compile and run all C &amp; C++
7980
SPEC CPU95 &amp; 2000 benchmarks, the Olden benchmarks, and the Ptrdist
@@ -149,6 +150,8 @@
149150
<li>All LLVM tools will now respond to the
150151
<a href="http://llvm.cs.uiuc.edu/PR413"><tt>--version</tt> option</a> which
151152
will tell you the version of LLVM on which the tool is based.</li>
153+
<li>An experimental PowerPC backend has been added, capable of compiling several
154+
SPEC benchmarks.</li>
152155
</ol>
153156

154157
</div>
@@ -198,13 +201,15 @@
198201
Bytecode Reader</a></li>
199202
<li><a href="http://llvm.cs.uiuc.edu/PR392">Global Vars Have (Somewhat) Limited
200203
Type Range</a></li>
201-
<li><a href="http://llvm.cs.uiuc.edu/PR341">operator&lt;&lt; on a Value* now prints the address of the object instead of its contents.</a></li>
204+
<li><a href="http://llvm.cs.uiuc.edu/PR341">operator&lt;&lt; on a Value* now
205+
prints the address of the object instead of its contents.</a></li>
202206
<li><a href="http://llvm.cs.uiuc.edu/PR402">Bytecode Enhancements
203-
Needed</a></li>
204-
<li><a href="http://llvm.cs.uiuc.edu/PR404">[loopsimplify] Loop simplify is really slow on 252.eon</a></li>
205-
<li><a href="Http://llvm.cs.uiuc.edu/PR122">[code-cleanup] SymbolTable
206-
class cleanup, Type should not derive from Value, eliminate
207-
ConstantPointerRef class</a>.</li>
207+
Needed</a></li>
208+
<li><a href="http://llvm.cs.uiuc.edu/PR404">[loopsimplify] Loop simplify is
209+
really slow on 252.eon</a></li>
210+
<li><a href="Http://llvm.cs.uiuc.edu/PR122">[code-cleanup] SymbolTable class
211+
cleanup, Type should not derive from Value, eliminate ConstantPointerRef
212+
class</a>.</li>
208213
<li>The memory footprint of the LLVM IR has been reduced substantially.</li>
209214
<li>The LLVM linker and many core classes have been sped up substantially.</li>
210215
</ol>
@@ -345,12 +350,12 @@
345350
<li>Intel and AMD machines running Red Hat Linux and FreeBSD (and probably
346351
other unix-like systems).</li>
347352
<li>Sun UltraSPARC workstations running Solaris 8.</li>
348-
<li>PowerPC-based Mac OS X boxes, running 10.3 and above (C backend and
349-
interpreter only, no native codegen is available yet).</li>
350353
<li>Intel and AMD machines running on Win32 with the Cygwin libraries.</li>
354+
<li>PowerPC-based Mac OS X boxes, running 10.2 and above. Note that no JIT
355+
support is available yet, and LLC support is beta. The C backend can be used
356+
to produce stable code for this platform.</li>
351357
</ul>
352358

353-
354359
<p>The core LLVM infrastructure uses
355360
<a href="http://www.gnu.org/software/autoconf/">GNU autoconf</a> to adapt itself
356361
to the machine and operating system on which it is built. However, minor
@@ -396,9 +401,11 @@
396401
components, please contact us on the llvmdev list.</p>
397402

398403
<ul>
404+
<li>The PowerPC backend is incomplete and is known to miscompile several SPEC
405+
benchmarks. The file <tt>llvm/lib/Target/PowerPC/README.txt</tt> has
406+
details.</li>
399407
<li>The following passes are incomplete or buggy: <tt>-pgmdep, -memdep,
400408
-ipmodref, -cee</tt></li>
401-
402409
<li>The <tt>-pre</tt> pass is incomplete (there are cases it doesn't handle that
403410
it should) and not thoroughly tested.</li>
404411
<li>The <tt>llvm-ar</tt> tool is incomplete and probably buggy.</li>
@@ -423,9 +430,7 @@
423430
such, execution of a threaded program could cause these data structures to be
424431
corrupted.</li>
425432

426-
<li>It is not possible to <tt>dlopen</tt> an LLVM bytecode file in the JIT.</li>
427-
428-
<li>Linking in static archive files (.a files) is very slow (there is no symbol
433+
<li>Linking in static archive files (.a files) is slow (there is no symbol
429434
table in the archive).</li>
430435

431436
<li>The gccld program <a href="http://llvm.cs.uiuc.edu/PR139">does not link

0 commit comments

Comments
 (0)