Minor updates:
authorScott Michel <scottm@aero.org>
Wed, 5 Dec 2007 21:23:16 +0000 (21:23 +0000)
committerScott Michel <scottm@aero.org>
Wed, 5 Dec 2007 21:23:16 +0000 (21:23 +0000)
- Fix typo in SPUCallingConv.td
- Credit myself for CellSPU work
- Add CellSPU to 'all' host target list

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44627 91177308-0d34-0410-b5e6-96231b3b80d8

CREDITS.TXT
autoconf/configure.ac
lib/Target/CellSPU/SPUCallingConv.td

index bf02b165ecdf3e33f6ce7daa9973f14b34f3e77b..c4e0bb7eff8c671885323dc22332505c37358238 100644 (file)
@@ -257,3 +257,7 @@ W: http://web.mac.com/bwendling/
 D: Darwin exception handling
 D: MMX & SSSE3 instructions
 D: SPEC2006 support
+
+N: Scott Michel
+E: scottm@aero.org
+D: Added STI Cell SPU backend.
index 9a183d4fcfed6ad3296f0c0b50cf51c4872cb120..979e3a89865c84d4c58429765ed1ccf8c9d6f0bd 100644 (file)
@@ -363,8 +363,7 @@ AC_ARG_ENABLE([targets],AS_HELP_STRING([--enable-targets],
     [Build specific host targets: all,host-only,{target-name} (default=all)]),,
     enableval=all)
 case "$enableval" in
-  # Note: Add "CellSPU" to all when fully functional.
-  all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha IA64 ARM Mips" ;;
+  all) TARGETS_TO_BUILD="X86 Sparc PowerPC Alpha IA64 ARM Mips CellSPU" ;;
   host-only)
     case "$llvm_cv_target_arch" in
       x86)     TARGETS_TO_BUILD="X86" ;;
index 93a4000b858342cad8a5f155f6b6ff9dd5798f6e..47f8f3ca6149b119a299114d84bfddec0aec2f7c 100644 (file)
@@ -48,7 +48,6 @@ def CC_SPU : CallingConv<[
   // The first 12 Vector arguments are passed in altivec registers.
   CCIfType<[v16i8, v8i16, v4i32, v4f32],
               CCAssignToReg<[V2, V3, V4, V5, V6, V7, V8, V9, V10,V11,V12,V13]>>
- */
 /*
   // Integer/FP values get stored in stack slots that are 8 bytes in size and
   // 8-byte aligned if there are no more registers to hold them.
@@ -56,6 +55,6 @@ def CC_SPU : CallingConv<[
   
   // Vectors get 16-byte stack slots that are 16-byte aligned.
   CCIfType<[v16i8, v8i16, v4i32, v2i64, v4f32, v2f64],
-              CCAssignToStack<16, 16>>
+              CCAssignToStack<16, 16>>*/
 ]>;
  */