vectoriser: fix warning
[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_GHCziTypes_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         maskAsyncExceptions# :: 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         unmaskAsyncExceptions# :: 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 maskAsyncExceptions# (there is an
43    unmaskAsyncExceptions_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 unmaskAsyncExceptions_ret frame.  Later, when
47    someone else evaluates this thunk, the blocked exception state is
48    not restored.
49
50    -------------------------------------------------------------------------- */
51
52
53 INFO_TABLE_RET(stg_unmaskAsyncExceptionszh_ret, RET_SMALL)
54 {
55     CInt r;
56
57     StgTSO_flags(CurrentTSO) = %lobits32(
58       TO_W_(StgTSO_flags(CurrentTSO)) & ~(TSO_BLOCKEX|TSO_INTERRUPTIBLE));
59
60     /* Eagerly raise a blocked exception, if there is one */
61     if (StgTSO_blocked_exceptions(CurrentTSO) != END_TSO_QUEUE) {
62
63         STK_CHK_GEN( WDS(2), R1_PTR, stg_unmaskAsyncExceptionszh_ret_info);
64         /* 
65          * We have to be very careful here, as in killThread#, since
66          * we are about to raise an async exception in the current
67          * thread, which might result in the thread being killed.
68          */
69         Sp_adj(-2);
70         Sp(1) = R1;
71         Sp(0) = stg_gc_unpt_r1_info;
72         SAVE_THREAD_STATE();
73         (r) = foreign "C" maybePerformBlockedException (MyCapability() "ptr", 
74                                                       CurrentTSO "ptr") [R1];
75
76         if (r != 0::CInt) {
77             if (StgTSO_what_next(CurrentTSO) == ThreadKilled::I16) {
78                 jump stg_threadFinished;
79             } else {
80                 LOAD_THREAD_STATE();
81                 ASSERT(StgTSO_what_next(CurrentTSO) == ThreadRunGHC::I16);
82                 jump %ENTRY_CODE(Sp(0));
83             }
84         }
85         else {
86             /*
87                the thread might have been removed from the
88                blocked_exception list by someone else in the meantime.
89                Just restore the stack pointer and continue.  
90             */   
91             Sp_adj(2);
92         }
93     }
94
95     Sp_adj(1);
96     jump %ENTRY_CODE(Sp(0));
97 }
98
99 INFO_TABLE_RET(stg_maskAsyncExceptionszh_ret, RET_SMALL)
100 {
101     StgTSO_flags(CurrentTSO) = 
102        %lobits32(
103          TO_W_(StgTSO_flags(CurrentTSO))
104           | TSO_BLOCKEX | TSO_INTERRUPTIBLE
105       );
106
107     Sp_adj(1);
108     jump %ENTRY_CODE(Sp(0));
109 }
110
111 INFO_TABLE_RET(stg_maskUninterruptiblezh_ret, RET_SMALL)
112 {
113     StgTSO_flags(CurrentTSO) = 
114        %lobits32(
115         (TO_W_(StgTSO_flags(CurrentTSO))
116           | TSO_BLOCKEX)
117           & ~TSO_INTERRUPTIBLE
118        );
119
120     Sp_adj(1);
121     jump %ENTRY_CODE(Sp(0));
122 }
123
124 stg_maskAsyncExceptionszh
125 {
126     /* Args: R1 :: IO a */
127     STK_CHK_GEN( WDS(1)/* worst case */, R1_PTR, stg_maskAsyncExceptionszh);
128
129     if ((TO_W_(StgTSO_flags(CurrentTSO)) & TSO_BLOCKEX) == 0) {
130         /* avoid growing the stack unnecessarily */
131         if (Sp(0) == stg_maskAsyncExceptionszh_ret_info) {
132             Sp_adj(1);
133         } else {
134             Sp_adj(-1);
135             Sp(0) = stg_unmaskAsyncExceptionszh_ret_info;
136         }
137     } else {
138         if ((TO_W_(StgTSO_flags(CurrentTSO)) & TSO_INTERRUPTIBLE) == 0) {
139             Sp_adj(-1);
140             Sp(0) = stg_maskUninterruptiblezh_ret_info;
141         }
142     }
143
144     StgTSO_flags(CurrentTSO) = %lobits32(
145         TO_W_(StgTSO_flags(CurrentTSO)) | TSO_BLOCKEX | TSO_INTERRUPTIBLE);
146
147     TICK_UNKNOWN_CALL();
148     TICK_SLOW_CALL_v();
149     jump stg_ap_v_fast;
150 }
151
152 stg_maskUninterruptiblezh
153 {
154     /* Args: R1 :: IO a */
155     STK_CHK_GEN( WDS(1)/* worst case */, R1_PTR, stg_maskAsyncExceptionszh);
156
157     if ((TO_W_(StgTSO_flags(CurrentTSO)) & TSO_BLOCKEX) == 0) {
158         /* avoid growing the stack unnecessarily */
159         if (Sp(0) == stg_maskUninterruptiblezh_ret_info) {
160             Sp_adj(1);
161         } else {
162             Sp_adj(-1);
163             Sp(0) = stg_unmaskAsyncExceptionszh_ret_info;
164         }
165     } else {
166         if ((TO_W_(StgTSO_flags(CurrentTSO)) & TSO_INTERRUPTIBLE) != 0) {
167             Sp_adj(-1);
168             Sp(0) = stg_maskAsyncExceptionszh_ret_info;
169         }
170     }
171
172     StgTSO_flags(CurrentTSO) = %lobits32(
173         (TO_W_(StgTSO_flags(CurrentTSO)) | TSO_BLOCKEX) & ~TSO_INTERRUPTIBLE);
174
175     TICK_UNKNOWN_CALL();
176     TICK_SLOW_CALL_v();
177     jump stg_ap_v_fast;
178 }
179
180 stg_unmaskAsyncExceptionszh
181 {
182     CInt r;
183     W_ level;
184
185     /* Args: R1 :: IO a */
186     STK_CHK_GEN( WDS(4), R1_PTR, stg_unmaskAsyncExceptionszh);
187     /* 4 words: one for the unblock frame, 3 for setting up the
188      * stack to call maybePerformBlockedException() below.
189      */
190
191     /* If exceptions are already unblocked, there's nothing to do */
192     if ((TO_W_(StgTSO_flags(CurrentTSO)) & TSO_BLOCKEX) != 0) {
193
194         /* avoid growing the stack unnecessarily */
195         if (Sp(0) == stg_unmaskAsyncExceptionszh_ret_info) {
196             Sp_adj(1);
197         } else {
198             Sp_adj(-1);
199             if ((TO_W_(StgTSO_flags(CurrentTSO)) & TSO_INTERRUPTIBLE) != 0) {
200                 Sp(0) = stg_maskAsyncExceptionszh_ret_info;
201             } else {
202                 Sp(0) = stg_maskUninterruptiblezh_ret_info;
203             }
204         }
205
206         StgTSO_flags(CurrentTSO) = %lobits32(
207             TO_W_(StgTSO_flags(CurrentTSO)) & ~(TSO_BLOCKEX|TSO_INTERRUPTIBLE));
208
209         /* Eagerly raise a blocked exception, if there is one */
210         if (StgTSO_blocked_exceptions(CurrentTSO) != END_TSO_QUEUE) {
211             /* 
212              * We have to be very careful here, as in killThread#, since
213              * we are about to raise an async exception in the current
214              * thread, which might result in the thread being killed.
215              *
216              * Now, if we are to raise an exception in the current
217              * thread, there might be an update frame above us on the
218              * stack due to unsafePerformIO.  Hence, the stack must
219              * make sense, because it is about to be snapshotted into
220              * an AP_STACK.
221              */
222             Sp_adj(-3);
223             Sp(2) = stg_ap_v_info;
224             Sp(1) = R1;
225             Sp(0) = stg_enter_info;
226
227             SAVE_THREAD_STATE();
228             (r) = foreign "C" maybePerformBlockedException (MyCapability() "ptr", 
229                                                       CurrentTSO "ptr") [R1];
230
231             if (r != 0::CInt) {
232                 if (StgTSO_what_next(CurrentTSO) == ThreadKilled::I16) {
233                     jump stg_threadFinished;
234                 } else {
235                     LOAD_THREAD_STATE();
236                     ASSERT(StgTSO_what_next(CurrentTSO) == ThreadRunGHC::I16);
237                     jump %ENTRY_CODE(Sp(0));
238                 }
239             } else {
240                 /* we'll just call R1 directly, below */
241                 Sp_adj(3);
242             }
243         }
244
245     }
246     TICK_UNKNOWN_CALL();
247     TICK_SLOW_CALL_v();
248     jump stg_ap_v_fast;
249 }
250
251
252 stg_getMaskingStatezh
253 {
254     /* args: none */
255     /* 
256        returns: 0 == unmasked,
257                 1 == masked, non-interruptible,
258                 2 == masked, interruptible
259     */
260     RET_N(((TO_W_(StgTSO_flags(CurrentTSO)) & TSO_BLOCKEX) != 0) +
261           ((TO_W_(StgTSO_flags(CurrentTSO)) & TSO_INTERRUPTIBLE) != 0));
262 }
263
264 stg_killThreadzh
265 {
266     /* args: R1 = TSO to kill, R2 = Exception */
267
268     W_ why_blocked;
269     W_ target;
270     W_ exception;
271     
272     target = R1;
273     exception = R2;
274     
275     /* Needs 3 words because throwToSingleThreaded uses some stack */
276     STK_CHK_GEN( WDS(3), R1_PTR & R2_PTR, stg_killThreadzh);
277     /* We call allocate in throwTo(), so better check for GC */
278     MAYBE_GC(R1_PTR & R2_PTR, stg_killThreadzh);
279
280     /* 
281      * We might have killed ourselves.  In which case, better be *very*
282      * careful.  If the exception killed us, then return to the scheduler.
283      * If the exception went to a catch frame, we'll just continue from
284      * the handler.
285      */
286   loop:
287     if (StgTSO_what_next(target) == ThreadRelocated::I16) {
288         target = StgTSO__link(target);
289         goto loop;
290     }
291     if (target == CurrentTSO) {
292         /*
293          * So what should happen if a thread calls "throwTo self" inside
294          * unsafePerformIO, and later the closure is evaluated by another
295          * thread?  Presumably it should behave as if throwTo just returned,
296          * and then continue from there.  See #3279, #3288.  This is what
297          * happens: on resumption, we will just jump to the next frame on
298          * the stack, which is the return point for stg_killThreadzh.
299          */
300         SAVE_THREAD_STATE();
301         /* ToDo: what if the current thread is blocking exceptions? */
302         foreign "C" throwToSingleThreaded(MyCapability() "ptr", 
303                                           target "ptr", exception "ptr")[R1,R2];
304         if (StgTSO_what_next(CurrentTSO) == ThreadKilled::I16) {
305             jump stg_threadFinished;
306         } else {
307             LOAD_THREAD_STATE();
308             ASSERT(StgTSO_what_next(CurrentTSO) == ThreadRunGHC::I16);
309             jump %ENTRY_CODE(Sp(0));
310         }
311     } else {
312         W_ out;
313         W_ msg;
314         out = Sp - WDS(1); /* ok to re-use stack space here */
315
316         (msg) = foreign "C" throwTo(MyCapability() "ptr",
317                                     CurrentTSO "ptr",
318                                     target "ptr",
319                                     exception "ptr") [R1,R2];
320         
321         if (msg == NULL) {
322             jump %ENTRY_CODE(Sp(0));
323         } else {
324             StgTSO_why_blocked(CurrentTSO) = BlockedOnMsgThrowTo;
325             StgTSO_block_info(CurrentTSO) = msg;
326             // we must block, and unlock the message before returning
327             jump stg_block_throwto;
328         }
329     }
330 }
331
332 /* -----------------------------------------------------------------------------
333    Catch frames
334    -------------------------------------------------------------------------- */
335
336 #define SP_OFF 0
337
338 /* Catch frames are very similar to update frames, but when entering
339  * one we just pop the frame off the stack and perform the correct
340  * kind of return to the activation record underneath us on the stack.
341  */
342
343 INFO_TABLE_RET(stg_catch_frame, CATCH_FRAME,
344 #if defined(PROFILING)
345   W_ unused1, W_ unused2,
346 #endif
347   W_ unused3, P_ unused4)
348    {
349       Sp = Sp + SIZEOF_StgCatchFrame;
350       jump %ENTRY_CODE(Sp(SP_OFF));
351    }
352
353 /* -----------------------------------------------------------------------------
354  * The catch infotable
355  *
356  * This should be exactly the same as would be generated by this STG code
357  *
358  * catch = {x,h} \n {} -> catch#{x,h}
359  *
360  * It is used in deleteThread when reverting blackholes.
361  * -------------------------------------------------------------------------- */
362
363 INFO_TABLE(stg_catch,2,0,FUN,"catch","catch")
364 {
365   R2 = StgClosure_payload(R1,1); /* h */
366   R1 = StgClosure_payload(R1,0); /* x */
367   jump stg_catchzh;
368 }
369
370 stg_catchzh
371 {
372     /* args: R1 = m :: IO a, R2 = handler :: Exception -> IO a */
373     STK_CHK_GEN(SIZEOF_StgCatchFrame + WDS(1), R1_PTR & R2_PTR, stg_catchzh);
374   
375     /* Set up the catch frame */
376     Sp = Sp - SIZEOF_StgCatchFrame;
377     SET_HDR(Sp,stg_catch_frame_info,W_[CCCS]);
378     
379     StgCatchFrame_handler(Sp) = R2;
380     StgCatchFrame_exceptions_blocked(Sp) = 
381         TO_W_(StgTSO_flags(CurrentTSO)) & (TSO_BLOCKEX | TSO_INTERRUPTIBLE);
382     TICK_CATCHF_PUSHED();
383
384     /* Apply R1 to the realworld token */
385     TICK_UNKNOWN_CALL();
386     TICK_SLOW_CALL_v();
387     jump stg_ap_v_fast;
388 }
389
390 /* -----------------------------------------------------------------------------
391  * The raise infotable
392  * 
393  * This should be exactly the same as would be generated by this STG code
394  *
395  *   raise = {err} \n {} -> raise#{err}
396  *
397  * It is used in stg_raisezh to update thunks on the update list
398  * -------------------------------------------------------------------------- */
399
400 INFO_TABLE(stg_raise,1,0,THUNK_1_0,"raise","raise")
401 {
402   R1 = StgThunk_payload(R1,0);
403   jump stg_raisezh;
404 }
405
406 section "data" {
407   no_break_on_exception: W_[1];
408 }
409
410 INFO_TABLE_RET(stg_raise_ret, RET_SMALL, P_ arg1)
411 {
412   R1 = Sp(1);
413   Sp = Sp + WDS(2);
414   W_[no_break_on_exception] = 1;  
415   jump stg_raisezh;
416 }
417
418 stg_raisezh
419 {
420     W_ handler;
421     W_ frame_type;
422     W_ exception;
423     /* args : R1 :: Exception */
424
425    exception = R1;
426
427 #if defined(PROFILING)
428     /* Debugging tool: on raising an  exception, show where we are. */
429
430     /* ToDo: currently this is a hack.  Would be much better if
431      * the info was only displayed for an *uncaught* exception.
432      */
433     if (RtsFlags_ProfFlags_showCCSOnException(RtsFlags) != 0::I32) {
434       foreign "C" fprintCCS_stderr(W_[CCCS] "ptr") [];
435     }
436 #endif
437     
438 retry_pop_stack:
439     StgTSO_sp(CurrentTSO) = Sp;
440     (frame_type) = foreign "C" raiseExceptionHelper(BaseReg "ptr", CurrentTSO "ptr", exception "ptr") [];
441     Sp = StgTSO_sp(CurrentTSO);
442     if (frame_type == ATOMICALLY_FRAME) {
443       /* The exception has reached the edge of a memory transaction.  Check that 
444        * the transaction is valid.  If not then perhaps the exception should
445        * not have been thrown: re-run the transaction.  "trec" will either be
446        * a top-level transaction running the atomic block, or a nested 
447        * transaction running an invariant check.  In the latter case we
448        * abort and de-allocate the top-level transaction that encloses it
449        * as well (we could just abandon its transaction record, but this makes
450        * sure it's marked as aborted and available for re-use). */
451       W_ trec, outer;
452       W_ r;
453       trec = StgTSO_trec(CurrentTSO);
454       (r) = foreign "C" stmValidateNestOfTransactions(trec "ptr") [];
455       outer  = StgTRecHeader_enclosing_trec(trec);
456       foreign "C" stmAbortTransaction(MyCapability() "ptr", trec "ptr") [];
457       foreign "C" stmFreeAbortedTRec(MyCapability() "ptr", trec "ptr") [];
458
459       if (outer != NO_TREC) {
460         foreign "C" stmAbortTransaction(MyCapability() "ptr", outer "ptr") [];
461         foreign "C" stmFreeAbortedTRec(MyCapability() "ptr", outer "ptr") [];
462       }
463
464       StgTSO_trec(CurrentTSO) = NO_TREC;
465       if (r != 0) {
466         // Transaction was valid: continue searching for a catch frame
467         Sp = Sp + SIZEOF_StgAtomicallyFrame;
468         goto retry_pop_stack;
469       } else {
470         // Transaction was not valid: we retry the exception (otherwise continue
471         // with a further call to raiseExceptionHelper)
472         ("ptr" trec) = foreign "C" stmStartTransaction(MyCapability() "ptr", NO_TREC "ptr") [];
473         StgTSO_trec(CurrentTSO) = trec;
474         R1 = StgAtomicallyFrame_code(Sp);
475         jump stg_ap_v_fast;
476       }          
477     }
478
479     // After stripping the stack, see whether we should break here for
480     // GHCi (c.f. the -fbreak-on-exception flag).  We do this after
481     // stripping the stack for a reason: we'll be inspecting values in
482     // GHCi, and it helps if all the thunks under evaluation have
483     // already been updated with the exception, rather than being left
484     // as blackholes.
485     if (W_[no_break_on_exception] != 0) {
486         W_[no_break_on_exception] = 0;
487     } else {
488         if (TO_W_(CInt[rts_stop_on_exception]) != 0) {
489             W_ ioAction;
490             // we don't want any further exceptions to be caught,
491             // until GHCi is ready to handle them.  This prevents
492             // deadlock if an exception is raised in InteractiveUI,
493             // for exmplae.  Perhaps the stop_on_exception flag should
494             // be per-thread.
495             CInt[rts_stop_on_exception] = 0;
496             ("ptr" ioAction) = foreign "C" deRefStablePtr (W_[rts_breakpoint_io_action] "ptr") [];
497             Sp = Sp - WDS(6);
498             Sp(5) = exception;
499             Sp(4) = stg_raise_ret_info;
500             Sp(3) = exception;             // the AP_STACK
501             Sp(2) = ghczmprim_GHCziTypes_True_closure; // dummy breakpoint info
502             Sp(1) = ghczmprim_GHCziTypes_True_closure; // True <=> a breakpoint
503             R1 = ioAction;
504             jump RET_LBL(stg_ap_pppv);
505         }
506     }
507
508     if (frame_type == STOP_FRAME) {
509         /*
510          * We've stripped the entire stack, the thread is now dead.
511          * We will leave the stack in a GC'able state, see the stg_stop_thread
512          * entry code in StgStartup.cmm.
513          */
514         Sp = CurrentTSO + TSO_OFFSET_StgTSO_stack 
515                 + WDS(TO_W_(StgTSO_stack_size(CurrentTSO))) - WDS(2);
516         Sp(1) = exception;      /* save the exception */
517         Sp(0) = stg_enter_info; /* so that GC can traverse this stack */
518         StgTSO_what_next(CurrentTSO) = ThreadKilled::I16;
519         SAVE_THREAD_STATE();    /* inline! */
520
521         jump stg_threadFinished;
522     }
523
524     /* Ok, Sp points to the enclosing CATCH_FRAME or CATCH_STM_FRAME.  Pop everything
525      * down to and including this frame, update Su, push R1, and enter the handler.
526      */
527     if (frame_type == CATCH_FRAME) {
528       handler = StgCatchFrame_handler(Sp);
529     } else {
530       handler = StgCatchSTMFrame_handler(Sp);
531     }
532
533     /* Restore the blocked/unblocked state for asynchronous exceptions
534      * at the CATCH_FRAME.  
535      *
536      * If exceptions were unblocked, arrange that they are unblocked
537      * again after executing the handler by pushing an
538      * unmaskAsyncExceptions_ret stack frame.
539      *
540      * If we've reached an STM catch frame then roll back the nested
541      * transaction we were using.
542      */
543     W_ frame;
544     frame = Sp;
545     if (frame_type == CATCH_FRAME) {
546       Sp = Sp + SIZEOF_StgCatchFrame;
547       if ((StgCatchFrame_exceptions_blocked(frame) & TSO_BLOCKEX) == 0) {
548           Sp_adj(-1);
549           Sp(0) = stg_unmaskAsyncExceptionszh_ret_info;
550       }
551     } else {
552       W_ trec, outer;
553       trec = StgTSO_trec(CurrentTSO);
554       outer  = StgTRecHeader_enclosing_trec(trec);
555       foreign "C" stmAbortTransaction(MyCapability() "ptr", trec "ptr") [];
556       foreign "C" stmFreeAbortedTRec(MyCapability() "ptr", trec "ptr") [];
557       StgTSO_trec(CurrentTSO) = outer;
558       Sp = Sp + SIZEOF_StgCatchSTMFrame;
559     }
560
561     /* Ensure that async excpetions are blocked when running the handler.
562      * The interruptible state is inherited from the context of the
563      * catch frame.
564     */
565     StgTSO_flags(CurrentTSO) = %lobits32(
566         TO_W_(StgTSO_flags(CurrentTSO)) | TSO_BLOCKEX);
567     if ((StgCatchFrame_exceptions_blocked(frame) & TSO_INTERRUPTIBLE) == 0) {
568         StgTSO_flags(CurrentTSO) = %lobits32(
569             TO_W_(StgTSO_flags(CurrentTSO)) & ~TSO_INTERRUPTIBLE);
570     } else {
571         StgTSO_flags(CurrentTSO) = %lobits32(
572             TO_W_(StgTSO_flags(CurrentTSO)) | TSO_INTERRUPTIBLE);
573     }
574
575     /* Call the handler, passing the exception value and a realworld
576      * token as arguments.
577      */
578     Sp_adj(-1);
579     Sp(0) = exception;
580     R1 = handler;
581     Sp_adj(-1);
582     TICK_UNKNOWN_CALL();
583     TICK_SLOW_CALL_pv();
584     jump RET_LBL(stg_ap_pv);
585 }
586
587 stg_raiseIOzh
588 {
589   /* Args :: R1 :: Exception */
590   jump stg_raisezh;
591 }