summaryrefslogtreecommitdiff
path: root/includes/rts/storage/FunTypes.h
blob: 0ba65bb79dd63be03ae31bd169fa875fcd35078a (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
/* -----------------------------------------------------------------------------
 *
 * (c) The GHC Team, 2002
 *
 * Things for functions.
 *
 * ---------------------------------------------------------------------------*/

#ifndef RTS_STORAGE_FUNTYPES_H
#define RTS_STORAGE_FUNTYPES_H

/* generic - function comes with a small bitmap */
#define ARG_GEN      0   

/* generic - function comes with a large bitmap */
#define ARG_GEN_BIG  1

/* BCO - function is really a BCO */
#define ARG_BCO      2

/*
 * Specialised function types: bitmaps and calling sequences
 * for these functions are pre-generated: see ghc/utils/genapply and
 * generated code in ghc/rts/AutoApply.cmm.
 *
 *  NOTE: other places to change if you change this table:
 *       - utils/genapply/GenApply.hs: stackApplyTypes
 *       - compiler/codeGen/CgCallConv.lhs: stdPattern
 */
#define ARG_NONE     3 
#define ARG_N        4  
#define ARG_P        5 
#define ARG_F        6 
#define ARG_D        7 
#define ARG_L        8 
#define ARG_V16      9 
#define ARG_NN       10 
#define ARG_NP       11
#define ARG_PN       12
#define ARG_PP       13
#define ARG_NNN      14
#define ARG_NNP      15
#define ARG_NPN      16
#define ARG_NPP      17
#define ARG_PNN      18
#define ARG_PNP      19
#define ARG_PPN      20
#define ARG_PPP      21
#define ARG_PPPP     22
#define ARG_PPPPP    23
#define ARG_PPPPPP   24
#define ARG_PPPPPPP  25
#define ARG_PPPPPPPP 26

#endif /* RTS_STORAGE_FUNTYPES_H */