Welcome to mirror list, hosted at ThFree Co, Russian Federation.

sparclet.h « machine « sparc « machine « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 34a0e82ff0950ad263c72a9d55bd903e5f4a1726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* 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_ */