1 /* -----------------------------------------------------------------------------
3 * (c) The GHC Team, 1998-2004
5 * Code to perform updates.
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.
11 * ---------------------------------------------------------------------------*/
15 #include "StgLdvProf.h"
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).
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.
31 /* on entry to the update code
32 (1) R1 points to the closure being returned
33 (2) Sp points to the update frame
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
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.
45 #define UPD_FRAME_ENTRY_TEMPLATE(label,ind_info,ret) \
50 updatee = StgUpdateFrame_updatee(Sp); \
52 /* remove the update frame from the stack */ \
53 Sp = Sp + SIZEOF_StgUpdateFrame; \
55 /* ToDo: it might be a PAP, so we should check... */ \
56 TICK_UPD_CON_IN_NEW(sizeW_fromITBL(%GET_STD_INFO(updatee))); \
58 UPD_SPEC_IND(updatee, ind_info, R1, jump (ret)); \
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))
70 #if MAX_VECTORED_RTN > 8
71 #error MAX_VECTORED_RTN has changed: please modify stg_upd_frame too.
75 Make sure this table is big enough to handle the maximum vectored
79 #if defined(PROFILING)
80 #define UPD_FRAME_BITMAP 3
81 #define UPD_FRAME_WORDS 3
83 #define UPD_FRAME_BITMAP 0
84 #define UPD_FRAME_WORDS 1
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).
92 INFO_TABLE_RET( stg_upd_frame,
93 UPD_FRAME_WORDS, UPD_FRAME_BITMAP, UPDATE_FRAME,
103 UPD_FRAME_ENTRY_TEMPLATE(,stg_IND_direct_info,%ENTRY_CODE(Sp(0)))
106 INFO_TABLE_RET( stg_marked_upd_frame,
107 UPD_FRAME_WORDS, UPD_FRAME_BITMAP, UPDATE_FRAME,
117 UPD_FRAME_ENTRY_TEMPLATE(,stg_IND_direct_info,%ENTRY_CODE(Sp(0)))
119 /*-----------------------------------------------------------------------------
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).
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.
132 Another way of looking at it: the SEQ frame turns a vectored return
134 -------------------------------------------------------------------------- */
136 #if MAX_VECTORED_RTN > 8
137 #error MAX_VECTORED_RTN has changed: please modify stg_seq_frame too.
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 */
152 jump %ENTRY_CODE(Sp(0));