blob: 2b23c3d4c70609e69ebb14143df57503809b6555 (
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
33
34
35
36
37
38
39
|
/* ----------------------------------------------------------------------------
*
* (c) The GHC Team, 2014-2014
*
* Declarations for C fallback primitives implemented by 'ghc-prim' package.
*
* Do not #include this file directly: #include "Rts.h" instead.
*
* To understand the structure of the RTS headers, see the wiki:
* http://ghc.haskell.org/trac/ghc/wiki/Commentary/SourceTree/Includes
*
* -------------------------------------------------------------------------- */
#ifndef PRIM_H
#define PRIM_H
/* libraries/ghc-prim/cbits/bswap.c */
StgWord16 hs_bswap16(StgWord16 x);
StgWord32 hs_bswap32(StgWord32 x);
StgWord64 hs_bswap64(StgWord64 x);
/* TODO: longlong.c */
/* libraries/ghc-prim/cbits/popcnt.c */
StgWord hs_popcnt8(StgWord8 x);
StgWord hs_popcnt16(StgWord16 x);
StgWord hs_popcnt32(StgWord32 x);
StgWord hs_popcnt64(StgWord64 x);
#ifdef i386_HOST_ARCH
StgWord hs_popcnt(StgWord32 x);
#else
StgWord hs_popcnt(StgWord64 x);
#endif
/* libraries/ghc-prim/cbits/word2float.c */
StgFloat hs_word2float32(StgWord x);
StgDouble hs_word2float64(StgWord x);
#endif /* PRIM_H */
|