[project @ 1999-01-27 14:51:14 by simonpj]
[ghc-hetmet.git] / ghc / includes / Prelude.h
1 /* -----------------------------------------------------------------------------
2  * $Id: Prelude.h,v 1.4 1999/01/27 14:51:14 simonpj Exp $
3  *
4  * Prelude identifiers that we sometimes need to refer to in the RTS.
5  *
6  * ---------------------------------------------------------------------------*/
7
8 #ifndef PRELUDE_H
9 #define PRELUDE_H
10
11 #ifdef COMPILER
12 extern const StgClosure PrelBase_Z91Z93_static_closure;
13 extern const StgClosure PrelBase_Z40Z41_static_closure;
14 extern const StgClosure PrelBase_True_static_closure;
15 extern const StgClosure PrelBase_False_static_closure;
16 extern const StgClosure PrelMain_mainIO_closure;
17 extern const StgClosure PrelPack_unpackCString_closure;
18
19 extern const StgInfoTable PrelBase_Czh_static_info;
20 extern const StgInfoTable PrelBase_Izh_static_info;
21 extern const StgInfoTable PrelBase_Fzh_static_info;
22 extern const StgInfoTable PrelBase_Dzh_static_info;
23 extern const StgInfoTable PrelAddr_Azh_static_info;
24 extern const StgInfoTable PrelAddr_Wzh_static_info;
25 extern const StgInfoTable PrelBase_Czh_con_info;
26 extern const StgInfoTable PrelBase_Izh_con_info;
27 extern const StgInfoTable PrelBase_Fzh_con_info;
28 extern const StgInfoTable PrelBase_Dzh_con_info;
29 extern const StgInfoTable PrelAddr_Azh_con_info;
30 extern const StgInfoTable PrelAddr_Wzh_con_info;
31 extern const StgInfoTable PrelAddr_I64zh_con_info;
32 extern const StgInfoTable PrelAddr_W64zh_con_info;
33 extern const StgInfoTable PrelStable_StablePtr_static_info;
34 extern const StgInfoTable PrelStable_StablePtr_con_info;
35
36 /* Define canonical names so we can abstract away from the actual
37  * module these names are defined in.
38  */
39
40 #define Nil_closure           PrelBase_ZMZN_static_closure
41 #define Unit_closure          PrelBase_Z0T_static_closure
42 #define True_closure          PrelBase_True_static_closure
43 #define False_closure         PrelBase_False_static_closure
44 #define Czh_static_info       PrelBase_Czh_static_info
45 #define Izh_static_info       PrelBase_Izh_static_info
46 #define Fzh_static_info       PrelBase_Fzh_static_info
47 #define Dzh_static_info       PrelBase_Dzh_static_info
48 #define Azh_static_info       PrelAddr_Azh_static_info
49 #define Wzh_static_info       PrelAddr_Wzh_static_info
50 #define Czh_con_info          PrelBase_Czh_con_info
51 #define Izh_con_info          PrelBase_Izh_con_info
52 #define Fzh_con_info          PrelBase_Fzh_con_info
53 #define Dzh_con_info          PrelBase_Dzh_con_info
54 #define Azh_con_info          PrelAddr_Azh_con_info
55 #define Wzh_con_info          PrelAddr_Wzh_con_info
56 #define W64zh_con_info        PrelAddr_W64zh_con_info
57 #define I64zh_con_info        PrelAddr_I64zh_con_info
58 #define StablePtr_static_info PrelStable_StablePtr_static_info
59 #define StablePtr_con_info    PrelStable_StablePtr_con_info
60
61 #define mainIO_closure        PrelMain_mainIO_closure
62 #define unpackCString_closure PrelPack_unpackCString_closure
63
64 #else /* INTERPRETER, I guess */
65
66 extern const StgInfoTable Czh_con_info;
67 extern const StgInfoTable Izh_con_info;
68 extern const StgInfoTable I64zh_con_info;
69 extern const StgInfoTable Fzh_con_info;
70 extern const StgInfoTable Dzh_con_info;
71 extern const StgInfoTable Azh_con_info;
72 extern const StgInfoTable Wzh_con_info;
73 extern const StgInfoTable StablePtr_con_info;
74
75 extern const StgInfoTable Czh_static_info;
76 extern const StgInfoTable Izh_static_info;
77 extern const StgInfoTable I64zh_static_info;
78 extern const StgInfoTable Fzh_static_info;
79 extern const StgInfoTable Dzh_static_info;
80 extern const StgInfoTable Azh_static_info;
81 extern const StgInfoTable Wzh_static_info;
82 extern const StgInfoTable StablePtr_static_info;
83
84 #define W64zh_con_info        I64zh_con_info
85 #define W64zh_static_info     I64zh_con_info
86
87 #endif
88
89 #endif /* PRELUDE_H */