1 /* -----------------------------------------------------------------------------
3 * (c) The GHC Team, 1998-2004
5 * Out-of-line primitive operations
7 * This file contains the implementations of all the primitive
8 * operations ("primops") which are not expanded inline. See
9 * ghc/compiler/prelude/primops.txt.pp for a list of all the primops;
10 * this file contains code for most of those with the attribute
13 * Entry convention: the entry convention for a primop is that all the
14 * args are in Stg registers (R1, R2, etc.). This is to make writing
15 * the primops easier. (see compiler/codeGen/CgCallConv.hs).
17 * Return convention: results from a primop are generally returned
18 * using the ordinary unboxed tuple return convention. The C-- parser
19 * implements the RET_xxxx() macros to perform unboxed-tuple returns
20 * based on the prevailing return convention.
22 * This file is written in a subset of C--, extended with various
23 * features specific to GHC. It is compiled by GHC directly. For the
24 * syntax of .cmm files, see the parser in ghc/compiler/cmm/CmmParse.y.
26 * ---------------------------------------------------------------------------*/
31 import pthread_mutex_lock;
32 import pthread_mutex_unlock;
34 import base_ControlziExceptionziBase_nestedAtomically_closure;
35 import EnterCriticalSection;
36 import LeaveCriticalSection;
37 import ghczmprim_GHCziTypes_False_closure;
38 #if !defined(mingw32_HOST_OS)
42 /*-----------------------------------------------------------------------------
45 Basically just new*Array - the others are all inline macros.
47 The size arg is always passed in R1, and the result returned in R1.
49 The slow entry point is for returning from a heap check, the saved
50 size argument must be re-loaded from the stack.
51 -------------------------------------------------------------------------- */
53 /* for objects that are *less* than the size of a word, make sure we
54 * round up to the nearest word for the size of the array.
59 W_ words, payload_words, n, p;
60 MAYBE_GC(NO_PTRS,stg_newByteArrayzh);
62 payload_words = ROUNDUP_BYTES_TO_WDS(n);
63 words = BYTES_TO_WDS(SIZEOF_StgArrWords) + payload_words;
64 ("ptr" p) = foreign "C" allocate(MyCapability() "ptr",words) [];
65 TICK_ALLOC_PRIM(SIZEOF_StgArrWords,WDS(payload_words),0);
66 SET_HDR(p, stg_ARR_WORDS_info, W_[CCCS]);
67 StgArrWords_bytes(p) = n;
72 #define BA_MASK (BA_ALIGN-1)
74 stg_newPinnedByteArrayzh
76 W_ words, n, bytes, payload_words, p;
78 MAYBE_GC(NO_PTRS,stg_newPinnedByteArrayzh);
81 /* payload_words is what we will tell the profiler we had to allocate */
82 payload_words = ROUNDUP_BYTES_TO_WDS(bytes);
83 /* When we actually allocate memory, we need to allow space for the
85 bytes = bytes + SIZEOF_StgArrWords;
86 /* And we want to align to BA_ALIGN bytes, so we need to allow space
87 to shift up to BA_ALIGN - 1 bytes: */
88 bytes = bytes + BA_ALIGN - 1;
89 /* Now we convert to a number of words: */
90 words = ROUNDUP_BYTES_TO_WDS(bytes);
92 ("ptr" p) = foreign "C" allocatePinned(MyCapability() "ptr", words) [];
93 TICK_ALLOC_PRIM(SIZEOF_StgArrWords,WDS(payload_words),0);
95 /* Now we need to move p forward so that the payload is aligned
97 p = p + ((-p - SIZEOF_StgArrWords) & BA_MASK);
99 SET_HDR(p, stg_ARR_WORDS_info, W_[CCCS]);
100 StgArrWords_bytes(p) = n;
104 stg_newAlignedPinnedByteArrayzh
106 W_ words, n, bytes, payload_words, p, alignment;
108 MAYBE_GC(NO_PTRS,stg_newAlignedPinnedByteArrayzh);
112 /* we always supply at least word-aligned memory, so there's no
113 need to allow extra space for alignment if the requirement is less
114 than a word. This also prevents mischief with alignment == 0. */
115 if (alignment <= SIZEOF_W) { alignment = 1; }
119 /* payload_words is what we will tell the profiler we had to allocate */
120 payload_words = ROUNDUP_BYTES_TO_WDS(bytes);
122 /* When we actually allocate memory, we need to allow space for the
124 bytes = bytes + SIZEOF_StgArrWords;
125 /* And we want to align to <alignment> bytes, so we need to allow space
126 to shift up to <alignment - 1> bytes: */
127 bytes = bytes + alignment - 1;
128 /* Now we convert to a number of words: */
129 words = ROUNDUP_BYTES_TO_WDS(bytes);
131 ("ptr" p) = foreign "C" allocatePinned(MyCapability() "ptr", words) [];
132 TICK_ALLOC_PRIM(SIZEOF_StgArrWords,WDS(payload_words),0);
134 /* Now we need to move p forward so that the payload is aligned
135 to <alignment> bytes. Note that we are assuming that
136 <alignment> is a power of 2, which is technically not guaranteed */
137 p = p + ((-p - SIZEOF_StgArrWords) & (alignment - 1));
139 SET_HDR(p, stg_ARR_WORDS_info, W_[CCCS]);
140 StgArrWords_bytes(p) = n;
146 W_ words, n, init, arr, p, size;
147 /* Args: R1 = words, R2 = initialisation value */
150 MAYBE_GC(R2_PTR,stg_newArrayzh);
152 // the mark area contains one byte for each 2^MUT_ARR_PTRS_CARD_BITS words
153 // in the array, making sure we round up, and then rounding up to a whole
155 size = n + mutArrPtrsCardWords(n);
156 words = BYTES_TO_WDS(SIZEOF_StgMutArrPtrs) + size;
157 ("ptr" arr) = foreign "C" allocate(MyCapability() "ptr",words) [R2];
158 TICK_ALLOC_PRIM(SIZEOF_StgMutArrPtrs, WDS(n), 0);
160 SET_HDR(arr, stg_MUT_ARR_PTRS_DIRTY_info, W_[CCCS]);
161 StgMutArrPtrs_ptrs(arr) = n;
162 StgMutArrPtrs_size(arr) = size;
164 // Initialise all elements of the the array with the value in R2
166 p = arr + SIZEOF_StgMutArrPtrs;
168 if (p < arr + WDS(words)) {
173 // Initialise the mark bits with 0
175 if (p < arr + WDS(size)) {
184 stg_unsafeThawArrayzh
186 // SUBTLETY TO DO WITH THE OLD GEN MUTABLE LIST
188 // A MUT_ARR_PTRS lives on the mutable list, but a MUT_ARR_PTRS_FROZEN
189 // normally doesn't. However, when we freeze a MUT_ARR_PTRS, we leave
190 // it on the mutable list for the GC to remove (removing something from
191 // the mutable list is not easy).
193 // So that we can tell whether a MUT_ARR_PTRS_FROZEN is on the mutable list,
194 // when we freeze it we set the info ptr to be MUT_ARR_PTRS_FROZEN0
195 // to indicate that it is still on the mutable list.
197 // So, when we thaw a MUT_ARR_PTRS_FROZEN, we must cope with two cases:
198 // either it is on a mut_list, or it isn't. We adopt the convention that
199 // the closure type is MUT_ARR_PTRS_FROZEN0 if it is on the mutable list,
200 // and MUT_ARR_PTRS_FROZEN otherwise. In fact it wouldn't matter if
201 // we put it on the mutable list more than once, but it would get scavenged
202 // multiple times during GC, which would be unnecessarily slow.
204 if (StgHeader_info(R1) != stg_MUT_ARR_PTRS_FROZEN0_info) {
205 SET_INFO(R1,stg_MUT_ARR_PTRS_DIRTY_info);
206 recordMutable(R1, R1);
207 // must be done after SET_INFO, because it ASSERTs closure_MUTABLE()
210 SET_INFO(R1,stg_MUT_ARR_PTRS_DIRTY_info);
215 /* -----------------------------------------------------------------------------
217 -------------------------------------------------------------------------- */
222 /* Args: R1 = initialisation value */
224 ALLOC_PRIM( SIZEOF_StgMutVar, R1_PTR, stg_newMutVarzh);
226 mv = Hp - SIZEOF_StgMutVar + WDS(1);
227 SET_HDR(mv,stg_MUT_VAR_DIRTY_info,W_[CCCS]);
228 StgMutVar_var(mv) = R1;
233 stg_atomicModifyMutVarzh
235 W_ mv, f, z, x, y, r, h;
236 /* Args: R1 :: MutVar#, R2 :: a -> (a,b) */
238 /* If x is the current contents of the MutVar#, then
239 We want to make the new contents point to
243 and the return value is
247 obviously we can share (f x).
249 z = [stg_ap_2 f x] (max (HS + 2) MIN_UPD_SIZE)
250 y = [stg_sel_0 z] (max (HS + 1) MIN_UPD_SIZE)
251 r = [stg_sel_1 z] (max (HS + 1) MIN_UPD_SIZE)
255 #define THUNK_1_SIZE (SIZEOF_StgThunkHeader + WDS(MIN_UPD_SIZE))
256 #define TICK_ALLOC_THUNK_1() TICK_ALLOC_UP_THK(WDS(1),WDS(MIN_UPD_SIZE-1))
258 #define THUNK_1_SIZE (SIZEOF_StgThunkHeader + WDS(1))
259 #define TICK_ALLOC_THUNK_1() TICK_ALLOC_UP_THK(WDS(1),0)
263 #define THUNK_2_SIZE (SIZEOF_StgThunkHeader + WDS(MIN_UPD_SIZE))
264 #define TICK_ALLOC_THUNK_2() TICK_ALLOC_UP_THK(WDS(2),WDS(MIN_UPD_SIZE-2))
266 #define THUNK_2_SIZE (SIZEOF_StgThunkHeader + WDS(2))
267 #define TICK_ALLOC_THUNK_2() TICK_ALLOC_UP_THK(WDS(2),0)
270 #define SIZE (THUNK_2_SIZE + THUNK_1_SIZE + THUNK_1_SIZE)
272 HP_CHK_GEN_TICKY(SIZE, R1_PTR & R2_PTR, stg_atomicModifyMutVarzh);
277 TICK_ALLOC_THUNK_2();
278 CCCS_ALLOC(THUNK_2_SIZE);
279 z = Hp - THUNK_2_SIZE + WDS(1);
280 SET_HDR(z, stg_ap_2_upd_info, W_[CCCS]);
281 LDV_RECORD_CREATE(z);
282 StgThunk_payload(z,0) = f;
284 TICK_ALLOC_THUNK_1();
285 CCCS_ALLOC(THUNK_1_SIZE);
286 y = z - THUNK_1_SIZE;
287 SET_HDR(y, stg_sel_0_upd_info, W_[CCCS]);
288 LDV_RECORD_CREATE(y);
289 StgThunk_payload(y,0) = z;
291 TICK_ALLOC_THUNK_1();
292 CCCS_ALLOC(THUNK_1_SIZE);
293 r = y - THUNK_1_SIZE;
294 SET_HDR(r, stg_sel_1_upd_info, W_[CCCS]);
295 LDV_RECORD_CREATE(r);
296 StgThunk_payload(r,0) = z;
299 x = StgMutVar_var(mv);
300 StgThunk_payload(z,1) = x;
302 (h) = foreign "C" cas(mv + SIZEOF_StgHeader + OFFSET_StgMutVar_var, x, y) [];
303 if (h != x) { goto retry; }
305 StgMutVar_var(mv) = y;
308 if (GET_INFO(mv) == stg_MUT_VAR_CLEAN_info) {
309 foreign "C" dirty_MUT_VAR(BaseReg "ptr", mv "ptr") [];
315 /* -----------------------------------------------------------------------------
316 Weak Pointer Primitives
317 -------------------------------------------------------------------------- */
319 STRING(stg_weak_msg,"New weak pointer at %p\n")
325 R3 = finalizer (or NULL)
330 R3 = stg_NO_FINALIZER_closure;
333 ALLOC_PRIM( SIZEOF_StgWeak, R1_PTR & R2_PTR & R3_PTR, stg_mkWeakzh );
335 w = Hp - SIZEOF_StgWeak + WDS(1);
336 SET_HDR(w, stg_WEAK_info, W_[CCCS]);
338 // We don't care about cfinalizer here.
339 // Should StgWeak_cfinalizer(w) be stg_NO_FINALIZER_closure or
343 StgWeak_value(w) = R2;
344 StgWeak_finalizer(w) = R3;
345 StgWeak_cfinalizer(w) = stg_NO_FINALIZER_closure;
347 ACQUIRE_LOCK(sm_mutex);
348 StgWeak_link(w) = W_[weak_ptr_list];
349 W_[weak_ptr_list] = w;
350 RELEASE_LOCK(sm_mutex);
352 IF_DEBUG(weak, foreign "C" debugBelch(stg_weak_msg,w) []);
357 stg_mkWeakForeignEnvzh
363 R5 = has environment (0 or 1)
366 W_ w, payload_words, words, p;
368 W_ key, val, fptr, ptr, flag, eptr;
377 ALLOC_PRIM( SIZEOF_StgWeak, R1_PTR & R2_PTR, stg_mkWeakForeignEnvzh );
379 w = Hp - SIZEOF_StgWeak + WDS(1);
380 SET_HDR(w, stg_WEAK_info, W_[CCCS]);
383 words = BYTES_TO_WDS(SIZEOF_StgArrWords) + payload_words;
384 ("ptr" p) = foreign "C" allocate(MyCapability() "ptr", words) [];
386 TICK_ALLOC_PRIM(SIZEOF_StgArrWords,WDS(payload_words),0);
387 SET_HDR(p, stg_ARR_WORDS_info, W_[CCCS]);
389 StgArrWords_bytes(p) = WDS(payload_words);
390 StgArrWords_payload(p,0) = fptr;
391 StgArrWords_payload(p,1) = ptr;
392 StgArrWords_payload(p,2) = eptr;
393 StgArrWords_payload(p,3) = flag;
395 // We don't care about the value here.
396 // Should StgWeak_value(w) be stg_NO_FINALIZER_closure or something else?
398 StgWeak_key(w) = key;
399 StgWeak_value(w) = val;
400 StgWeak_finalizer(w) = stg_NO_FINALIZER_closure;
401 StgWeak_cfinalizer(w) = p;
403 ACQUIRE_LOCK(sm_mutex);
404 StgWeak_link(w) = W_[weak_ptr_list];
405 W_[weak_ptr_list] = w;
406 RELEASE_LOCK(sm_mutex);
408 IF_DEBUG(weak, foreign "C" debugBelch(stg_weak_msg,w) []);
422 if (GET_INFO(w) == stg_DEAD_WEAK_info) {
423 RET_NP(0,stg_NO_FINALIZER_closure);
429 // A weak pointer is inherently used, so we do not need to call
430 // LDV_recordDead_FILL_SLOP_DYNAMIC():
431 // LDV_recordDead_FILL_SLOP_DYNAMIC((StgClosure *)w);
432 // or, LDV_recordDead():
433 // LDV_recordDead((StgClosure *)w, sizeofW(StgWeak) - sizeofW(StgProfHeader));
434 // Furthermore, when PROFILING is turned on, dead weak pointers are exactly as
435 // large as weak pointers, so there is no need to fill the slop, either.
436 // See stg_DEAD_WEAK_info in StgMiscClosures.hc.
440 // Todo: maybe use SET_HDR() and remove LDV_recordCreate()?
442 SET_INFO(w,stg_DEAD_WEAK_info);
443 LDV_RECORD_CREATE(w);
445 f = StgWeak_finalizer(w);
446 arr = StgWeak_cfinalizer(w);
448 StgDeadWeak_link(w) = StgWeak_link(w);
450 if (arr != stg_NO_FINALIZER_closure) {
451 foreign "C" runCFinalizer(StgArrWords_payload(arr,0),
452 StgArrWords_payload(arr,1),
453 StgArrWords_payload(arr,2),
454 StgArrWords_payload(arr,3)) [];
457 /* return the finalizer */
458 if (f == stg_NO_FINALIZER_closure) {
459 RET_NP(0,stg_NO_FINALIZER_closure);
471 if (GET_INFO(w) == stg_WEAK_info) {
473 val = StgWeak_value(w);
481 /* -----------------------------------------------------------------------------
482 Floating point operations.
483 -------------------------------------------------------------------------- */
485 stg_decodeFloatzuIntzh
492 STK_CHK_GEN( WDS(2), NO_PTRS, stg_decodeFloatzuIntzh );
494 mp_tmp1 = Sp - WDS(1);
495 mp_tmp_w = Sp - WDS(2);
497 /* arguments: F1 = Float# */
500 /* Perform the operation */
501 foreign "C" __decodeFloat_Int(mp_tmp1 "ptr", mp_tmp_w "ptr", arg) [];
503 /* returns: (Int# (mantissa), Int# (exponent)) */
504 RET_NN(W_[mp_tmp1], W_[mp_tmp_w]);
507 stg_decodeDoublezu2Intzh
516 STK_CHK_GEN( WDS(4), NO_PTRS, stg_decodeDoublezu2Intzh );
518 mp_tmp1 = Sp - WDS(1);
519 mp_tmp2 = Sp - WDS(2);
520 mp_result1 = Sp - WDS(3);
521 mp_result2 = Sp - WDS(4);
523 /* arguments: D1 = Double# */
526 /* Perform the operation */
527 foreign "C" __decodeDouble_2Int(mp_tmp1 "ptr", mp_tmp2 "ptr",
528 mp_result1 "ptr", mp_result2 "ptr",
532 (Int# (mant sign), Word# (mant high), Word# (mant low), Int# (expn)) */
533 RET_NNNN(W_[mp_tmp1], W_[mp_tmp2], W_[mp_result1], W_[mp_result2]);
536 /* -----------------------------------------------------------------------------
537 * Concurrency primitives
538 * -------------------------------------------------------------------------- */
542 /* args: R1 = closure to spark */
544 MAYBE_GC(R1_PTR, stg_forkzh);
550 ("ptr" threadid) = foreign "C" createIOThread( MyCapability() "ptr",
551 RtsFlags_GcFlags_initialStkSize(RtsFlags),
554 /* start blocked if the current thread is blocked */
555 StgTSO_flags(threadid) = %lobits16(
556 TO_W_(StgTSO_flags(threadid)) |
557 TO_W_(StgTSO_flags(CurrentTSO)) & (TSO_BLOCKEX | TSO_INTERRUPTIBLE));
559 foreign "C" scheduleThread(MyCapability() "ptr", threadid "ptr") [];
561 // context switch soon, but not immediately: we don't want every
562 // forkIO to force a context-switch.
563 Capability_context_switch(MyCapability()) = 1 :: CInt;
570 /* args: R1 = cpu, R2 = closure to spark */
572 MAYBE_GC(R2_PTR, stg_forkOnzh);
580 ("ptr" threadid) = foreign "C" createIOThread( MyCapability() "ptr",
581 RtsFlags_GcFlags_initialStkSize(RtsFlags),
584 /* start blocked if the current thread is blocked */
585 StgTSO_flags(threadid) = %lobits16(
586 TO_W_(StgTSO_flags(threadid)) |
587 TO_W_(StgTSO_flags(CurrentTSO)) & (TSO_BLOCKEX | TSO_INTERRUPTIBLE));
589 foreign "C" scheduleThreadOn(MyCapability() "ptr", cpu, threadid "ptr") [];
591 // context switch soon, but not immediately: we don't want every
592 // forkIO to force a context-switch.
593 Capability_context_switch(MyCapability()) = 1 :: CInt;
600 jump stg_yield_noregs;
615 foreign "C" labelThread(R1 "ptr", R2 "ptr") [];
617 jump %ENTRY_CODE(Sp(0));
620 stg_isCurrentThreadBoundzh
624 (r) = foreign "C" isThreadBound(CurrentTSO) [];
630 /* args: R1 :: ThreadId# */
638 what_next = TO_W_(StgTSO_what_next(tso));
639 why_blocked = TO_W_(StgTSO_why_blocked(tso));
640 // Note: these two reads are not atomic, so they might end up
641 // being inconsistent. It doesn't matter, since we
642 // only return one or the other. If we wanted to return the
643 // contents of block_info too, then we'd have to do some synchronisation.
645 if (what_next == ThreadComplete) {
646 ret = 16; // NB. magic, matches up with GHC.Conc.threadStatus
648 if (what_next == ThreadKilled) {
657 /* -----------------------------------------------------------------------------
659 * -------------------------------------------------------------------------- */
663 // Catch retry frame ------------------------------------------------------------
665 INFO_TABLE_RET(stg_catch_retry_frame, CATCH_RETRY_FRAME,
666 #if defined(PROFILING)
667 W_ unused1, W_ unused2,
669 W_ unused3, P_ unused4, P_ unused5)
671 W_ r, frame, trec, outer;
674 trec = StgTSO_trec(CurrentTSO);
675 outer = StgTRecHeader_enclosing_trec(trec);
676 (r) = foreign "C" stmCommitNestedTransaction(MyCapability() "ptr", trec "ptr") [];
678 /* Succeeded (either first branch or second branch) */
679 StgTSO_trec(CurrentTSO) = outer;
680 Sp = Sp + SIZEOF_StgCatchRetryFrame;
681 jump %ENTRY_CODE(Sp(SP_OFF));
683 /* Did not commit: re-execute */
685 ("ptr" new_trec) = foreign "C" stmStartTransaction(MyCapability() "ptr", outer "ptr") [];
686 StgTSO_trec(CurrentTSO) = new_trec;
687 if (StgCatchRetryFrame_running_alt_code(frame) != 0::I32) {
688 R1 = StgCatchRetryFrame_alt_code(frame);
690 R1 = StgCatchRetryFrame_first_code(frame);
697 // Atomically frame ------------------------------------------------------------
699 INFO_TABLE_RET(stg_atomically_frame, ATOMICALLY_FRAME,
700 #if defined(PROFILING)
701 W_ unused1, W_ unused2,
703 P_ code, P_ next_invariant_to_check, P_ result)
705 W_ frame, trec, valid, next_invariant, q, outer;
708 trec = StgTSO_trec(CurrentTSO);
710 outer = StgTRecHeader_enclosing_trec(trec);
712 if (outer == NO_TREC) {
713 /* First time back at the atomically frame -- pick up invariants */
714 ("ptr" q) = foreign "C" stmGetInvariantsToCheck(MyCapability() "ptr", trec "ptr") [];
715 StgAtomicallyFrame_next_invariant_to_check(frame) = q;
716 StgAtomicallyFrame_result(frame) = result;
719 /* Second/subsequent time back at the atomically frame -- abort the
720 * tx that's checking the invariant and move on to the next one */
721 StgTSO_trec(CurrentTSO) = outer;
722 q = StgAtomicallyFrame_next_invariant_to_check(frame);
723 StgInvariantCheckQueue_my_execution(q) = trec;
724 foreign "C" stmAbortTransaction(MyCapability() "ptr", trec "ptr") [];
725 /* Don't free trec -- it's linked from q and will be stashed in the
726 * invariant if we eventually commit. */
727 q = StgInvariantCheckQueue_next_queue_entry(q);
728 StgAtomicallyFrame_next_invariant_to_check(frame) = q;
732 q = StgAtomicallyFrame_next_invariant_to_check(frame);
734 if (q != END_INVARIANT_CHECK_QUEUE) {
735 /* We can't commit yet: another invariant to check */
736 ("ptr" trec) = foreign "C" stmStartTransaction(MyCapability() "ptr", trec "ptr") [];
737 StgTSO_trec(CurrentTSO) = trec;
739 next_invariant = StgInvariantCheckQueue_invariant(q);
740 R1 = StgAtomicInvariant_code(next_invariant);
745 /* We've got no more invariants to check, try to commit */
746 (valid) = foreign "C" stmCommitTransaction(MyCapability() "ptr", trec "ptr") [];
748 /* Transaction was valid: commit succeeded */
749 StgTSO_trec(CurrentTSO) = NO_TREC;
750 R1 = StgAtomicallyFrame_result(frame);
751 Sp = Sp + SIZEOF_StgAtomicallyFrame;
752 jump %ENTRY_CODE(Sp(SP_OFF));
754 /* Transaction was not valid: try again */
755 ("ptr" trec) = foreign "C" stmStartTransaction(MyCapability() "ptr", NO_TREC "ptr") [];
756 StgTSO_trec(CurrentTSO) = trec;
757 StgAtomicallyFrame_next_invariant_to_check(frame) = END_INVARIANT_CHECK_QUEUE;
758 R1 = StgAtomicallyFrame_code(frame);
764 INFO_TABLE_RET(stg_atomically_waiting_frame, ATOMICALLY_FRAME,
765 #if defined(PROFILING)
766 W_ unused1, W_ unused2,
768 P_ code, P_ next_invariant_to_check, P_ result)
770 W_ frame, trec, valid;
774 /* The TSO is currently waiting: should we stop waiting? */
775 (valid) = foreign "C" stmReWait(MyCapability() "ptr", CurrentTSO "ptr") [];
777 /* Previous attempt is still valid: no point trying again yet */
778 jump stg_block_noregs;
780 /* Previous attempt is no longer valid: try again */
781 ("ptr" trec) = foreign "C" stmStartTransaction(MyCapability() "ptr", NO_TREC "ptr") [];
782 StgTSO_trec(CurrentTSO) = trec;
783 StgHeader_info(frame) = stg_atomically_frame_info;
784 R1 = StgAtomicallyFrame_code(frame);
789 // STM catch frame --------------------------------------------------------------
793 /* Catch frames are very similar to update frames, but when entering
794 * one we just pop the frame off the stack and perform the correct
795 * kind of return to the activation record underneath us on the stack.
798 INFO_TABLE_RET(stg_catch_stm_frame, CATCH_STM_FRAME,
799 #if defined(PROFILING)
800 W_ unused1, W_ unused2,
802 P_ unused3, P_ unused4)
804 W_ r, frame, trec, outer;
806 trec = StgTSO_trec(CurrentTSO);
807 outer = StgTRecHeader_enclosing_trec(trec);
808 (r) = foreign "C" stmCommitNestedTransaction(MyCapability() "ptr", trec "ptr") [];
810 /* Commit succeeded */
811 StgTSO_trec(CurrentTSO) = outer;
812 Sp = Sp + SIZEOF_StgCatchSTMFrame;
817 ("ptr" new_trec) = foreign "C" stmStartTransaction(MyCapability() "ptr", outer "ptr") [];
818 StgTSO_trec(CurrentTSO) = new_trec;
819 R1 = StgCatchSTMFrame_code(frame);
825 // Primop definition ------------------------------------------------------------
833 // stmStartTransaction may allocate
834 MAYBE_GC (R1_PTR, stg_atomicallyzh);
836 /* Args: R1 = m :: STM a */
837 STK_CHK_GEN(SIZEOF_StgAtomicallyFrame + WDS(1), R1_PTR, stg_atomicallyzh);
839 old_trec = StgTSO_trec(CurrentTSO);
841 /* Nested transactions are not allowed; raise an exception */
842 if (old_trec != NO_TREC) {
843 R1 = base_ControlziExceptionziBase_nestedAtomically_closure;
847 /* Set up the atomically frame */
848 Sp = Sp - SIZEOF_StgAtomicallyFrame;
851 SET_HDR(frame,stg_atomically_frame_info, W_[CCCS]);
852 StgAtomicallyFrame_code(frame) = R1;
853 StgAtomicallyFrame_result(frame) = NO_TREC;
854 StgAtomicallyFrame_next_invariant_to_check(frame) = END_INVARIANT_CHECK_QUEUE;
856 /* Start the memory transcation */
857 ("ptr" new_trec) = foreign "C" stmStartTransaction(MyCapability() "ptr", old_trec "ptr") [R1];
858 StgTSO_trec(CurrentTSO) = new_trec;
860 /* Apply R1 to the realworld token */
869 /* Args: R1 :: STM a */
870 /* Args: R2 :: Exception -> STM a */
871 STK_CHK_GEN(SIZEOF_StgCatchSTMFrame + WDS(1), R1_PTR & R2_PTR, stg_catchSTMzh);
873 /* Set up the catch frame */
874 Sp = Sp - SIZEOF_StgCatchSTMFrame;
877 SET_HDR(frame, stg_catch_stm_frame_info, W_[CCCS]);
878 StgCatchSTMFrame_handler(frame) = R2;
879 StgCatchSTMFrame_code(frame) = R1;
881 /* Start a nested transaction to run the body of the try block in */
884 cur_trec = StgTSO_trec(CurrentTSO);
885 ("ptr" new_trec) = foreign "C" stmStartTransaction(MyCapability() "ptr", cur_trec "ptr");
886 StgTSO_trec(CurrentTSO) = new_trec;
888 /* Apply R1 to the realworld token */
899 // stmStartTransaction may allocate
900 MAYBE_GC (R1_PTR & R2_PTR, stg_catchRetryzh);
902 /* Args: R1 :: STM a */
903 /* Args: R2 :: STM a */
904 STK_CHK_GEN(SIZEOF_StgCatchRetryFrame + WDS(1), R1_PTR & R2_PTR, stg_catchRetryzh);
906 /* Start a nested transaction within which to run the first code */
907 trec = StgTSO_trec(CurrentTSO);
908 ("ptr" new_trec) = foreign "C" stmStartTransaction(MyCapability() "ptr", trec "ptr") [R1,R2];
909 StgTSO_trec(CurrentTSO) = new_trec;
911 /* Set up the catch-retry frame */
912 Sp = Sp - SIZEOF_StgCatchRetryFrame;
915 SET_HDR(frame, stg_catch_retry_frame_info, W_[CCCS]);
916 StgCatchRetryFrame_running_alt_code(frame) = 0 :: CInt; // false;
917 StgCatchRetryFrame_first_code(frame) = R1;
918 StgCatchRetryFrame_alt_code(frame) = R2;
920 /* Apply R1 to the realworld token */
933 MAYBE_GC (NO_PTRS, stg_retryzh); // STM operations may allocate
935 // Find the enclosing ATOMICALLY_FRAME or CATCH_RETRY_FRAME
938 (frame_type) = foreign "C" findRetryFrameHelper(MyCapability(), CurrentTSO "ptr") [];
941 trec = StgTSO_trec(CurrentTSO);
942 outer = StgTRecHeader_enclosing_trec(trec);
944 if (frame_type == CATCH_RETRY_FRAME) {
945 // The retry reaches a CATCH_RETRY_FRAME before the atomic frame
946 ASSERT(outer != NO_TREC);
947 // Abort the transaction attempting the current branch
948 foreign "C" stmAbortTransaction(MyCapability() "ptr", trec "ptr") [];
949 foreign "C" stmFreeAbortedTRec(MyCapability() "ptr", trec "ptr") [];
950 if (!StgCatchRetryFrame_running_alt_code(frame) != 0::I32) {
951 // Retry in the first branch: try the alternative
952 ("ptr" trec) = foreign "C" stmStartTransaction(MyCapability() "ptr", outer "ptr") [];
953 StgTSO_trec(CurrentTSO) = trec;
954 StgCatchRetryFrame_running_alt_code(frame) = 1 :: CInt; // true;
955 R1 = StgCatchRetryFrame_alt_code(frame);
958 // Retry in the alternative code: propagate the retry
959 StgTSO_trec(CurrentTSO) = outer;
960 Sp = Sp + SIZEOF_StgCatchRetryFrame;
961 goto retry_pop_stack;
965 // We've reached the ATOMICALLY_FRAME: attempt to wait
966 ASSERT(frame_type == ATOMICALLY_FRAME);
967 if (outer != NO_TREC) {
968 // We called retry while checking invariants, so abort the current
969 // invariant check (merging its TVar accesses into the parents read
970 // set so we'll wait on them)
971 foreign "C" stmAbortTransaction(MyCapability() "ptr", trec "ptr") [];
972 foreign "C" stmFreeAbortedTRec(MyCapability() "ptr", trec "ptr") [];
974 StgTSO_trec(CurrentTSO) = trec;
975 outer = StgTRecHeader_enclosing_trec(trec);
977 ASSERT(outer == NO_TREC);
979 (r) = foreign "C" stmWait(MyCapability() "ptr", CurrentTSO "ptr", trec "ptr") [];
981 // Transaction was valid: stmWait put us on the TVars' queues, we now block
982 StgHeader_info(frame) = stg_atomically_waiting_frame_info;
984 // Fix up the stack in the unregisterised case: the return convention is different.
985 R3 = trec; // passing to stmWaitUnblock()
986 jump stg_block_stmwait;
988 // Transaction was not valid: retry immediately
989 ("ptr" trec) = foreign "C" stmStartTransaction(MyCapability() "ptr", outer "ptr") [];
990 StgTSO_trec(CurrentTSO) = trec;
991 R1 = StgAtomicallyFrame_code(frame);
1002 /* Args: R1 = invariant closure */
1003 MAYBE_GC (R1_PTR, stg_checkzh);
1005 trec = StgTSO_trec(CurrentTSO);
1007 foreign "C" stmAddInvariantToCheck(MyCapability() "ptr",
1011 jump %ENTRY_CODE(Sp(0));
1020 /* Args: R1 = initialisation value */
1022 MAYBE_GC (R1_PTR, stg_newTVarzh);
1024 ("ptr" tv) = foreign "C" stmNewTVar(MyCapability() "ptr", new_value "ptr") [];
1035 /* Args: R1 = TVar closure */
1037 MAYBE_GC (R1_PTR, stg_readTVarzh); // Call to stmReadTVar may allocate
1038 trec = StgTSO_trec(CurrentTSO);
1040 ("ptr" result) = foreign "C" stmReadTVar(MyCapability() "ptr", trec "ptr", tvar "ptr") [];
1050 result = StgTVar_current_value(R1);
1051 if (%INFO_PTR(result) == stg_TREC_HEADER_info) {
1063 /* Args: R1 = TVar closure */
1064 /* R2 = New value */
1066 MAYBE_GC (R1_PTR & R2_PTR, stg_writeTVarzh); // Call to stmWriteTVar may allocate
1067 trec = StgTSO_trec(CurrentTSO);
1070 foreign "C" stmWriteTVar(MyCapability() "ptr", trec "ptr", tvar "ptr", new_value "ptr") [];
1072 jump %ENTRY_CODE(Sp(0));
1076 /* -----------------------------------------------------------------------------
1079 * take & putMVar work as follows. Firstly, an important invariant:
1081 * If the MVar is full, then the blocking queue contains only
1082 * threads blocked on putMVar, and if the MVar is empty then the
1083 * blocking queue contains only threads blocked on takeMVar.
1086 * MVar empty : then add ourselves to the blocking queue
1087 * MVar full : remove the value from the MVar, and
1088 * blocking queue empty : return
1089 * blocking queue non-empty : perform the first blocked putMVar
1090 * from the queue, and wake up the
1091 * thread (MVar is now full again)
1093 * putMVar is just the dual of the above algorithm.
1095 * How do we "perform a putMVar"? Well, we have to fiddle around with
1096 * the stack of the thread waiting to do the putMVar. See
1097 * stg_block_putmvar and stg_block_takemvar in HeapStackCheck.c for
1098 * the stack layout, and the PerformPut and PerformTake macros below.
1100 * It is important that a blocked take or put is woken up with the
1101 * take/put already performed, because otherwise there would be a
1102 * small window of vulnerability where the thread could receive an
1103 * exception and never perform its take or put, and we'd end up with a
1106 * -------------------------------------------------------------------------- */
1110 /* args: R1 = MVar closure */
1112 if (StgMVar_value(R1) == stg_END_TSO_QUEUE_closure) {
1124 ALLOC_PRIM ( SIZEOF_StgMVar, NO_PTRS, stg_newMVarzh );
1126 mvar = Hp - SIZEOF_StgMVar + WDS(1);
1127 SET_HDR(mvar,stg_MVAR_DIRTY_info,W_[CCCS]);
1128 // MVARs start dirty: generation 0 has no mutable list
1129 StgMVar_head(mvar) = stg_END_TSO_QUEUE_closure;
1130 StgMVar_tail(mvar) = stg_END_TSO_QUEUE_closure;
1131 StgMVar_value(mvar) = stg_END_TSO_QUEUE_closure;
1136 #define PerformTake(stack, value) \
1137 W_[StgStack_sp(stack) + WDS(1)] = value; \
1138 W_[StgStack_sp(stack) + WDS(0)] = stg_gc_unpt_r1_info;
1140 #define PerformPut(stack,lval) \
1141 StgStack_sp(stack) = StgStack_sp(stack) + WDS(3); \
1142 lval = W_[StgStack_sp(stack) - WDS(1)];
1146 W_ mvar, val, info, tso, q;
1148 /* args: R1 = MVar closure */
1151 #if defined(THREADED_RTS)
1152 ("ptr" info) = foreign "C" lockClosure(mvar "ptr") [];
1154 info = GET_INFO(mvar);
1157 if (info == stg_MVAR_CLEAN_info) {
1158 foreign "C" dirty_MVAR(BaseReg "ptr", mvar "ptr") [];
1161 /* If the MVar is empty, put ourselves on its blocking queue,
1162 * and wait until we're woken up.
1164 if (StgMVar_value(mvar) == stg_END_TSO_QUEUE_closure) {
1166 // Note [mvar-heap-check] We want to do the heap check in the
1167 // branch here, to avoid the conditional in the common case.
1168 // However, we've already locked the MVar above, so we better
1169 // be careful to unlock it again if the the heap check fails.
1170 // Unfortunately we don't have an easy way to inject any code
1171 // into the heap check generated by the code generator, so we
1172 // have to do it in stg_gc_gen (see HeapStackCheck.cmm).
1173 HP_CHK_GEN_TICKY(SIZEOF_StgMVarTSOQueue, R1_PTR, stg_takeMVarzh);
1175 q = Hp - SIZEOF_StgMVarTSOQueue + WDS(1);
1177 SET_HDR(q, stg_MVAR_TSO_QUEUE_info, CCS_SYSTEM);
1178 StgMVarTSOQueue_link(q) = END_TSO_QUEUE;
1179 StgMVarTSOQueue_tso(q) = CurrentTSO;
1181 if (StgMVar_head(mvar) == stg_END_TSO_QUEUE_closure) {
1182 StgMVar_head(mvar) = q;
1184 StgMVarTSOQueue_link(StgMVar_tail(mvar)) = q;
1185 foreign "C" recordClosureMutated(MyCapability() "ptr",
1186 StgMVar_tail(mvar)) [];
1188 StgTSO__link(CurrentTSO) = q;
1189 StgTSO_block_info(CurrentTSO) = mvar;
1190 StgTSO_why_blocked(CurrentTSO) = BlockedOnMVar::I16;
1191 StgMVar_tail(mvar) = q;
1194 jump stg_block_takemvar;
1197 /* we got the value... */
1198 val = StgMVar_value(mvar);
1200 q = StgMVar_head(mvar);
1202 if (q == stg_END_TSO_QUEUE_closure) {
1203 /* No further putMVars, MVar is now empty */
1204 StgMVar_value(mvar) = stg_END_TSO_QUEUE_closure;
1205 unlockClosure(mvar, stg_MVAR_DIRTY_info);
1208 if (StgHeader_info(q) == stg_IND_info ||
1209 StgHeader_info(q) == stg_MSG_NULL_info) {
1210 q = StgInd_indirectee(q);
1214 // There are putMVar(s) waiting... wake up the first thread on the queue
1216 tso = StgMVarTSOQueue_tso(q);
1217 StgMVar_head(mvar) = StgMVarTSOQueue_link(q);
1218 if (StgMVar_head(mvar) == stg_END_TSO_QUEUE_closure) {
1219 StgMVar_tail(mvar) = stg_END_TSO_QUEUE_closure;
1222 ASSERT(StgTSO_why_blocked(tso) == BlockedOnMVar::I16);
1223 ASSERT(StgTSO_block_info(tso) == mvar);
1225 // actually perform the putMVar for the thread that we just woke up
1227 stack = StgTSO_stackobj(tso);
1228 PerformPut(stack, StgMVar_value(mvar));
1230 // indicate that the MVar operation has now completed.
1231 StgTSO__link(tso) = stg_END_TSO_QUEUE_closure;
1233 // no need to mark the TSO dirty, we have only written END_TSO_QUEUE.
1235 foreign "C" tryWakeupThread(MyCapability() "ptr", tso) [];
1237 unlockClosure(mvar, stg_MVAR_DIRTY_info);
1244 W_ mvar, val, info, tso, q;
1246 /* args: R1 = MVar closure */
1249 #if defined(THREADED_RTS)
1250 ("ptr" info) = foreign "C" lockClosure(mvar "ptr") [];
1252 info = GET_INFO(mvar);
1255 /* If the MVar is empty, put ourselves on its blocking queue,
1256 * and wait until we're woken up.
1258 if (StgMVar_value(mvar) == stg_END_TSO_QUEUE_closure) {
1259 #if defined(THREADED_RTS)
1260 unlockClosure(mvar, info);
1262 /* HACK: we need a pointer to pass back,
1263 * so we abuse NO_FINALIZER_closure
1265 RET_NP(0, stg_NO_FINALIZER_closure);
1268 if (info == stg_MVAR_CLEAN_info) {
1269 foreign "C" dirty_MVAR(BaseReg "ptr", mvar "ptr") [];
1272 /* we got the value... */
1273 val = StgMVar_value(mvar);
1275 q = StgMVar_head(mvar);
1277 if (q == stg_END_TSO_QUEUE_closure) {
1278 /* No further putMVars, MVar is now empty */
1279 StgMVar_value(mvar) = stg_END_TSO_QUEUE_closure;
1280 unlockClosure(mvar, stg_MVAR_DIRTY_info);
1283 if (StgHeader_info(q) == stg_IND_info ||
1284 StgHeader_info(q) == stg_MSG_NULL_info) {
1285 q = StgInd_indirectee(q);
1289 // There are putMVar(s) waiting... wake up the first thread on the queue
1291 tso = StgMVarTSOQueue_tso(q);
1292 StgMVar_head(mvar) = StgMVarTSOQueue_link(q);
1293 if (StgMVar_head(mvar) == stg_END_TSO_QUEUE_closure) {
1294 StgMVar_tail(mvar) = stg_END_TSO_QUEUE_closure;
1297 ASSERT(StgTSO_why_blocked(tso) == BlockedOnMVar::I16);
1298 ASSERT(StgTSO_block_info(tso) == mvar);
1300 // actually perform the putMVar for the thread that we just woke up
1302 stack = StgTSO_stackobj(tso);
1303 PerformPut(stack, StgMVar_value(mvar));
1305 // indicate that the MVar operation has now completed.
1306 StgTSO__link(tso) = stg_END_TSO_QUEUE_closure;
1308 // no need to mark the TSO dirty, we have only written END_TSO_QUEUE.
1310 foreign "C" tryWakeupThread(MyCapability() "ptr", tso) [];
1312 unlockClosure(mvar, stg_MVAR_DIRTY_info);
1319 W_ mvar, val, info, tso, q;
1321 /* args: R1 = MVar, R2 = value */
1325 #if defined(THREADED_RTS)
1326 ("ptr" info) = foreign "C" lockClosure(mvar "ptr") [];
1328 info = GET_INFO(mvar);
1331 if (info == stg_MVAR_CLEAN_info) {
1332 foreign "C" dirty_MVAR(BaseReg "ptr", mvar "ptr");
1335 if (StgMVar_value(mvar) != stg_END_TSO_QUEUE_closure) {
1337 // see Note [mvar-heap-check] above
1338 HP_CHK_GEN_TICKY(SIZEOF_StgMVarTSOQueue, R1_PTR & R2_PTR, stg_putMVarzh);
1340 q = Hp - SIZEOF_StgMVarTSOQueue + WDS(1);
1342 SET_HDR(q, stg_MVAR_TSO_QUEUE_info, CCS_SYSTEM);
1343 StgMVarTSOQueue_link(q) = END_TSO_QUEUE;
1344 StgMVarTSOQueue_tso(q) = CurrentTSO;
1346 if (StgMVar_head(mvar) == stg_END_TSO_QUEUE_closure) {
1347 StgMVar_head(mvar) = q;
1349 StgMVarTSOQueue_link(StgMVar_tail(mvar)) = q;
1350 foreign "C" recordClosureMutated(MyCapability() "ptr",
1351 StgMVar_tail(mvar)) [];
1353 StgTSO__link(CurrentTSO) = q;
1354 StgTSO_block_info(CurrentTSO) = mvar;
1355 StgTSO_why_blocked(CurrentTSO) = BlockedOnMVar::I16;
1356 StgMVar_tail(mvar) = q;
1360 jump stg_block_putmvar;
1363 q = StgMVar_head(mvar);
1365 if (q == stg_END_TSO_QUEUE_closure) {
1366 /* No further takes, the MVar is now full. */
1367 StgMVar_value(mvar) = val;
1368 unlockClosure(mvar, stg_MVAR_DIRTY_info);
1369 jump %ENTRY_CODE(Sp(0));
1371 if (StgHeader_info(q) == stg_IND_info ||
1372 StgHeader_info(q) == stg_MSG_NULL_info) {
1373 q = StgInd_indirectee(q);
1377 // There are takeMVar(s) waiting: wake up the first one
1379 tso = StgMVarTSOQueue_tso(q);
1380 StgMVar_head(mvar) = StgMVarTSOQueue_link(q);
1381 if (StgMVar_head(mvar) == stg_END_TSO_QUEUE_closure) {
1382 StgMVar_tail(mvar) = stg_END_TSO_QUEUE_closure;
1385 ASSERT(StgTSO_why_blocked(tso) == BlockedOnMVar::I16);
1386 ASSERT(StgTSO_block_info(tso) == mvar);
1388 // actually perform the takeMVar
1390 stack = StgTSO_stackobj(tso);
1391 PerformTake(stack, val);
1393 // indicate that the MVar operation has now completed.
1394 StgTSO__link(tso) = stg_END_TSO_QUEUE_closure;
1396 if (TO_W_(StgStack_dirty(stack)) == 0) {
1397 foreign "C" dirty_STACK(MyCapability() "ptr", stack "ptr") [];
1400 foreign "C" tryWakeupThread(MyCapability() "ptr", tso) [];
1402 unlockClosure(mvar, stg_MVAR_DIRTY_info);
1403 jump %ENTRY_CODE(Sp(0));
1409 W_ mvar, val, info, tso, q;
1411 /* args: R1 = MVar, R2 = value */
1415 #if defined(THREADED_RTS)
1416 ("ptr" info) = foreign "C" lockClosure(mvar "ptr") [];
1418 info = GET_INFO(mvar);
1421 if (info == stg_MVAR_CLEAN_info) {
1422 foreign "C" dirty_MVAR(BaseReg "ptr", mvar "ptr");
1425 if (StgMVar_value(mvar) != stg_END_TSO_QUEUE_closure) {
1426 #if defined(THREADED_RTS)
1427 unlockClosure(mvar, info);
1432 q = StgMVar_head(mvar);
1434 if (q == stg_END_TSO_QUEUE_closure) {
1435 /* No further takes, the MVar is now full. */
1436 StgMVar_value(mvar) = val;
1437 unlockClosure(mvar, stg_MVAR_DIRTY_info);
1440 if (StgHeader_info(q) == stg_IND_info ||
1441 StgHeader_info(q) == stg_MSG_NULL_info) {
1442 q = StgInd_indirectee(q);
1446 // There are takeMVar(s) waiting: wake up the first one
1448 tso = StgMVarTSOQueue_tso(q);
1449 StgMVar_head(mvar) = StgMVarTSOQueue_link(q);
1450 if (StgMVar_head(mvar) == stg_END_TSO_QUEUE_closure) {
1451 StgMVar_tail(mvar) = stg_END_TSO_QUEUE_closure;
1454 ASSERT(StgTSO_why_blocked(tso) == BlockedOnMVar::I16);
1455 ASSERT(StgTSO_block_info(tso) == mvar);
1457 // actually perform the takeMVar
1459 stack = StgTSO_stackobj(tso);
1460 PerformTake(stack, val);
1462 // indicate that the MVar operation has now completed.
1463 StgTSO__link(tso) = stg_END_TSO_QUEUE_closure;
1465 if (TO_W_(StgStack_dirty(stack)) == 0) {
1466 foreign "C" dirty_STACK(MyCapability() "ptr", stack "ptr") [];
1469 foreign "C" tryWakeupThread(MyCapability() "ptr", tso) [];
1471 unlockClosure(mvar, stg_MVAR_DIRTY_info);
1476 /* -----------------------------------------------------------------------------
1477 Stable pointer primitives
1478 ------------------------------------------------------------------------- */
1480 stg_makeStableNamezh
1484 ALLOC_PRIM( SIZEOF_StgStableName, R1_PTR, stg_makeStableNamezh );
1486 (index) = foreign "C" lookupStableName(R1 "ptr") [];
1488 /* Is there already a StableName for this heap object?
1489 * stable_ptr_table is a pointer to an array of snEntry structs.
1491 if ( snEntry_sn_obj(W_[stable_ptr_table] + index*SIZEOF_snEntry) == NULL ) {
1492 sn_obj = Hp - SIZEOF_StgStableName + WDS(1);
1493 SET_HDR(sn_obj, stg_STABLE_NAME_info, W_[CCCS]);
1494 StgStableName_sn(sn_obj) = index;
1495 snEntry_sn_obj(W_[stable_ptr_table] + index*SIZEOF_snEntry) = sn_obj;
1497 sn_obj = snEntry_sn_obj(W_[stable_ptr_table] + index*SIZEOF_snEntry);
1508 MAYBE_GC(R1_PTR, stg_makeStablePtrzh);
1509 ("ptr" sp) = foreign "C" getStablePtr(R1 "ptr") [];
1513 stg_deRefStablePtrzh
1515 /* Args: R1 = the stable ptr */
1518 r = snEntry_addr(W_[stable_ptr_table] + sp*SIZEOF_snEntry);
1522 /* -----------------------------------------------------------------------------
1523 Bytecode object primitives
1524 ------------------------------------------------------------------------- */
1534 W_ bco, bitmap_arr, bytes, words;
1538 words = BYTES_TO_WDS(SIZEOF_StgBCO) + BYTE_ARR_WDS(bitmap_arr);
1541 ALLOC_PRIM( bytes, R1_PTR&R2_PTR&R3_PTR&R5_PTR, stg_newBCOzh );
1543 bco = Hp - bytes + WDS(1);
1544 SET_HDR(bco, stg_BCO_info, W_[CCCS]);
1546 StgBCO_instrs(bco) = R1;
1547 StgBCO_literals(bco) = R2;
1548 StgBCO_ptrs(bco) = R3;
1549 StgBCO_arity(bco) = HALF_W_(R4);
1550 StgBCO_size(bco) = HALF_W_(words);
1552 // Copy the arity/bitmap info into the BCO
1556 if (i < BYTE_ARR_WDS(bitmap_arr)) {
1557 StgBCO_bitmap(bco,i) = StgArrWords_payload(bitmap_arr,i);
1568 // R1 = the BCO# for the AP
1572 // This function is *only* used to wrap zero-arity BCOs in an
1573 // updatable wrapper (see ByteCodeLink.lhs). An AP thunk is always
1574 // saturated and always points directly to a FUN or BCO.
1575 ASSERT(%INFO_TYPE(%GET_STD_INFO(R1)) == HALF_W_(BCO) &&
1576 StgBCO_arity(R1) == HALF_W_(0));
1578 HP_CHK_GEN_TICKY(SIZEOF_StgAP, R1_PTR, stg_mkApUpd0zh);
1579 TICK_ALLOC_UP_THK(0, 0);
1580 CCCS_ALLOC(SIZEOF_StgAP);
1582 ap = Hp - SIZEOF_StgAP + WDS(1);
1583 SET_HDR(ap, stg_AP_info, W_[CCCS]);
1585 StgAP_n_args(ap) = HALF_W_(0);
1593 /* args: R1 = closure to analyze */
1594 // TODO: Consider the absence of ptrs or nonptrs as a special case ?
1596 W_ info, ptrs, nptrs, p, ptrs_arr, nptrs_arr;
1597 info = %GET_STD_INFO(UNTAG(R1));
1599 // Some closures have non-standard layout, so we omit those here.
1601 type = TO_W_(%INFO_TYPE(info));
1602 switch [0 .. N_CLOSURE_TYPES] type {
1603 case THUNK_SELECTOR : {
1608 case THUNK, THUNK_1_0, THUNK_0_1, THUNK_2_0, THUNK_1_1,
1609 THUNK_0_2, THUNK_STATIC, AP, PAP, AP_STACK, BCO : {
1615 ptrs = TO_W_(%INFO_PTRS(info));
1616 nptrs = TO_W_(%INFO_NPTRS(info));
1621 W_ ptrs_arr_sz, ptrs_arr_cards, nptrs_arr_sz;
1622 nptrs_arr_sz = SIZEOF_StgArrWords + WDS(nptrs);
1623 ptrs_arr_cards = mutArrPtrsCardWords(ptrs);
1624 ptrs_arr_sz = SIZEOF_StgMutArrPtrs + WDS(ptrs) + WDS(ptrs_arr_cards);
1626 ALLOC_PRIM (ptrs_arr_sz + nptrs_arr_sz, R1_PTR, stg_unpackClosurezh);
1631 ptrs_arr = Hp - nptrs_arr_sz - ptrs_arr_sz + WDS(1);
1632 nptrs_arr = Hp - nptrs_arr_sz + WDS(1);
1634 SET_HDR(ptrs_arr, stg_MUT_ARR_PTRS_FROZEN_info, W_[CCCS]);
1635 StgMutArrPtrs_ptrs(ptrs_arr) = ptrs;
1636 StgMutArrPtrs_size(ptrs_arr) = ptrs + ptrs_arr_cards;
1641 W_[ptrs_arr + SIZEOF_StgMutArrPtrs + WDS(p)] = StgClosure_payload(clos,p);
1645 /* We can leave the card table uninitialised, since the array is
1646 allocated in the nursery. The GC will fill it in if/when the array
1649 SET_HDR(nptrs_arr, stg_ARR_WORDS_info, W_[CCCS]);
1650 StgArrWords_bytes(nptrs_arr) = WDS(nptrs);
1654 W_[BYTE_ARR_CTS(nptrs_arr) + WDS(p)] = StgClosure_payload(clos, p+ptrs);
1658 RET_NPP(info, ptrs_arr, nptrs_arr);
1661 /* -----------------------------------------------------------------------------
1662 Thread I/O blocking primitives
1663 -------------------------------------------------------------------------- */
1665 /* Add a thread to the end of the blocked queue. (C-- version of the C
1666 * macro in Schedule.h).
1668 #define APPEND_TO_BLOCKED_QUEUE(tso) \
1669 ASSERT(StgTSO__link(tso) == END_TSO_QUEUE); \
1670 if (W_[blocked_queue_hd] == END_TSO_QUEUE) { \
1671 W_[blocked_queue_hd] = tso; \
1673 foreign "C" setTSOLink(MyCapability() "ptr", W_[blocked_queue_tl] "ptr", tso) []; \
1675 W_[blocked_queue_tl] = tso;
1681 foreign "C" barf("waitRead# on threaded RTS") never returns;
1684 ASSERT(StgTSO_why_blocked(CurrentTSO) == NotBlocked::I16);
1685 StgTSO_why_blocked(CurrentTSO) = BlockedOnRead::I16;
1686 StgTSO_block_info(CurrentTSO) = R1;
1687 // No locking - we're not going to use this interface in the
1688 // threaded RTS anyway.
1689 APPEND_TO_BLOCKED_QUEUE(CurrentTSO);
1690 jump stg_block_noregs;
1698 foreign "C" barf("waitWrite# on threaded RTS") never returns;
1701 ASSERT(StgTSO_why_blocked(CurrentTSO) == NotBlocked::I16);
1702 StgTSO_why_blocked(CurrentTSO) = BlockedOnWrite::I16;
1703 StgTSO_block_info(CurrentTSO) = R1;
1704 // No locking - we're not going to use this interface in the
1705 // threaded RTS anyway.
1706 APPEND_TO_BLOCKED_QUEUE(CurrentTSO);
1707 jump stg_block_noregs;
1712 STRING(stg_delayzh_malloc_str, "stg_delayzh")
1715 #ifdef mingw32_HOST_OS
1723 foreign "C" barf("delay# on threaded RTS") never returns;
1726 /* args: R1 (microsecond delay amount) */
1727 ASSERT(StgTSO_why_blocked(CurrentTSO) == NotBlocked::I16);
1728 StgTSO_why_blocked(CurrentTSO) = BlockedOnDelay::I16;
1730 #ifdef mingw32_HOST_OS
1732 /* could probably allocate this on the heap instead */
1733 ("ptr" ares) = foreign "C" stgMallocBytes(SIZEOF_StgAsyncIOResult,
1734 stg_delayzh_malloc_str);
1735 (reqID) = foreign "C" addDelayRequest(R1);
1736 StgAsyncIOResult_reqID(ares) = reqID;
1737 StgAsyncIOResult_len(ares) = 0;
1738 StgAsyncIOResult_errCode(ares) = 0;
1739 StgTSO_block_info(CurrentTSO) = ares;
1741 /* Having all async-blocked threads reside on the blocked_queue
1742 * simplifies matters, so change the status to OnDoProc put the
1743 * delayed thread on the blocked_queue.
1745 StgTSO_why_blocked(CurrentTSO) = BlockedOnDoProc::I16;
1746 APPEND_TO_BLOCKED_QUEUE(CurrentTSO);
1747 jump stg_block_async_void;
1753 (time) = foreign "C" getourtimeofday() [R1];
1754 divisor = TO_W_(RtsFlags_MiscFlags_tickInterval(RtsFlags));
1758 divisor = divisor * 1000;
1759 target = ((R1 + divisor - 1) / divisor) /* divide rounding up */
1760 + time + 1; /* Add 1 as getourtimeofday rounds down */
1761 StgTSO_block_info(CurrentTSO) = target;
1763 /* Insert the new thread in the sleeping queue. */
1765 t = W_[sleeping_queue];
1767 if (t != END_TSO_QUEUE && StgTSO_block_info(t) < target) {
1769 t = StgTSO__link(t);
1773 StgTSO__link(CurrentTSO) = t;
1775 W_[sleeping_queue] = CurrentTSO;
1777 foreign "C" setTSOLink(MyCapability() "ptr", prev "ptr", CurrentTSO) [];
1779 jump stg_block_noregs;
1781 #endif /* !THREADED_RTS */
1785 #ifdef mingw32_HOST_OS
1786 STRING(stg_asyncReadzh_malloc_str, "stg_asyncReadzh")
1793 foreign "C" barf("asyncRead# on threaded RTS") never returns;
1796 /* args: R1 = fd, R2 = isSock, R3 = len, R4 = buf */
1797 ASSERT(StgTSO_why_blocked(CurrentTSO) == NotBlocked::I16);
1798 StgTSO_why_blocked(CurrentTSO) = BlockedOnRead::I16;
1800 /* could probably allocate this on the heap instead */
1801 ("ptr" ares) = foreign "C" stgMallocBytes(SIZEOF_StgAsyncIOResult,
1802 stg_asyncReadzh_malloc_str)
1804 (reqID) = foreign "C" addIORequest(R1, 0/*FALSE*/,R2,R3,R4 "ptr") [];
1805 StgAsyncIOResult_reqID(ares) = reqID;
1806 StgAsyncIOResult_len(ares) = 0;
1807 StgAsyncIOResult_errCode(ares) = 0;
1808 StgTSO_block_info(CurrentTSO) = ares;
1809 APPEND_TO_BLOCKED_QUEUE(CurrentTSO);
1810 jump stg_block_async;
1814 STRING(stg_asyncWritezh_malloc_str, "stg_asyncWritezh")
1821 foreign "C" barf("asyncWrite# on threaded RTS") never returns;
1824 /* args: R1 = fd, R2 = isSock, R3 = len, R4 = buf */
1825 ASSERT(StgTSO_why_blocked(CurrentTSO) == NotBlocked::I16);
1826 StgTSO_why_blocked(CurrentTSO) = BlockedOnWrite::I16;
1828 ("ptr" ares) = foreign "C" stgMallocBytes(SIZEOF_StgAsyncIOResult,
1829 stg_asyncWritezh_malloc_str)
1831 (reqID) = foreign "C" addIORequest(R1, 1/*TRUE*/,R2,R3,R4 "ptr") [];
1833 StgAsyncIOResult_reqID(ares) = reqID;
1834 StgAsyncIOResult_len(ares) = 0;
1835 StgAsyncIOResult_errCode(ares) = 0;
1836 StgTSO_block_info(CurrentTSO) = ares;
1837 APPEND_TO_BLOCKED_QUEUE(CurrentTSO);
1838 jump stg_block_async;
1842 STRING(stg_asyncDoProczh_malloc_str, "stg_asyncDoProczh")
1849 foreign "C" barf("asyncDoProc# on threaded RTS") never returns;
1852 /* args: R1 = proc, R2 = param */
1853 ASSERT(StgTSO_why_blocked(CurrentTSO) == NotBlocked::I16);
1854 StgTSO_why_blocked(CurrentTSO) = BlockedOnDoProc::I16;
1856 /* could probably allocate this on the heap instead */
1857 ("ptr" ares) = foreign "C" stgMallocBytes(SIZEOF_StgAsyncIOResult,
1858 stg_asyncDoProczh_malloc_str)
1860 (reqID) = foreign "C" addDoProcRequest(R1 "ptr",R2 "ptr") [];
1861 StgAsyncIOResult_reqID(ares) = reqID;
1862 StgAsyncIOResult_len(ares) = 0;
1863 StgAsyncIOResult_errCode(ares) = 0;
1864 StgTSO_block_info(CurrentTSO) = ares;
1865 APPEND_TO_BLOCKED_QUEUE(CurrentTSO);
1866 jump stg_block_async;
1871 /* -----------------------------------------------------------------------------
1874 * noDuplicate# tries to ensure that none of the thunks under
1875 * evaluation by the current thread are also under evaluation by
1876 * another thread. It relies on *both* threads doing noDuplicate#;
1877 * the second one will get blocked if they are duplicating some work.
1879 * The idea is that noDuplicate# is used within unsafePerformIO to
1880 * ensure that the IO operation is performed at most once.
1881 * noDuplicate# calls threadPaused which acquires an exclusive lock on
1882 * all the thunks currently under evaluation by the current thread.
1884 * Consider the following scenario. There is a thunk A, whose
1885 * evaluation requires evaluating thunk B, where thunk B is an
1886 * unsafePerformIO. Two threads, 1 and 2, bother enter A. Thread 2
1887 * is pre-empted before it enters B, and claims A by blackholing it
1888 * (in threadPaused). Thread 1 now enters B, and calls noDuplicate#.
1891 * +-----------+ +---------------+
1892 * | -------+-----> A <-------+------- |
1893 * | update | BLACKHOLE | marked_update |
1894 * +-----------+ +---------------+
1897 * | | +---------------+
1900 * | update | BLACKHOLE
1903 * At this point: A is a blackhole, owned by thread 2. noDuplicate#
1904 * calls threadPaused, which walks up the stack and
1905 * - claims B on behalf of thread 1
1906 * - then it reaches the update frame for A, which it sees is already
1907 * a BLACKHOLE and is therefore owned by another thread. Since
1908 * thread 1 is duplicating work, the computation up to the update
1909 * frame for A is suspended, including thunk B.
1910 * - thunk B, which is an unsafePerformIO, has now been reverted to
1911 * an AP_STACK which could be duplicated - BAD!
1912 * - The solution is as follows: before calling threadPaused, we
1913 * leave a frame on the stack (stg_noDuplicate_info) that will call
1914 * noDuplicate# again if the current computation is suspended and
1917 * See the test program in concurrent/prog003 for a way to demonstrate
1918 * this. It needs to be run with +RTS -N3 or greater, and the bug
1919 * only manifests occasionally (once very 10 runs or so).
1920 * -------------------------------------------------------------------------- */
1922 INFO_TABLE_RET(stg_noDuplicate, RET_SMALL)
1925 jump stg_noDuplicatezh;
1930 STK_CHK_GEN( WDS(1), NO_PTRS, stg_noDuplicatezh );
1931 // leave noDuplicate frame in case the current
1932 // computation is suspended and restarted (see above).
1934 Sp(0) = stg_noDuplicate_info;
1936 SAVE_THREAD_STATE();
1937 ASSERT(StgTSO_what_next(CurrentTSO) == ThreadRunGHC::I16);
1938 foreign "C" threadPaused (MyCapability() "ptr", CurrentTSO "ptr") [];
1940 if (StgTSO_what_next(CurrentTSO) == ThreadKilled::I16) {
1941 jump stg_threadFinished;
1943 LOAD_THREAD_STATE();
1944 ASSERT(StgTSO_what_next(CurrentTSO) == ThreadRunGHC::I16);
1945 // remove the stg_noDuplicate frame if it is still there.
1946 if (Sp(0) == stg_noDuplicate_info) {
1949 jump %ENTRY_CODE(Sp(0));
1953 /* -----------------------------------------------------------------------------
1955 -------------------------------------------------------------------------- */
1959 W_ ap_stack, offset, val, ok;
1961 /* args: R1 = AP_STACK, R2 = offset */
1965 if (%INFO_PTR(ap_stack) == stg_AP_STACK_info) {
1967 val = StgAP_STACK_payload(ap_stack,offset);
1975 // Write the cost center stack of the first argument on stderr; return
1976 // the second. Possibly only makes sense for already evaluated
1983 ccs = StgHeader_ccs(UNTAG(R1));
1984 foreign "C" fprintCCS_stderr(ccs "ptr") [R2];
1995 #ifndef THREADED_RTS
1996 RET_NP(0,ghczmprim_GHCziTypes_False_closure);
1998 (spark) = foreign "C" findSpark(MyCapability());
2002 RET_NP(0,ghczmprim_GHCziTypes_False_closure);
2011 (n) = foreign "C" dequeElements(Capability_sparks(MyCapability()));
2023 #if defined(TRACING) || defined(DEBUG)
2025 foreign "C" traceUserMsg(MyCapability() "ptr", msg "ptr") [];
2027 #elif defined(DTRACE)
2031 // We should go through the macro HASKELLEVENT_USER_MSG_ENABLED from
2032 // RtsProbes.h, but that header file includes unistd.h, which doesn't
2034 (enabled) = foreign "C" __dtrace_isenabled$HaskellEvent$user__msg$v1() [];
2036 foreign "C" dtraceUserMsgWrapper(MyCapability() "ptr", msg "ptr") [];
2040 jump %ENTRY_CODE(Sp(0));