- Start moving target-dependent nodes that could be represented by an
[oota-llvm.git] / lib / Target / CellSPU / README.txt
1 //===- README.txt - Notes for improving CellSPU-specific code gen ---------===//
2
3 This code was contributed by a team from the Computer Systems Research
4 Department in The Aerospace Corporation:
5
6 - Scott Michel (head bottle washer and much of the non-floating point
7   instructions)
8 - Mark Thomas (floating point instructions)
9 - Michael AuYeung (intrinsics)
10 - Chandler Carruth (LLVM expertise)
11 - Nehal Desai (debugging, RoadRunner SPU expertise)
12
13 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
15 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR
16 OTHERWISE.  IN NO EVENT SHALL THE AEROSPACE CORPORATION BE LIABLE FOR DAMAGES
17 OF ANY KIND OR NATURE WHETHER BASED IN CONTRACT, TORT, OR OTHERWISE ARISING
18 OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE INCLUDING, WITHOUT
19 LIMITATION, DAMAGES RESULTING FROM LOST OR CONTAMINATED DATA, LOST PROFITS OR
20 REVENUE, COMPUTER MALFUNCTION, OR FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL,
21 OR PUNITIVE  DAMAGES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR
22 SUCH DAMAGES ARE FORESEEABLE.
23
24 ---------------------------------------------------------------------------
25 --WARNING--:
26 --WARNING--: The CellSPU work is work-in-progress and "alpha" quality code.
27 --WARNING--:
28
29 If you are brave enough to try this code or help to hack on it, be sure
30 to add 'spu' to configure's --enable-targets option, e.g.:
31
32         ./configure <your_configure_flags_here> \
33            --enable-targets=x86,x86_64,powerpc,spu
34
35 ---------------------------------------------------------------------------
36
37 The unofficially official status page (because it's not easy to get an
38 officially blessed external web page from either IBM Austin or Aerospace):
39
40               http://sites.google.com/site/llvmcellspu/
41
42 TODO:
43 * Finish branch instructions, branch prediction
44
45   These instructions were started, but only insofar as to get llvm-gcc-4.2's
46   crtbegin.ll working (which doesn't.)
47
48 * Double floating point support
49
50   This was started. "What's missing?" to be filled in.
51
52 * Intrinsics
53
54   Lots of progress. "What's missing/incomplete?" to be filled in.
55
56 ===-------------------------------------------------------------------------===