OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [gcc-4.5.1/] [gcc-4.5.1-or32-1.0rc2/] [gcc/] [testsuite/] [gcc.target/] [mips/] [dsp-ctrl.c] - Rev 384

Compare with Previous | Blame | View Log

/* { dg-do run } */
/* { dg-options "-O2 -mdsp -mgp32" } */
 
extern void abort (void);
extern void exit (int);
 
NOMIPS16 void __attribute__ ((noinline))
test1 (int i)
{
  __builtin_mips_wrdsp (i, 63);
}
 
NOMIPS16 void __attribute__ ((noinline))
test2 ()
{
  long long a = 0;
  __builtin_mips_extpdp (a, 3);
}
 
NOMIPS16 void __attribute__ ((noinline))
test3 (int i)
{
  long long a = 0;
  __builtin_mips_extpdp (a, i);
}
 
NOMIPS16 void __attribute__ ((noinline))
test4 ()
{
  long long a = 0;
  int i = 0;
  __builtin_mips_mthlip (a, i);
}
 
NOMIPS16 int
main ()
{
  int cntl;
 
  /* Test 1: wrdsp */
  __builtin_mips_wrdsp (0,63);
  test1 (63);
  cntl = __builtin_mips_rddsp (63);
  if (cntl != 63)
    abort ();
 
  /* Test 2: extpdp */
  __builtin_mips_wrdsp (63,63);
  test2 ();
  cntl = __builtin_mips_rddsp (63);
  if (cntl != 59)
    abort ();
 
  /* Test 3: extpdpv */
  __builtin_mips_wrdsp (63,63);
  test3 (10);
  cntl = __builtin_mips_rddsp (63);
  if (cntl != 52)
    abort ();
 
  /* Test 4: mthlip */
  __builtin_mips_wrdsp (8,63);
  test4 ();
  cntl = __builtin_mips_rddsp (63);
  if (cntl != 40)
    abort ();
 
  exit (0);
}
 

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.