4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-02-04 05:20:26 +08:00
2000-02-17 19:39:52 +00:00

33 lines
571 B
C

/* Various stuff for the sparclet processor.
This file is in the public domain. */
#ifndef _MACHINE_SPARCLET_H_
#define _MACHINE_SPARCLET_H_
#ifdef __sparclet__
/* sparclet scan instruction */
extern __inline__ int
scan (int a, int b)
{
int res;
__asm__ ("scan %1,%2,%0" : "=r" (res) : "r" (a), "r" (b));
return res;
}
/* sparclet shuffle instruction */
extern __inline__ int
shuffle (int a, int b)
{
int res;
__asm__ ("shuffle %1,%2,%0" : "=r" (res) : "r" (a), "r" (b));
return res;
}
#endif /* __sparclet__ */
#endif /* _MACHINE_SPARCLET_H_ */