Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===- README.txt - Notes for improving CellSPU-specific code gen ---------===// |
| 2 | |
Scott Michel | f9105d3 | 2007-12-03 23:09:49 +0000 | [diff] [blame] | 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 | |
| 12 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
| 13 | IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 14 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT, OR |
| 15 | OTHERWISE. IN NO EVENT SHALL THE AEROSPACE CORPORATION BE LIABLE FOR DAMAGES |
| 16 | OF ANY KIND OR NATURE WHETHER BASED IN CONTRACT, TORT, OR OTHERWISE ARISING |
| 17 | OUT OF OR IN CONNECTION WITH THE USE OF THE SOFTWARE INCLUDING, WITHOUT |
| 18 | LIMITATION, DAMAGES RESULTING FROM LOST OR CONTAMINATED DATA, LOST PROFITS OR |
| 19 | REVENUE, COMPUTER MALFUNCTION, OR FOR ANY SPECIAL, INCIDENTAL, CONSEQUENTIAL, |
| 20 | OR PUNITIVE DAMAGES, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES OR |
| 21 | SUCH DAMAGES ARE FORESEEABLE. |
| 22 | |
| 23 | --------------------------------------------------------------------------- |
Scott Michel | 3c8a4b2 | 2007-12-05 02:01:41 +0000 | [diff] [blame] | 24 | --WARNING--: |
Scott Michel | f9105d3 | 2007-12-03 23:09:49 +0000 | [diff] [blame] | 25 | --WARNING--: The CellSPU work is work-in-progress and "alpha" quality code. |
Scott Michel | 3c8a4b2 | 2007-12-05 02:01:41 +0000 | [diff] [blame] | 26 | --WARNING--: |
| 27 | |
| 28 | If you are brave enough to try this code or help to hack on it, be sure |
| 29 | to add 'spu' to configure's --enable-targets option, e.g.: |
| 30 | |
Scott Michel | 5a6f17b | 2008-01-30 02:55:46 +0000 | [diff] [blame] | 31 | ./configure <your_configure_flags_here> \ |
| 32 | --enable-targets=x86,x86_64,powerpc,spu |
Scott Michel | 3c8a4b2 | 2007-12-05 02:01:41 +0000 | [diff] [blame] | 33 | |
Scott Michel | f9105d3 | 2007-12-03 23:09:49 +0000 | [diff] [blame] | 34 | --------------------------------------------------------------------------- |
| 35 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 36 | TODO: |
Scott Michel | f9105d3 | 2007-12-03 23:09:49 +0000 | [diff] [blame] | 37 | * Finish branch instructions, branch prediction |
| 38 | |
| 39 | These instructions were started, but only insofar as to get llvm-gcc-4.2's |
| 40 | crtbegin.ll working (which doesn't.) |
| 41 | |
| 42 | * Double floating point support |
| 43 | |
| 44 | This was started. "What's missing?" to be filled in. |
| 45 | |
| 46 | * Intrinsics |
| 47 | |
| 48 | Lots of progress. "What's missing/incomplete?" to be filled in. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 49 | |
| 50 | ===-------------------------------------------------------------------------=== |