Ensure runhaskell is rebuild in stage2
[ghc-hetmet.git] / rts / Exception.cmm
1 /* -----------------------------------------------------------------------------
2  *
3  * (c) The GHC Team, 1998-2004
4  *
5  * Exception support
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 "RaiseAsync.h"
15
16 import ghczmprim_GHCziBool_True_closure;
17
18 /* -----------------------------------------------------------------------------
19    Exception Primitives
20
21    A thread can request that asynchronous exceptions not be delivered
22    ("blocked") for the duration of an I/O computation.  The primitive
23    
24         blockAsyncExceptions# :: IO a -> IO a
25
26    is used for this purpose.  During a blocked section, asynchronous
27    exceptions may be unblocked again temporarily:
28
29         unblockAsyncExceptions# :: IO a -> IO a
30
31    Furthermore, asynchronous exceptions are blocked automatically during
32    the execution of an exception handler.  Both of these primitives
33    leave a continuation on the stack which reverts to the previous
34    state (blocked or unblocked) on exit.
35
36    A thread which wants to raise an exception in another thread (using
37    killThread#) must block until the target thread is ready to receive
38    it.  The action of unblocking exceptions in a thread will release all
39    the threads waiting to deliver exceptions to that thread.
40
41    NB. there's a bug in here.  If a thread is inside an
42    unsafePerformIO, and inside blockAsyncExceptions# (there is an
43    unblockAsyncExceptions_ret on the stack), and it is blocked in an
44    interruptible operation, and it receives an exception, then the
45    unsafePerformIO thunk will be updated with a stack object
46    containing the unblockAsyncExceptions_ret frame.  Later, when
47    someone else evaluates this thunk, the blocked exception state is
48    not restored.
49
50    -------------------------------------------------------------------------- */
51
52 INFO_TABLE_RET( stg_unblockAsyncExceptionszh_ret, RET_SMALL )
53 {
54     CInt r;
55
56     StgTSO_flags(CurrentTSO) = StgTSO_flags(CurrentTSO) & 
57         ~(TSO_BLOCKEX::I32|TSO_INTERRUPTIBLE::I32);
58
59     /* Eagerly raise a blocked exception, if there is one */
60     if (StgTSO_blocked_exceptions(CurrentTSO) != END_TSO_QUEUE) {
61         /* 
62          * We have to be very careful here, as in killThread#, since
63          * we are about to raise an async exception in the current
64          * thread, which might result in the thread being killed.
65          */
66
67 #ifndef REG_R1
68         /*
69          * raiseAsync assumes that the stack is in ThreadRunGHC state,
70          * i.e. with a return address on the top.  In unreg mode, the
71          * return value for IO is on top of the return address, so we
72          * need to make a small adjustment here.
73          */
74         Sp_adj(1);
75 #endif
76         SAVE_THREAD_STATE();
77         (r) = foreign "C" maybePerformBlockedException (MyCapability() "ptr", 
78                                                       CurrentTSO "ptr") [R1];
79
80         if (r != 0::CInt) {
81             if (StgTSO_what_next(CurrentTSO) == ThreadKilled::I16) {
82                 jump stg_threadFinished;
83             } else {
84                 LOAD_THREAD_STATE();
85                 ASSERT(StgTSO_what_next(CurrentTSO) == ThreadRunGHC::I16);
86                 jump %ENTRY_CODE(Sp(0));
87             }
88         }
89 #ifndef REG_R1
90         /* 
91          * Readjust stack in unregisterised mode if we didn't raise an
92          * exception, see above
93          */
94         else {
95             Sp_adj(-1);
96         }
97 #endif
98     }
99
100 #ifdef REG_R1
101     Sp_adj(1);
102     jump %ENTRY_CODE(Sp(0));
103 #else
104     Sp(1) = Sp(0);
105     Sp_adj(1);
106     jump %ENTRY_CODE(Sp(1));
107 #endif
108 }
109
110 INFO_TABLE_RET( stg_blockAsyncExceptionszh_ret, RET_SMALL )
111 {
112     StgTSO_flags(CurrentTSO) = 
113         StgTSO_flags(CurrentTSO) | TSO_BLOCKEX::I32 | TSO_INTERRUPTIBLE::I32;
114
115 #ifdef REG_R1
116     Sp_adj(1);
117     jump %ENTRY_CODE(Sp(0));
118 #else
119     Sp(1) = Sp(0);
120     Sp_adj(1);
121     jump %ENTRY_CODE(Sp(1));
122 #endif
123 }
124
125 blockAsyncExceptionszh_fast
126 {
127     /* Args: R1 :: IO a */
128     STK_CHK_GEN( WDS(2)/* worst case */, R1_PTR, blockAsyncExceptionszh_fast);
129
130     if ((TO_W_(StgTSO_flags(CurrentTSO)) & TSO_BLOCKEX) == 0) {
131         
132         StgTSO_flags(CurrentTSO) = 
133            StgTSO_flags(CurrentTSO) | TSO_BLOCKEX::I32 | TSO_INTERRUPTIBLE::I32;
134
135         /* avoid growing the stack unnecessarily */
136         if (Sp(0) == stg_blockAsyncExceptionszh_ret_info) {
137             Sp_adj(1);
138         } else {
139             Sp_adj(-1);
140             Sp(0) = stg_unblockAsyncExceptionszh_ret_info;
141         }
142     }
143     TICK_UNKNOWN_CALL();
144     TICK_SLOW_CALL_v();
145     jump stg_ap_v_fast;
146 }
147
148 unblockAsyncExceptionszh_fast
149 {
150     CInt r;
151
152     /* Args: R1 :: IO a */
153     STK_CHK_GEN( WDS(2), R1_PTR, unblockAsyncExceptionszh_fast);
154
155     if ((TO_W_(StgTSO_flags(CurrentTSO)) & TSO_BLOCKEX) != 0) {
156
157         StgTSO_flags(CurrentTSO) = StgTSO_flags(CurrentTSO) & 
158            ~(TSO_BLOCKEX::I32|TSO_INTERRUPTIBLE::I32);
159
160         /* Eagerly raise a blocked exception, if there is one */
161         if (StgTSO_blocked_exceptions(CurrentTSO) != END_TSO_QUEUE) {
162             /* 
163              * We have to be very careful here, as in killThread#, since
164              * we are about to raise an async exception in the current
165              * thread, which might result in the thread being killed.
166              */
167             SAVE_THREAD_STATE();
168             (r) = foreign "C" maybePerformBlockedException (MyCapability() "ptr", 
169                                                       CurrentTSO "ptr") [R1];
170
171             if (r != 0::CInt) {
172                 if (StgTSO_what_next(CurrentTSO) == ThreadKilled::I16) {
173                     jump stg_threadFinished;
174                 } else {
175                     LOAD_THREAD_STATE();
176                     ASSERT(StgTSO_what_next(CurrentTSO) == ThreadRunGHC::I16);
177                     jump %ENTRY_CODE(Sp(0));
178                 }
179             }
180         }
181
182         /* avoid growing the stack unnecessarily */
183         if (Sp(0) == stg_unblockAsyncExceptionszh_ret_info) {
184             Sp_adj(1);
185         } else {
186             Sp_adj(-1);
187             Sp(0) = stg_blockAsyncExceptionszh_ret_info;
188         }
189     }
190     TICK_UNKNOWN_CALL();
191     TICK_SLOW_CALL_v();
192     jump stg_ap_v_fast;
193 }
194
195
196 killThreadzh_fast
197 {
198     /* args: R1 = TSO to kill, R2 = Exception */
199
200     W_ why_blocked;
201     W_ target;
202     W_ exception;
203     
204     target = R1;
205     exception = R2;
206     
207     STK_CHK_GEN( WDS(3), R1_PTR & R2_PTR, killThreadzh_fast);
208
209     /* 
210      * We might have killed ourselves.  In which case, better be *very*
211      * careful.  If the exception killed us, then return to the scheduler.
212      * If the exception went to a catch frame, we'll just continue from
213      * the handler.
214      */
215   loop:
216     if (StgTSO_what_next(target) == ThreadRelocated::I16) {
217         target = StgTSO_link(target);
218         goto loop;
219     }
220     if (target == CurrentTSO) {
221         SAVE_THREAD_STATE();
222         /* ToDo: what if the current thread is blocking exceptions? */
223         foreign "C" throwToSingleThreaded(MyCapability() "ptr", 
224                                           target "ptr", exception "ptr")[R1,R2];
225         if (StgTSO_what_next(CurrentTSO) == ThreadKilled::I16) {
226             jump stg_threadFinished;
227         } else {
228             LOAD_THREAD_STATE();
229             ASSERT(StgTSO_what_next(CurrentTSO) == ThreadRunGHC::I16);
230             jump %ENTRY_CODE(Sp(0));
231         }
232     } else {
233         W_ out;
234         W_ retcode;
235         out = BaseReg + OFFSET_StgRegTable_rmp_tmp_w;
236         
237         (retcode) = foreign "C" throwTo(MyCapability() "ptr",
238                                       CurrentTSO "ptr",
239                                       target "ptr",
240                                       exception "ptr",
241                                       out "ptr") [R1,R2];
242         
243         switch [THROWTO_SUCCESS .. THROWTO_BLOCKED] (retcode) {
244
245         case THROWTO_SUCCESS: {
246             jump %ENTRY_CODE(Sp(0));
247         }
248
249         case THROWTO_BLOCKED: {
250             R3 = W_[out];
251             // we must block, and call throwToReleaseTarget() before returning
252             jump stg_block_throwto;
253         }
254         }
255     }
256 }
257
258 /* -----------------------------------------------------------------------------
259    Catch frames
260    -------------------------------------------------------------------------- */
261
262 #ifdef REG_R1
263 #define SP_OFF 0
264 #else
265 #define SP_OFF 1
266 #endif
267
268 /* Catch frames are very similar to update frames, but when entering
269  * one we just pop the frame off the stack and perform the correct
270  * kind of return to the activation record underneath us on the stack.
271  */
272
273 INFO_TABLE_RET(stg_catch_frame, CATCH_FRAME,
274 #if defined(PROFILING)
275   W_ unused1, W_ unused2,
276 #endif
277   W_ unused3, "ptr" W_ unused4)
278 #ifdef REG_R1
279    {
280       Sp = Sp + SIZEOF_StgCatchFrame;
281       jump %ENTRY_CODE(Sp(SP_OFF));
282    }
283 #else
284    {
285       W_ rval;
286       rval = Sp(0);
287       Sp = Sp + SIZEOF_StgCatchFrame;
288       Sp(0) = rval;
289       jump %ENTRY_CODE(Sp(SP_OFF));
290    }
291 #endif
292
293 /* -----------------------------------------------------------------------------
294  * The catch infotable
295  *
296  * This should be exactly the same as would be generated by this STG code
297  *
298  * catch = {x,h} \n {} -> catch#{x,h}
299  *
300  * It is used in deleteThread when reverting blackholes.
301  * -------------------------------------------------------------------------- */
302
303 INFO_TABLE(stg_catch,2,0,FUN,"catch","catch")
304 {
305   R2 = StgClosure_payload(R1,1); /* h */
306   R1 = StgClosure_payload(R1,0); /* x */
307   jump catchzh_fast;
308 }
309
310 catchzh_fast
311 {
312     /* args: R1 = m :: IO a, R2 = handler :: Exception -> IO a */
313     STK_CHK_GEN(SIZEOF_StgCatchFrame + WDS(1), R1_PTR & R2_PTR, catchzh_fast);
314   
315     /* Set up the catch frame */
316     Sp = Sp - SIZEOF_StgCatchFrame;
317     SET_HDR(Sp,stg_catch_frame_info,W_[CCCS]);
318     
319     StgCatchFrame_handler(Sp) = R2;
320     StgCatchFrame_exceptions_blocked(Sp) = TO_W_(StgTSO_flags(CurrentTSO)) & TSO_BLOCKEX;
321     TICK_CATCHF_PUSHED();
322
323     /* Apply R1 to the realworld token */
324     TICK_UNKNOWN_CALL();
325     TICK_SLOW_CALL_v();
326     jump stg_ap_v_fast;
327 }
328
329 /* -----------------------------------------------------------------------------
330  * The raise infotable
331  * 
332  * This should be exactly the same as would be generated by this STG code
333  *
334  *   raise = {err} \n {} -> raise#{err}
335  *
336  * It is used in raisezh_fast to update thunks on the update list
337  * -------------------------------------------------------------------------- */
338
339 INFO_TABLE(stg_raise,1,0,THUNK_1_0,"raise","raise")
340 {
341   R1 = StgThunk_payload(R1,0);
342   jump raisezh_fast;
343 }
344
345 section "data" {
346   no_break_on_exception: W_[1];
347 }
348
349 INFO_TABLE_RET(stg_raise_ret, RET_SMALL, "ptr" W_ arg1)
350 {
351   R1 = Sp(1);
352   Sp = Sp + WDS(2);
353   W_[no_break_on_exception] = 1;  
354   jump raisezh_fast;
355 }
356
357 raisezh_fast
358 {
359     W_ handler;
360     W_ frame_type;
361     W_ exception;
362     /* args : R1 :: Exception */
363
364    exception = R1;
365
366 #if defined(PROFILING)
367     /* Debugging tool: on raising an  exception, show where we are. */
368
369     /* ToDo: currently this is a hack.  Would be much better if
370      * the info was only displayed for an *uncaught* exception.
371      */
372     if (RtsFlags_ProfFlags_showCCSOnException(RtsFlags) != 0::I32) {
373       foreign "C" fprintCCS_stderr(W_[CCCS] "ptr") [];
374     }
375 #endif
376     
377 retry_pop_stack:
378     StgTSO_sp(CurrentTSO) = Sp;
379     (frame_type) = foreign "C" raiseExceptionHelper(BaseReg "ptr", CurrentTSO "ptr", exception "ptr") [];
380     Sp = StgTSO_sp(CurrentTSO);
381     if (frame_type == ATOMICALLY_FRAME) {
382       /* The exception has reached the edge of a memory transaction.  Check that 
383        * the transaction is valid.  If not then perhaps the exception should
384        * not have been thrown: re-run the transaction.  "trec" will either be
385        * a top-level transaction running the atomic block, or a nested 
386        * transaction running an invariant check.  In the latter case we
387        * abort and de-allocate the top-level transaction that encloses it
388        * as well (we could just abandon its transaction record, but this makes
389        * sure it's marked as aborted and available for re-use). */
390       W_ trec, outer;
391       W_ r;
392       trec = StgTSO_trec(CurrentTSO);
393       (r) = foreign "C" stmValidateNestOfTransactions(trec "ptr") [];
394       ("ptr" outer) = foreign "C" stmGetEnclosingTRec(trec "ptr") [];
395       foreign "C" stmAbortTransaction(MyCapability() "ptr", trec "ptr") [];
396       foreign "C" stmFreeAbortedTRec(MyCapability() "ptr", trec "ptr") [];
397
398       if (outer != NO_TREC) {
399         foreign "C" stmAbortTransaction(MyCapability() "ptr", outer "ptr") [];
400         foreign "C" stmFreeAbortedTRec(MyCapability() "ptr", outer "ptr") [];
401       }
402
403       StgTSO_trec(CurrentTSO) = NO_TREC;
404       if (r != 0) {
405         // Transaction was valid: continue searching for a catch frame
406         Sp = Sp + SIZEOF_StgAtomicallyFrame;
407         goto retry_pop_stack;
408       } else {
409         // Transaction was not valid: we retry the exception (otherwise continue
410         // with a further call to raiseExceptionHelper)
411         ("ptr" trec) = foreign "C" stmStartTransaction(MyCapability() "ptr", NO_TREC "ptr") [];
412         StgTSO_trec(CurrentTSO) = trec;
413         R1 = StgAtomicallyFrame_code(Sp);
414         jump stg_ap_v_fast;
415       }          
416     }
417
418     // After stripping the stack, see whether we should break here for
419     // GHCi (c.f. the -fbreak-on-exception flag).  We do this after
420     // stripping the stack for a reason: we'll be inspecting values in
421     // GHCi, and it helps if all the thunks under evaluation have
422     // already been updated with the exception, rather than being left
423     // as blackholes.
424     if (W_[no_break_on_exception] != 0) {
425         W_[no_break_on_exception] = 0;
426     } else {
427         if (TO_W_(CInt[rts_stop_on_exception]) != 0) {
428             W_ ioAction;
429             // we don't want any further exceptions to be caught,
430             // until GHCi is ready to handle them.  This prevents
431             // deadlock if an exception is raised in InteractiveUI,
432             // for exmplae.  Perhaps the stop_on_exception flag should
433             // be per-thread.
434             W_[rts_stop_on_exception] = 0;
435             ("ptr" ioAction) = foreign "C" deRefStablePtr (W_[rts_breakpoint_io_action] "ptr") [];
436             Sp = Sp - WDS(7);
437             Sp(6) = exception;
438             Sp(5) = stg_raise_ret_info;
439             Sp(4) = stg_noforceIO_info;    // required for unregisterised
440             Sp(3) = exception;             // the AP_STACK
441             Sp(2) = ghczmprim_GHCziBool_True_closure; // dummy breakpoint info
442             Sp(1) = ghczmprim_GHCziBool_True_closure; // True <=> a breakpoint
443             R1 = ioAction;
444             jump RET_LBL(stg_ap_pppv);
445         }
446     }
447
448     if (frame_type == STOP_FRAME) {
449         /*
450          * We've stripped the entire stack, the thread is now dead.
451          * We will leave the stack in a GC'able state, see the stg_stop_thread
452          * entry code in StgStartup.cmm.
453          */
454         Sp = CurrentTSO + TSO_OFFSET_StgTSO_stack 
455                 + WDS(TO_W_(StgTSO_stack_size(CurrentTSO))) - WDS(2);
456         Sp(1) = exception;      /* save the exception */
457         Sp(0) = stg_enter_info; /* so that GC can traverse this stack */
458         StgTSO_what_next(CurrentTSO) = ThreadKilled::I16;
459         SAVE_THREAD_STATE();    /* inline! */
460
461         jump stg_threadFinished;
462     }
463
464     /* Ok, Sp points to the enclosing CATCH_FRAME or CATCH_STM_FRAME.  Pop everything
465      * down to and including this frame, update Su, push R1, and enter the handler.
466      */
467     if (frame_type == CATCH_FRAME) {
468       handler = StgCatchFrame_handler(Sp);
469     } else {
470       handler = StgCatchSTMFrame_handler(Sp);
471     }
472
473     /* Restore the blocked/unblocked state for asynchronous exceptions
474      * at the CATCH_FRAME.  
475      *
476      * If exceptions were unblocked, arrange that they are unblocked
477      * again after executing the handler by pushing an
478      * unblockAsyncExceptions_ret stack frame.
479      *
480      * If we've reached an STM catch frame then roll back the nested
481      * transaction we were using.
482      */
483     W_ frame;
484     frame = Sp;
485     if (frame_type == CATCH_FRAME) {
486       Sp = Sp + SIZEOF_StgCatchFrame;
487       if (StgCatchFrame_exceptions_blocked(frame) == 0) {
488         Sp_adj(-1);
489         Sp(0) = stg_unblockAsyncExceptionszh_ret_info;
490       }
491     } else {
492       W_ trec, outer;
493       trec = StgTSO_trec(CurrentTSO);
494       ("ptr" outer) = foreign "C" stmGetEnclosingTRec(trec "ptr") [];
495       foreign "C" stmAbortTransaction(MyCapability() "ptr", trec "ptr") [];
496       foreign "C" stmFreeAbortedTRec(MyCapability() "ptr", trec "ptr") [];
497       StgTSO_trec(CurrentTSO) = outer;
498       Sp = Sp + SIZEOF_StgCatchSTMFrame;
499     }
500
501     /* Ensure that async excpetions are blocked when running the handler.
502     */
503     StgTSO_flags(CurrentTSO) = 
504         StgTSO_flags(CurrentTSO) | TSO_BLOCKEX::I32 | TSO_INTERRUPTIBLE::I32;
505
506     /* Call the handler, passing the exception value and a realworld
507      * token as arguments.
508      */
509     Sp_adj(-1);
510     Sp(0) = exception;
511     R1 = handler;
512     Sp_adj(-1);
513     TICK_UNKNOWN_CALL();
514     TICK_SLOW_CALL_pv();
515     jump RET_LBL(stg_ap_pv);
516 }
517
518 raiseIOzh_fast
519 {
520   /* Args :: R1 :: Exception */
521   jump raisezh_fast;
522 }