blob: bc574e53434c0c7724d33c390e85df6582c3c49a [file] [log] [blame]
Misha Brukman076438b2003-11-14 17:34:38 +00001<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
2 "http://www.w3.org/TR/html4/strict.dtd">
3<html>
4<head>
5 <title>Open LLVM Projects</title>
6 <link rel="stylesheet" href="llvm.css" type="text/css">
7</head>
8<body>
Chris Lattnerb7131092003-02-06 19:39:21 +00009
Misha Brukman076438b2003-11-14 17:34:38 +000010<div class="doc_title">
11 Open LLVM Projects
12</div>
Chris Lattnerb7131092003-02-06 19:39:21 +000013
14<ul>
Misha Brukman076438b2003-11-14 17:34:38 +000015 <li><a href="#what">What is this?</a></li>
Chris Lattnerb7131092003-02-06 19:39:21 +000016 <li><a href="#improving">Improving the current system</a>
17 <ol>
Chris Lattner7e0281f2004-05-28 20:41:37 +000018 <li><a href="#code-cleanups">Implementing Code Cleanup bugs</a></li>
Misha Brukman076438b2003-11-14 17:34:38 +000019 <li><a href="#glibc">Port glibc to LLVM</a></li>
Misha Brukman076438b2003-11-14 17:34:38 +000020 <li><a href="#programs">Compile programs with the LLVM Compiler</a></li>
21 <li><a href="#llvm_ir">Extend the LLVM intermediate representation</a></li>
Misha Brukman8bf7c282004-11-07 01:03:59 +000022 <li><a href="#target">Target backend improvements</a></li>
Misha Brukman076438b2003-11-14 17:34:38 +000023 <li><a href="#misc_imp">Miscellaneous Improvements</a></li>
24 </ol></li>
Chris Lattnerb7131092003-02-06 19:39:21 +000025
26 <li><a href="#new">Adding new capabilities to LLVM</a>
27 <ol>
Chris Lattner7e0281f2004-05-28 20:41:37 +000028 <li><a href="#newfeaturebugs">Implementing new feature PRs</a></li>
Misha Brukman076438b2003-11-14 17:34:38 +000029 <li><a href="#pointeranalysis">Pointer and Alias Analysis</a></li>
Misha Brukman05bcca92004-09-06 22:35:43 +000030 <li><a href="#profileguided">Profile-Guided Optimization</a></li>
Misha Brukman076438b2003-11-14 17:34:38 +000031 <li><a href="#xforms">New Transformations and Analyses</a></li>
32 <li><a href="#x86be">X86 Back-end Improvements</a></li>
33 <li><a href="#misc_new">Miscellaneous Additions</a></li>
34 </ol></li>
Chris Lattnerb7131092003-02-06 19:39:21 +000035</ul>
36
Chris Lattner97d49ef2004-05-23 21:06:21 +000037<div class="doc_author">
38 <p>Written by the <a href="http://llvm.cs.uiuc.edu/">LLVM Team</a></p>
39</div>
40
41
Chris Lattnerb7131092003-02-06 19:39:21 +000042<!-- *********************************************************************** -->
Misha Brukman076438b2003-11-14 17:34:38 +000043<div class="doc_section">
44 <a name="what">What is this?</a>
45</div>
Chris Lattnerb7131092003-02-06 19:39:21 +000046<!-- *********************************************************************** -->
47
Misha Brukman076438b2003-11-14 17:34:38 +000048<div class="doc_text">
Chris Lattnerb7131092003-02-06 19:39:21 +000049
Misha Brukman076438b2003-11-14 17:34:38 +000050<p>This document is meant to be a sort of "big TODO list" for LLVM. Each
51project in this document is something that would be useful for LLVM to have, and
52would also be a great way to get familiar with the system. Some of these
53projects are small and self-contained, which may be implemented in a couple of
54days, others are larger. Several of these projects may lead to interesting
55research projects in their own right. In any case, we welcome all
56contributions.</p>
57
58<p>If you are thinking about tackling one of these projects, please send a mail
59to the <a href="http://mail.cs.uiuc.edu/mailman/listinfo/llvmdev">LLVM
Chris Lattnerb7131092003-02-06 19:39:21 +000060Developer's</a> mailing list, so that we know the project is being worked on.
61Additionally this is a good way to get more information about a specific project
Alkis Evlogimenos45ff0272004-03-11 02:50:35 +000062or to suggest other projects to add to this page.
63</p>
64
Misha Brukman836db502004-05-12 18:57:54 +000065<p>The projects in this page are open-ended. More specific projects are
66filed as unassigned enhancements in the <a href="http://llvm.cs.uiuc.edu/bugs/">
Chris Lattner9f57b182004-05-23 20:29:35 +000067LLVM bug tracker</a>. See the <a href="http://llvm.cs.uiuc.edu/bugs/buglist.cgi?keywords_type=allwords&amp;keywords=&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;bug_severity=enhancement&amp;emailassigned_to1=1&amp;emailtype1=substring&amp;email1=unassigned">list of currently outstanding issues</a> if you wish to help improve LLVM.</p>
Chris Lattnerb7131092003-02-06 19:39:21 +000068
Misha Brukman076438b2003-11-14 17:34:38 +000069</div>
Chris Lattnerb7131092003-02-06 19:39:21 +000070
71<!-- *********************************************************************** -->
Misha Brukman076438b2003-11-14 17:34:38 +000072<div class="doc_section">
73 <a name="improving">Improving the current system</a>
74</div>
Chris Lattnerb7131092003-02-06 19:39:21 +000075<!-- *********************************************************************** -->
76
Misha Brukman076438b2003-11-14 17:34:38 +000077<div class="doc_text">
78
79<p>Improvements to the current infrastructure are always very welcome and tend
80to be fairly straight-forward to implement. Here are some of the key areas that
81can use improvement...</p>
82
83</div>
Chris Lattnerb7131092003-02-06 19:39:21 +000084
85<!-- ======================================================================= -->
Misha Brukman076438b2003-11-14 17:34:38 +000086<div class="doc_subsection">
Chris Lattner7e0281f2004-05-28 20:41:37 +000087 <a name="code-cleanups">Implementing Code Cleanup bugs</a>
88</div>
89
90<div class="doc_text">
91
92<p>
93The <a href="http://llvm.cs.uiuc.edu/bugs/">LLVM bug tracker</a> occasionally
Reid Spencer11d45b62004-11-01 20:41:01 +000094has <a
95 href="http://llvm.cs.uiuc.edu/bugs/buglist.cgi?short_desc_type=allwordssubstr&amp;short_desc=&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;status_whiteboard_type=allwordssubstr&amp;status_whiteboard=&amp;keywords_type=allwords&amp;keywords=code-cleanup&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;emailassigned_to1=1&amp;emailtype1=substring&amp;email1=&amp;emailassigned_to2=1&amp;emailreporter2=1&amp;emailcc2=1&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;changedin=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Bug+Number&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">"code-cleanup" bugs</a> filed in it. Taking one of these and fixing it is a good
Chris Lattner7e0281f2004-05-28 20:41:37 +000096way to get your feet wet in the LLVM code and discover how some of its components
97work.
98</p>
99
100</div>
101
102<!-- ======================================================================= -->
103<div class="doc_subsection">
Misha Brukman076438b2003-11-14 17:34:38 +0000104 <a name="glibc">Port glibc to LLVM</a>
105</div>
Chris Lattnerb7131092003-02-06 19:39:21 +0000106
Misha Brukman076438b2003-11-14 17:34:38 +0000107<div class="doc_text">
108
109<p>It would be very useful to <a
Tanya Lattner09cf73c2004-06-22 04:24:55 +0000110href="http://www.gnu.org/software/libc/manual/html_node/Porting.html">port</a> <a
111href="http://www.gnu.org/software/libc/">glibc</a> to LLVM. This would allow a
Chris Lattnerb7131092003-02-06 19:39:21 +0000112variety of interprocedural algorithms to be much more effective in the face of
113library calls. The most important pieces to port are things like the string
114library and the <tt>stdio</tt> related functions... low-level system calls like
Misha Brukman076438b2003-11-14 17:34:38 +0000115'<tt>read</tt>' should stay unimplemented in LLVM.</p>
Chris Lattnerb7131092003-02-06 19:39:21 +0000116
Misha Brukman076438b2003-11-14 17:34:38 +0000117</div>
Chris Lattnerb7131092003-02-06 19:39:21 +0000118
119<!-- ======================================================================= -->
Misha Brukman076438b2003-11-14 17:34:38 +0000120<div class="doc_subsection">
Misha Brukman076438b2003-11-14 17:34:38 +0000121 <a name="programs">Compile programs with the LLVM Compiler</a>
122</div>
Chris Lattnerb7131092003-02-06 19:39:21 +0000123
Misha Brukman076438b2003-11-14 17:34:38 +0000124<div class="doc_text">
125
126<p>We are always looking for new testcases and benchmarks for use with LLVM. In
Chris Lattnerb7131092003-02-06 19:39:21 +0000127particular, it is useful to try compiling your favorite C source code with LLVM.
128If it doesn't compile, try to figure out why or report it to the <a
129href="http://mail.cs.uiuc.edu/pipermail/llvmbugs/">llvm-bugs</a> list. If you
130get the program to compile, it would be extremely useful to convert the build
131system to be compatible with the LLVM Programs testsuite so that we can check it
Chris Lattner1b360042003-02-07 19:25:35 +0000132into CVS and the automated tester can use it to track progress of the
Misha Brukman076438b2003-11-14 17:34:38 +0000133compiler.</p>
Chris Lattner1b360042003-02-07 19:25:35 +0000134
Misha Brukman076438b2003-11-14 17:34:38 +0000135<p>When testing a code, try running it with a variety of optimizations, and with
136all the back-ends: CBE, llc, and lli.</p>
Chris Lattnerb7131092003-02-06 19:39:21 +0000137
Misha Brukman076438b2003-11-14 17:34:38 +0000138</div>
Chris Lattnerb7131092003-02-06 19:39:21 +0000139
140<!-- ======================================================================= -->
Misha Brukman076438b2003-11-14 17:34:38 +0000141<div class="doc_subsection">
142 <a name="llvm_ir">Extend the LLVM intermediate representation</a>
143</div>
144
145<div class="doc_text">
Chris Lattnerb7131092003-02-06 19:39:21 +0000146
147<ol>
Misha Brukman076438b2003-11-14 17:34:38 +0000148<li>Add support for platform-independent prefetch support. The GCC <a
Chris Lattnerb7131092003-02-06 19:39:21 +0000149 href="http://gcc.gnu.org/projects/prefetch.html">prefetch project</a> page
150 has a good survey of the prefetching capabilities of a variety of modern
Misha Brukman076438b2003-11-14 17:34:38 +0000151 processors.</li>
152
Chris Lattnerb7131092003-02-06 19:39:21 +0000153</ol>
154
Misha Brukman076438b2003-11-14 17:34:38 +0000155</div>
Chris Lattnerb7131092003-02-06 19:39:21 +0000156
157<!-- ======================================================================= -->
Misha Brukman076438b2003-11-14 17:34:38 +0000158<div class="doc_subsection">
Misha Brukman8bf7c282004-11-07 01:03:59 +0000159 <a name="target">Target backend improvements</a>
160</div>
161
162<div class="doc_text">
163
164<ol>
165 <li>Find benchmarks either using our <a
166 href="http://llvm.cs.uiuc.edu/testresults/">test results</a> or on your own,
167 where LLVM code generators do not produce optimal code or simply where another
168 compiler produces better code. Try to minimize the test case that
169 demonstrates the issue. Then, either <a
170 href="http://llvm.cs.uiuc.edu/bugs/">submit a bug</a> with your testcase and
171 the code that LLVM produces vs. the code that it <em>should</em> produce, or
172 even better, see if you can improve the code generator and submit a
173 patch.</li>
174</ol>
175
176</div>
177
178<!-- ======================================================================= -->
179<div class="doc_subsection">
Misha Brukman076438b2003-11-14 17:34:38 +0000180 <a name="misc_imp">Miscellaneous Improvements</a>
181</div>
182
183<div class="doc_text">
Chris Lattnerb7131092003-02-06 19:39:21 +0000184
185<ol>
Misha Brukman076438b2003-11-14 17:34:38 +0000186<li>Rework the PassManager to be more flexible</li>
187
Chris Lattnerb7131092003-02-06 19:39:21 +0000188<li>Some transformations and analyses only work on reducible flow graphs. It
189would be nice to have a transformation which could be "required" by these passes
190which makes irreducible graphs reducible. This can easily be accomplished
191through code duplication. See <a
192href="http://citeseer.nj.nec.com/janssen97making.html">Making Graphs Reducible
193with Controlled Node Splitting</a> and perhaps <a
194href="http://doi.acm.org/10.1145/262004.262005">Nesting of Reducible and
Misha Brukman076438b2003-11-14 17:34:38 +0000195Irreducible Loops</a>.</li>
196
Chris Lattnerb7131092003-02-06 19:39:21 +0000197</ol>
198
Misha Brukman076438b2003-11-14 17:34:38 +0000199</div>
Chris Lattnerb7131092003-02-06 19:39:21 +0000200
201<!-- *********************************************************************** -->
Misha Brukman076438b2003-11-14 17:34:38 +0000202<div class="doc_section">
203 <a name="new">Adding new capabilities to LLVM</a>
204</div>
Chris Lattnerb7131092003-02-06 19:39:21 +0000205<!-- *********************************************************************** -->
206
Misha Brukman076438b2003-11-14 17:34:38 +0000207<div class="doc_text">
208
Brian Gaeke2d261352004-04-07 15:31:23 +0000209<p>Sometimes creating new things is more fun than improving existing things.
Misha Brukman076438b2003-11-14 17:34:38 +0000210These projects tend to be more involved and perhaps require more work, but can
211also be very rewarding.</p>
212
213</div>
Chris Lattnerb7131092003-02-06 19:39:21 +0000214
Chris Lattner7e0281f2004-05-28 20:41:37 +0000215
216<!-- ======================================================================= -->
217<div class="doc_subsection">
218 <a name="newfeaturebugs">Implementing new feature PRs</a>
219</div>
220
221<div class="doc_text">
222
Reid Spencer11d45b62004-11-01 20:41:01 +0000223<p>Many ideas for feature requests are stored in LLVM bugzilla. Just <a
Misha Brukman8bf7c282004-11-07 01:03:59 +0000224 href="http://llvm.cs.uiuc.edu/bugs/buglist.cgi?short_desc_type=allwordssubstr&amp;short_desc=&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;status_whiteboard_type=allwordssubstr&amp;status_whiteboard=&amp;keywords_type=allwords&amp;keywords=new-feature&amp;bug_status=UNCONFIRMED&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;emailassigned_to1=1&amp;emailtype1=substring&amp;email1=&amp;emailassigned_to2=1&amp;emailreporter2=1&amp;emailcc2=1&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;changedin=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;namedcmd=All+PRs&amp;newqueryname=&amp;order=Bug+Number&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">search for bugs with a "new-feature" keyword</a>.</p>
Chris Lattner7e0281f2004-05-28 20:41:37 +0000225
226</div>
227
Chris Lattnerb7131092003-02-06 19:39:21 +0000228<!-- ======================================================================= -->
Misha Brukman076438b2003-11-14 17:34:38 +0000229<div class="doc_subsection">
230 <a name="pointeranalysis">Pointer and Alias Analysis</a>
231</div>
Chris Lattnerb7131092003-02-06 19:39:21 +0000232
Misha Brukman076438b2003-11-14 17:34:38 +0000233<div class="doc_text">
234
235<p>We have a <a href="AliasAnalysis.html">strong base for development</a> of
236both pointer analysis based optimizations as well as pointer analyses
237themselves. It seems natural to want to take advantage of this...</p>
Chris Lattnerb7131092003-02-06 19:39:21 +0000238
239<ol>
240<li>Implement a flow-sensitive context-sensitive alias analysis algorithm<br>
241 - Pick one of the somewhat efficient algorithms, but strive for maximum
Misha Brukman076438b2003-11-14 17:34:38 +0000242 precision</li>
243
Chris Lattnerf56703b2003-06-25 14:31:06 +0000244<li>Implement a flow-sensitive context-insensitive alias analysis algorithm<br>
Misha Brukman076438b2003-11-14 17:34:38 +0000245 - Just an efficient local algorithm perhaps?</li>
Chris Lattnerb7131092003-02-06 19:39:21 +0000246
Misha Brukman076438b2003-11-14 17:34:38 +0000247<li>Implement alias-analysis-based optimizations:
Chris Lattnerb7131092003-02-06 19:39:21 +0000248 <ul>
Misha Brukman076438b2003-11-14 17:34:38 +0000249 <li>...</li>
250 </ul></li>
Chris Lattnerb7131092003-02-06 19:39:21 +0000251</ol>
252
Misha Brukman076438b2003-11-14 17:34:38 +0000253</div>
Chris Lattnerb7131092003-02-06 19:39:21 +0000254
Misha Brukman076438b2003-11-14 17:34:38 +0000255<!-- ======================================================================= -->
256<div class="doc_subsection">
Misha Brukman05bcca92004-09-06 22:35:43 +0000257 <a name="profileguided">Profile-Guided Optimization</a>
Misha Brukman076438b2003-11-14 17:34:38 +0000258</div>
259
260<div class="doc_text">
261
Chris Lattnera5422e42004-03-08 22:29:35 +0000262<p>We now have a unified infrastructure for writing profile-guided
263transformations, which will work either at offline-compile-time or in the JIT,
264but we don't have many transformations. We would welcome new profile-guided
265transformations as well as improvements to the current profiling system.
266</p>
Chris Lattnerb7131092003-02-06 19:39:21 +0000267
Misha Brukman05bcca92004-09-06 22:35:43 +0000268<p>Ideas for profile-guided transformations:</p>
Chris Lattnerb7131092003-02-06 19:39:21 +0000269
270<ol>
Misha Brukman076438b2003-11-14 17:34:38 +0000271<li>Superblock formation (with many optimizations)</li>
272<li>Loop unrolling/peeling</li>
273<li>Profile directed inlining</li>
274<li>Code layout</li>
275<li>...</li>
276</ol>
Chris Lattnerb7131092003-02-06 19:39:21 +0000277
Chris Lattnera5422e42004-03-08 22:29:35 +0000278<p>Improvements to the existing support:</p>
279
280<ol>
281<li>The current block and edge profiling code that gets inserted is very simple
282and inefficient. Through the use of control-dependence information, many fewer
283counters could be inserted into the code. Also, if the execution count of a
284loop is known to be a compile-time or runtime constant, all of the counters in
285the loop could be avoided.</li>
286
287<li>You could implement one of the "static profiling" algorithms which analyze a
288piece of code an make educated guesses about the relative execution frequencies
289of various parts of the code.</li>
290
291<li>You could add path profiling support, or adapt the existing LLVM path
292profiling code to work with the generic profiling interfaces.</li>
293</ol>
294
Misha Brukman076438b2003-11-14 17:34:38 +0000295</div>
Chris Lattnerb7131092003-02-06 19:39:21 +0000296
297<!-- ======================================================================= -->
Misha Brukman076438b2003-11-14 17:34:38 +0000298<div class="doc_subsection">
299 <a name="xforms">New Transformations and Analyses</a>
300</div>
301
302<div class="doc_text">
Chris Lattnerb7131092003-02-06 19:39:21 +0000303
304<ol>
Chris Lattnerc2a57302004-10-01 22:25:28 +0000305<li>Implement <a href="http://www.cs.purdue.edu/homes/vandrutj/">GVN-PRE</a>, a
306 powerful and simple Partial Redundancy Elimination algorithm for SSA form</li>
Chris Lattnerb7131092003-02-06 19:39:21 +0000307<li>Implement a Dependence Analysis Infrastructure<br>
Misha Brukman076438b2003-11-14 17:34:38 +0000308 - Design some way to represent and query dep analysis</li>
Misha Brukman076438b2003-11-14 17:34:38 +0000309<li>Implement a strength reduction pass</li>
310<li>Value range propagation pass</li>
Chris Lattnerb7131092003-02-06 19:39:21 +0000311</ol>
312
Misha Brukman076438b2003-11-14 17:34:38 +0000313</div>
314
Chris Lattnerb7131092003-02-06 19:39:21 +0000315<!-- ======================================================================= -->
Misha Brukman076438b2003-11-14 17:34:38 +0000316<div class="doc_section">
317 <a name="x86be">X86 Back-end Improvements</a>
318</div>
319
320<div class="doc_text">
Chris Lattnerb7131092003-02-06 19:39:21 +0000321
322<ol>
Misha Brukman076438b2003-11-14 17:34:38 +0000323<li>Implement a better instruction selector</li>
Chris Lattner99df25f2003-04-28 03:42:31 +0000324<li>Implement support for the "switch" instruction without requiring the
Misha Brukman076438b2003-11-14 17:34:38 +0000325 lower-switches pass.</li>
Reid Spencer750c4252004-07-02 06:27:12 +0000326<li>Implement interprocedural register allocation. The CallGraphSCCPass can be
327 used to implement a bottom-up analysis that will determine the *actual*
328 registers clobbered by a function. Use the pass to fine tune register usage
329 in callers based on *actual* registers used by the callee.</li>
Chris Lattnerb7131092003-02-06 19:39:21 +0000330</ol>
331
Misha Brukman076438b2003-11-14 17:34:38 +0000332</div>
333
Chris Lattnerb7131092003-02-06 19:39:21 +0000334<!-- ======================================================================= -->
Misha Brukman3497ae92004-03-11 21:26:29 +0000335<div class="doc_section">
Misha Brukman076438b2003-11-14 17:34:38 +0000336 <a name="misc_new">Miscellaneous Additions</a>
337</div>
338
339<div class="doc_text">
Chris Lattnerb7131092003-02-06 19:39:21 +0000340
341<ol>
Misha Brukman85595942004-07-12 21:10:47 +0000342<li>Port the <a href="http://www-sop.inria.fr/mimosa/fp/Bigloo/">Bigloo</A>
Brian Gaeke2d261352004-04-07 15:31:23 +0000343Scheme compiler, from Manuel Serrano at INRIA Sophia-Antipolis, to
344output LLVM bytecode. It seems that it can already output .NET
345bytecode, JVM bytecode, and C, so LLVM would ostensibly be another good
346candidate.</li>
Misha Brukman85595942004-07-12 21:10:47 +0000347<li>Write a new frontend for C/C++ <b>in</b> C++, giving us the ability to
348directly use LLVM C++ classes from within a compiler rather than use
349C-based wrapper functions a la llvm-gcc. One possible starting point is the <a
350href="http://www.parashift.com/c++-faq-lite/compiler-dependencies.html#faq-37.11">C++
351yacc grammar by Ed Willink</a>.</li>
Brian Gaeke2d261352004-04-07 15:31:23 +0000352<li>Write a new frontend for some other language (Java? OCaml? Forth?)</li>
Misha Brukman076438b2003-11-14 17:34:38 +0000353<li>Write a new backend for a target (IA64? MIPS? MMIX?)</li>
Misha Brukmandec8cfb2004-04-16 16:55:30 +0000354<li>Write a disassembler for machine code that would use TableGen to output
355<tt>MachineInstr</tt>s for transformations, optimizations, etc.</li>
Brian Gaekea2245a32004-03-10 19:15:50 +0000356<li>Random test vector generator: Use a C grammar to generate random C code;
357run it through llvm-gcc, then run a random set of passes on it using opt.
358Try to crash opt. When opt crashes, use bugpoint to reduce the test case and
359mail the result to yourself. Repeat ad infinitum.</li>
Misha Brukman1a49bc82004-03-10 19:22:29 +0000360<li>Design a simple, recognizable logo.</li>
Misha Brukman6d84e0d2004-10-01 18:36:22 +0000361<li>Improve the usefulness and utility of the Skeleton target backend:
362<ul>
363 <li>Convert the non-functional Skeleton target to become an abstract machine
364 target (choose some simple instructions, a register set, etc). This will
365 become a much more useful example of a backend since it would be a simple
Misha Brukmanb8cbd9f2004-10-04 17:36:35 +0000366 but <em>functional</em> backend. Examples of such architectures include MIX,
367 MMIX, <a
368 href="http://www.cs.cinvestav.mx/SC/prof_personal/adiaz/vhdl/DLX/">DLX</a>,
369 or come up with your own!</li>
Misha Brukman6d84e0d2004-10-01 18:36:22 +0000370 <li>Use the new Skeleton backend in the Interpreter: compile LLVM to Skeleton
371 target, and then interpret that code instead of LLVM. Performance win would
372 be the primary goal, as the number of registers would be a small constant
373 instead of unbounded, for example.</li>
374</ul></li>
Chris Lattnerb7131092003-02-06 19:39:21 +0000375</ol>
376
Misha Brukman076438b2003-11-14 17:34:38 +0000377</div>
Chris Lattnerb7131092003-02-06 19:39:21 +0000378
379<!-- *********************************************************************** -->
Chris Lattnerb7131092003-02-06 19:39:21 +0000380
Misha Brukman076438b2003-11-14 17:34:38 +0000381<hr>
Misha Brukman836db502004-05-12 18:57:54 +0000382<address>
383 <a href="http://jigsaw.w3.org/css-validator/check/referer"><img
384 src="http://jigsaw.w3.org/css-validator/images/vcss" alt="Valid CSS!"></a>
385 <a href="http://validator.w3.org/check/referer"><img
386 src="http://www.w3.org/Icons/valid-html401" alt="Valid HTML 4.01!"></a>
387
388 <a href="mailto:sabre@nondot.org">Chris Lattner</a><br>
389 <a href="http://llvm.cs.uiuc.edu">LLVM Compiler Infrastructure</a><br>
Misha Brukman076438b2003-11-14 17:34:38 +0000390 Last modified: $Date$
Misha Brukman836db502004-05-12 18:57:54 +0000391</address>
Misha Brukman076438b2003-11-14 17:34:38 +0000392
393</body>
394</html>