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