Massive patch for the first months work adding System FC to GHC #35
[ghc-hetmet.git] / rts / Updates.cmm
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 1998-2004
4  *
5  * Code to perform updates.
6  *
7  * This file is written in a subset of C--, extended with various
8  * features specific to GHC.  It is compiled by GHC directly.  For the
9  * syntax of .cmm files, see the parser in ghc/compiler/cmm/CmmParse.y.
10  *
11  * ---------------------------------------------------------------------------*/
12
13 #include "Cmm.h"
14 #include "Updates.h"
15 #include "StgLdvProf.h"
16
17 /*
18   The update frame return address must be *polymorphic*, that means
19   we have to cope with both vectored and non-vectored returns.  This
20   is done by putting the return vector right before the info table, and
21   having a standard direct return address after the info table (pointed
22   to by the return address itself, as usual).
23
24   Each entry in the vector table points to a specialised entry code fragment
25   that knows how to return after doing the update.  It would be possible to
26   use a single generic piece of code that simply entered the return value
27   to return, but it's quicker this way.  The direct return code of course
28   just does another direct return when it's finished.
29 */
30
31 /* on entry to the update code
32    (1) R1 points to the closure being returned
33    (2) Sp points to the update frame
34 */
35
36 /* The update fragment has been tuned so as to generate good
37    code with gcc, which accounts for some of the strangeness in the
38    way it is written.  
39
40    In particular, the JMP_(ret) bit is passed down and pinned on the
41    end of each branch (there end up being two major branches in the
42    code), since we don't mind duplicating this jump.
43 */
44
45 #define UPD_FRAME_ENTRY_TEMPLATE(label,ind_info,ret)                    \
46         label                                                           \
47         {                                                               \
48           W_ updatee;                                                   \
49                                                                         \
50           updatee = StgUpdateFrame_updatee(Sp);                         \
51                                                                         \
52           /* remove the update frame from the stack */                  \
53           Sp = Sp + SIZEOF_StgUpdateFrame;                              \
54                                                                         \
55           /* ToDo: it might be a PAP, so we should check... */          \
56           TICK_UPD_CON_IN_NEW(sizeW_fromITBL(%GET_STD_INFO(updatee)));  \
57                                                                         \
58           UPD_SPEC_IND(updatee, ind_info, R1, jump (ret));              \
59         }
60
61 UPD_FRAME_ENTRY_TEMPLATE(stg_upd_frame_0_ret,stg_IND_0_info,%RET_VEC(Sp(0),0))
62 UPD_FRAME_ENTRY_TEMPLATE(stg_upd_frame_1_ret,stg_IND_1_info,%RET_VEC(Sp(0),1))
63 UPD_FRAME_ENTRY_TEMPLATE(stg_upd_frame_2_ret,stg_IND_2_info,%RET_VEC(Sp(0),2))
64 UPD_FRAME_ENTRY_TEMPLATE(stg_upd_frame_3_ret,stg_IND_3_info,%RET_VEC(Sp(0),3))
65 UPD_FRAME_ENTRY_TEMPLATE(stg_upd_frame_4_ret,stg_IND_4_info,%RET_VEC(Sp(0),4))
66 UPD_FRAME_ENTRY_TEMPLATE(stg_upd_frame_5_ret,stg_IND_5_info,%RET_VEC(Sp(0),5))
67 UPD_FRAME_ENTRY_TEMPLATE(stg_upd_frame_6_ret,stg_IND_6_info,%RET_VEC(Sp(0),6))
68 UPD_FRAME_ENTRY_TEMPLATE(stg_upd_frame_7_ret,stg_IND_7_info,%RET_VEC(Sp(0),7))
69
70 #if MAX_VECTORED_RTN > 8
71 #error MAX_VECTORED_RTN has changed: please modify stg_upd_frame too.
72 #endif
73
74 /*
75   Make sure this table is big enough to handle the maximum vectored
76   return size!
77   */
78
79 #if defined(PROFILING)
80 #define UPD_FRAME_BITMAP 3
81 #define UPD_FRAME_WORDS  3
82 #else
83 #define UPD_FRAME_BITMAP 0
84 #define UPD_FRAME_WORDS  1
85 #endif
86
87 /* this bitmap indicates that the first word of an update frame is a
88  * non-pointer - this is the update frame link.  (for profiling,
89  * there's a cost-centre-stack in there too).
90  */
91
92 INFO_TABLE_RET( stg_upd_frame, 
93             UPD_FRAME_WORDS, UPD_FRAME_BITMAP, UPDATE_FRAME,
94             stg_upd_frame_0_ret,
95             stg_upd_frame_1_ret,
96             stg_upd_frame_2_ret,
97             stg_upd_frame_3_ret,
98             stg_upd_frame_4_ret,
99             stg_upd_frame_5_ret,
100             stg_upd_frame_6_ret,
101             stg_upd_frame_7_ret
102             )
103 UPD_FRAME_ENTRY_TEMPLATE(,stg_IND_direct_info,%ENTRY_CODE(Sp(0)))
104
105
106 INFO_TABLE_RET( stg_marked_upd_frame, 
107             UPD_FRAME_WORDS, UPD_FRAME_BITMAP, UPDATE_FRAME,
108             stg_upd_frame_0_ret,
109             stg_upd_frame_1_ret,
110             stg_upd_frame_2_ret,
111             stg_upd_frame_3_ret,
112             stg_upd_frame_4_ret,
113             stg_upd_frame_5_ret,
114             stg_upd_frame_6_ret,
115             stg_upd_frame_7_ret
116             )
117 UPD_FRAME_ENTRY_TEMPLATE(,stg_IND_direct_info,%ENTRY_CODE(Sp(0)))
118
119 /*-----------------------------------------------------------------------------
120   Seq frames 
121
122   We don't have a primitive seq# operator: it is just a 'case'
123   expression whose scrutinee has either a polymorphic or function type
124   (constructor types can be handled by normal 'case' expressions).
125
126   To handle a polymorphic/function typed seq, we push a SEQ frame on
127   the stack.  This is a polymorphic activation record that just pops
128   itself and returns (in a non-vectored way) when entered.  The
129   purpose of the SEQ frame is to avoid having to make a polymorphic return
130   point for each polymorphic case expression.  
131
132   Another way of looking at it: the SEQ frame turns a vectored return
133   into a direct one.
134   -------------------------------------------------------------------------- */
135
136 #if MAX_VECTORED_RTN > 8
137 #error MAX_VECTORED_RTN has changed: please modify stg_seq_frame too.
138 #endif
139
140 INFO_TABLE_RET( stg_seq_frame, 0/* words */, 0/* bitmap */, RET_SMALL,
141         RET_LBL(stg_seq_frame), /* 0 */
142         RET_LBL(stg_seq_frame), /* 1 */
143         RET_LBL(stg_seq_frame), /* 2 */
144         RET_LBL(stg_seq_frame), /* 3 */
145         RET_LBL(stg_seq_frame), /* 4 */
146         RET_LBL(stg_seq_frame), /* 5 */
147         RET_LBL(stg_seq_frame), /* 6 */
148         RET_LBL(stg_seq_frame)  /* 7 */
149         )
150 {
151    Sp_adj(1);
152    jump %ENTRY_CODE(Sp(0));
153 }