Commit 0a6409d6 by Andrew Pinski Committed by Andrew Pinski

ppu_intrinsics.h: New file.

2007-08-30  Andrew Pinski  <andrew_pinski@playstation.sony.com>

        * config/rs6000/ppu_intrinsics.h: New file.
        * config.gcc (powerpc*-*-* <extra_headers>): Install
        ppu_intrinsics.h.

2007-08-30  Andrew Pinski  <andrew_pinski@playstation.sony.com>

        * gcc.target/powerpc/ppu-intrinsics.c: New testcase.

From-SVN: r127934
parent 67c02083
2007-08-30 Andrew Pinski <andrew_pinski@playstation.sony.com>
* config/rs6000/ppu_intrinsics.h: New file.
* config.gcc (powerpc*-*-* <extra_headers>): Install
ppu_intrinsics.h.
2007-08-30 Kenneth Zadeck <zadeck@naturalbridge.com>
* cfg.c (dump_flow_info): Change to also print entry and exit
......
......@@ -312,7 +312,7 @@ mips*-*-*)
;;
powerpc*-*-*)
cpu_type=rs6000
extra_headers="ppc-asm.h altivec.h spe.h"
extra_headers="ppc-asm.h altivec.h spe.h ppu_intrinsics.h"
need_64bit_hwint=yes
case x$with_cpu in
xpowerpc64|xdefault64|x6[23]0|x970|xG5|xpower[3456]|xpower6x|xrs64a)
......
2007-08-30 Andrew Pinski <andrew_pinski@playstation.sony.com>
* gcc.target/powerpc/ppu-intrinsics.c: New testcase.
2007-08-30 Jakub Jelinek <jakub@redhat.com>
* gcc.dg/inline-24.c: New test.
/* { dg-do link { target *-*-linux* } } */
/* { dg-options "-W -Wall -mcpu=cell" } */
/* Test some PPU intrinsics from <ppu_intrinsics.h>. */
#include <ppu_intrinsics.h>
int main ()
{
double d, d1, d2;
float f, f1, f2;
unsigned long long ull, a, b;
long long ll;
int i;
#ifdef __powerpc64__
ull = __rldcl (a, b, 3);
ull = __rldcr (a, b, 3);
ull = __rldic (a, 3, 4);
ull = __rldicl (a, 4, 5);
ull = __rldicr (a, 2, 3);
ull = __rldimi (a, b, 4, 6);
#endif
ull = __rlwimi (a, b, 6, 9, 12);
ull = __rlwnm (a, b, 3, 5);
d = __fmul (d1, d2);
f = __fmuls (f1, f2);
f = __frsp (f);
d = __fcfid (ll);
d = __frsqrte (d1);
ll = __fctid (d);
ll = __fctidz (d);
i = __fctiw (d);
i = __fctiwz (d);
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment