1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3 * ***** BEGIN LICENSE BLOCK *****
4 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
6 * The contents of this file are subject to the Mozilla Public License Version
7 * 1.1 (the "License"); you may not use this file except in compliance with
8 * the License. You may obtain a copy of the License at
9 * http://www.mozilla.org/MPL/
11 * Software distributed under the License is distributed on an "AS IS" basis,
12 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
13 * for the specific language governing rights and limitations under the
16 * The Original Code is Mozilla Communicator client code, released
19 * The Initial Developer of the Original Code is
20 * Netscape Communications Corporation.
21 * Portions created by the Initial Developer are Copyright (C) 1998
22 * the Initial Developer. All Rights Reserved.
26 * Alternatively, the contents of this file may be used under the terms of
27 * either of the GNU General Public License Version 2 or later (the "GPL"),
28 * or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
29 * in which case the provisions of the GPL or the LGPL are applicable instead
30 * of those above. If you wish to allow use of your version of this file only
31 * under the terms of either the GPL or the LGPL, and not to allow others to
32 * use your version of this file under the terms of the MPL, indicate your
33 * decision by deleting the provisions above and replace them with the notice
34 * and other provisions required by the GPL or the LGPL. If you do not delete
35 * the provisions above, a recipient may use your version of this file under
36 * the terms of any one of the MPL, the GPL or the LGPL.
38 * ***** END LICENSE BLOCK ***** */
49 #include "jsutil.h" /* Added by JSIFY */
55 #include "jsfun.h" /* for VALUE_IS_FUNCTION used by *_WRITE_BARRIER */
60 #define ReadWord(W) (W)
62 /* Implement NativeCompareAndSwap. */
64 #if defined(_WIN32) && defined(_M_IX86)
65 #pragma warning( disable : 4035 )
68 _InterlockedCompareExchange(long *volatile dest
, long exchange
, long comp
);
70 #pragma intrinsic(_InterlockedCompareExchange)
72 static JS_ALWAYS_INLINE
int
73 NativeCompareAndSwapHelper(jsword
*w
, jsword ov
, jsword nv
)
75 _InterlockedCompareExchange(w
, nv
, ov
);
81 static JS_ALWAYS_INLINE
int
82 NativeCompareAndSwap(jsword
*w
, jsword ov
, jsword nv
)
84 return (NativeCompareAndSwapHelper(w
, ov
, nv
) & 1);
87 #elif defined(XP_MACOSX) || defined(DARWIN)
89 #include <libkern/OSAtomic.h>
91 static JS_ALWAYS_INLINE
int
92 NativeCompareAndSwap(jsword
*w
, jsword ov
, jsword nv
)
94 /* Details on these functions available in the manpage for atomic */
95 #if JS_BYTES_PER_WORD == 8 && JS_BYTES_PER_LONG != 8
96 return OSAtomicCompareAndSwap64Barrier(ov
, nv
, (int64_t*) w
);
98 return OSAtomicCompareAndSwap32Barrier(ov
, nv
, (int32_t*) w
);
102 #elif defined(__GNUC__) && defined(__i386__)
104 /* Note: This fails on 386 cpus, cmpxchgl is a >= 486 instruction */
105 static JS_ALWAYS_INLINE
int
106 NativeCompareAndSwap(jsword
*w
, jsword ov
, jsword nv
)
110 __asm__
__volatile__ (
112 "cmpxchgl %2, (%1)\n"
116 : "r" (w
), "r" (nv
), "a" (ov
)
121 #elif defined(__GNUC__) && defined(__x86_64__)
122 static JS_ALWAYS_INLINE
int
123 NativeCompareAndSwap(jsword
*w
, jsword ov
, jsword nv
)
127 __asm__
__volatile__ (
129 "cmpxchgq %2, (%1)\n"
131 "movzbl %%al, %%eax\n"
133 : "r" (w
), "r" (nv
), "a" (ov
)
138 #elif defined(SOLARIS) && defined(sparc) && defined(ULTRA_SPARC)
140 static JS_ALWAYS_INLINE
int
141 NativeCompareAndSwap(jsword
*w
, jsword ov
, jsword nv
)
143 #if defined(__GNUC__)
155 : "r" (w
), "r" (ov
), "r" (nv
));
157 #else /* !__GNUC__ */
158 extern int compare_and_swap(jsword
*, jsword
, jsword
);
160 return compare_and_swap(w
, ov
, nv
);
166 #include <sys/atomic_op.h>
168 static JS_ALWAYS_INLINE
int
169 NativeCompareAndSwap(jsword
*w
, jsword ov
, jsword nv
)
171 return !_check_lock((atomic_p
)w
, ov
, nv
);
174 #elif defined(USE_ARM_KUSER)
176 /* See https://bugzilla.mozilla.org/show_bug.cgi?id=429387 for a
177 * description of this ABI; this is a function provided at a fixed
178 * location by the kernel in the memory space of each process.
180 typedef int (__kernel_cmpxchg_t
)(int oldval
, int newval
, volatile int *ptr
);
181 #define __kernel_cmpxchg (*(__kernel_cmpxchg_t *)0xffff0fc0)
183 JS_STATIC_ASSERT(sizeof(jsword
) == sizeof(int));
185 static JS_ALWAYS_INLINE
int
186 NativeCompareAndSwap(jsword
*w
, jsword ov
, jsword nv
)
188 volatile int *vp
= (volatile int *) w
;
191 /* Loop until a __kernel_cmpxchg succeeds. See bug 446169 */
193 failed
= __kernel_cmpxchg(ov
, nv
, vp
);
194 } while (failed
&& *vp
== ov
);
198 #elif JS_HAS_NATIVE_COMPARE_AND_SWAP
200 #error "JS_HAS_NATIVE_COMPARE_AND_SWAP should be 0 if your platform lacks a compare-and-swap instruction."
202 #endif /* arch-tests */
204 #if JS_HAS_NATIVE_COMPARE_AND_SWAP
207 js_CompareAndSwap(jsword
*w
, jsword ov
, jsword nv
)
209 return !!NativeCompareAndSwap(w
, ov
, nv
);
212 #elif defined(NSPR_LOCK)
215 # warning "js_CompareAndSwap is implemented using NSSP lock"
219 js_CompareAndSwap(jsword
*w
, jsword ov
, jsword nv
)
222 static PRLock
*CompareAndSwapLock
= JS_NEW_LOCK();
224 JS_ACQUIRE_LOCK(CompareAndSwapLock
);
228 JS_RELEASE_LOCK(CompareAndSwapLock
);
232 #else /* !defined(NSPR_LOCK) */
234 #error "NSPR_LOCK should be on when the platform lacks native compare-and-swap."
248 typedef struct JSFatLockTable
{
253 #define GLOBAL_LOCK_INDEX(id) (((uint32)(jsuword)(id)>>2) & global_locks_mask)
256 js_Dequeue(JSThinLock
*);
258 static PRLock
**global_locks
;
259 static uint32 global_lock_count
= 1;
260 static uint32 global_locks_log2
= 0;
261 static uint32 global_locks_mask
= 0;
264 js_LockGlobal(void *id
)
266 uint32 i
= GLOBAL_LOCK_INDEX(id
);
267 PR_Lock(global_locks
[i
]);
271 js_UnlockGlobal(void *id
)
273 uint32 i
= GLOBAL_LOCK_INDEX(id
);
274 PR_Unlock(global_locks
[i
]);
277 #endif /* !NSPR_LOCK */
280 js_InitLock(JSThinLock
*tl
)
284 tl
->fat
= (JSFatLock
*)JS_NEW_LOCK();
286 memset(tl
, 0, sizeof(JSThinLock
));
291 js_FinishLock(JSThinLock
*tl
)
294 tl
->owner
= 0xdeadbeef;
296 JS_DESTROY_LOCK(((JSLock
*)tl
->fat
));
298 JS_ASSERT(tl
->owner
== 0);
299 JS_ASSERT(tl
->fat
== NULL
);
303 #ifdef DEBUG_SCOPE_COUNT
309 static JSDHashTable logtbl
;
311 typedef struct logentry
{
312 JSDHashEntryStub stub
;
319 logit(JSScope
*scope
, char op
, const char *file
, int line
)
324 logfp
= fopen("/tmp/scope.log", "w");
327 setvbuf(logfp
, NULL
, _IONBF
, 0);
329 fprintf(logfp
, "%p %c %s %d\n", scope
, op
, file
, line
);
331 if (!logtbl
.entryStore
&&
332 !JS_DHashTableInit(&logtbl
, JS_DHashGetStubOps(), NULL
,
333 sizeof(logentry
), 100)) {
336 entry
= (logentry
*) JS_DHashTableOperate(&logtbl
, scope
, JS_DHASH_ADD
);
339 entry
->stub
.key
= scope
;
346 js_unlog_scope(JSScope
*scope
)
348 if (!logtbl
.entryStore
)
350 (void) JS_DHashTableOperate(&logtbl
, scope
, JS_DHASH_REMOVE
);
353 # define LOGIT(scope,op) logit(scope, op, __FILE__, __LINE__)
357 # define LOGIT(scope,op) /* nothing */
359 #endif /* DEBUG_SCOPE_COUNT */
362 * Return true if scope's ownercx, or the ownercx of a single-threaded scope
363 * for which ownercx is waiting to become multi-threaded and shared, is cx.
364 * That condition implies deadlock in ClaimScope if cx's thread were to wait
367 * (i) rt->gcLock held
370 WillDeadlock(JSTitle
*title
, JSContext
*cx
)
375 ownercx
= title
->ownercx
;
377 JS_RUNTIME_METER(cx
->runtime
, deadlocksAvoided
);
380 } while (ownercx
&& (title
= ownercx
->titleToShare
) != NULL
);
385 * Make title multi-threaded, i.e. share its ownership among contexts in rt
386 * using a "thin" or (if necessary due to contention) "fat" lock. Called only
387 * from ClaimTitle, immediately below, when we detect deadlock were we to wait
388 * for title's lock, because its ownercx is waiting on a title owned by the
391 * (i) rt->gcLock held
394 ShareTitle(JSContext
*cx
, JSTitle
*title
)
401 for (todop
= &rt
->titleSharingTodo
; *todop
!= title
;
402 todop
= &(*todop
)->u
.link
) {
403 JS_ASSERT(*todop
!= NO_TITLE_SHARING_TODO
);
405 *todop
= title
->u
.link
;
406 title
->u
.link
= NULL
; /* null u.link for sanity ASAP */
407 JS_NOTIFY_ALL_CONDVAR(rt
->titleSharingDone
);
409 js_InitLock(&title
->lock
);
411 js_FinishSharingTitle(cx
, title
);
415 * js_FinishSharingTitle is the tail part of ShareTitle, split out to become a
416 * subroutine of JS_EndRequest too. The bulk of the work here involves making
417 * mutable strings in the title's object's slots be immutable. We have to do
418 * this because such strings will soon be available to multiple threads, so
419 * their buffers can't be realloc'd any longer in js_ConcatStrings, and their
420 * members can't be modified by js_ConcatStrings, js_MinimizeDependentStrings,
421 * or js_UndependString.
423 * The last bit of work done by js_FinishSharingTitle nulls title->ownercx and
424 * updates rt->sharedTitles.
428 js_FinishSharingTitle(JSContext
*cx
, JSTitle
*title
)
436 map
= TITLE_TO_MAP(title
);
437 if (!MAP_IS_NATIVE(map
))
439 scope
= (JSScope
*)map
;
443 nslots
= scope
->map
.freeslot
;
444 for (i
= 0; i
!= nslots
; ++i
) {
445 v
= STOBJ_GET_SLOT(obj
, i
);
446 if (JSVAL_IS_STRING(v
) &&
447 !js_MakeStringImmutable(cx
, JSVAL_TO_STRING(v
))) {
449 * FIXME bug 363059: The following error recovery changes
450 * runtime execution semantics, arbitrarily and silently
451 * ignoring errors except out-of-memory, which should have been
452 * reported through JS_ReportOutOfMemory at this point.
454 STOBJ_SET_SLOT(obj
, i
, JSVAL_VOID
);
459 title
->ownercx
= NULL
; /* NB: set last, after lock init */
460 JS_RUNTIME_METER(cx
->runtime
, sharedTitles
);
464 * Given a title with apparently non-null ownercx different from cx, try to
465 * set ownercx to cx, claiming exclusive (single-threaded) ownership of title.
466 * If we claim ownership, return true. Otherwise, we wait for ownercx to be
467 * set to null (indicating that title is multi-threaded); or if waiting would
468 * deadlock, we set ownercx to null ourselves via ShareTitle. In any case,
469 * once ownercx is null we return false.
472 ClaimTitle(JSTitle
*title
, JSContext
*cx
)
476 jsrefcount saveDepth
;
480 JS_RUNTIME_METER(rt
, claimAttempts
);
483 /* Reload in case ownercx went away while we blocked on the lock. */
484 while ((ownercx
= title
->ownercx
) != NULL
) {
486 * Avoid selflock if ownercx is dead, or is not running a request, or
487 * has the same thread as cx. Set title->ownercx to cx so that the
488 * matching JS_UNLOCK_SCOPE or JS_UNLOCK_OBJ macro call will take the
489 * fast path around the corresponding js_UnlockTitle or js_UnlockObj
492 * If title->u.link is non-null, title has already been inserted on
493 * the rt->titleSharingTodo list, because another thread's context
494 * already wanted to lock title while ownercx was running a request.
495 * We can't claim any title whose u.link is non-null at this point,
496 * even if ownercx->requestDepth is 0 (see below where we suspend our
497 * request before waiting on rt->titleSharingDone).
499 if (!title
->u
.link
&&
500 (!js_ValidContextPointer(rt
, ownercx
) ||
501 !ownercx
->requestDepth
||
502 ownercx
->thread
== cx
->thread
)) {
503 JS_ASSERT(title
->u
.count
== 0);
506 JS_RUNTIME_METER(rt
, claimedTitles
);
511 * Avoid deadlock if title's owner context is waiting on a title that
512 * we own, by revoking title's ownership. This approach to deadlock
513 * avoidance works because the engine never nests title locks.
515 * If cx could hold locks on ownercx->titleToShare, or if ownercx could
516 * hold locks on title, we would need to keep reentrancy counts for all
517 * such "flyweight" (ownercx != NULL) locks, so that control would
518 * unwind properly once these locks became "thin" or "fat". The engine
519 * promotes a title from exclusive to shared access only when locking,
520 * never when holding or unlocking.
522 * Avoid deadlock before any of this title/context cycle detection if
523 * cx is on the active GC's thread, because in that case, no requests
524 * will run until the GC completes. Any title wanted by the GC (from
525 * a finalizer) that can't be claimed must become shared.
527 if (rt
->gcThread
== cx
->thread
||
528 (ownercx
->titleToShare
&&
529 WillDeadlock(ownercx
->titleToShare
, cx
))) {
530 ShareTitle(cx
, title
);
535 * Thanks to the non-zero NO_TITLE_SHARING_TODO link terminator, we
536 * can decide whether title is on rt->titleSharingTodo with a single
537 * non-null test, and avoid double-insertion bugs.
539 if (!title
->u
.link
) {
540 title
->u
.link
= rt
->titleSharingTodo
;
541 rt
->titleSharingTodo
= title
;
542 js_HoldObjectMap(cx
, TITLE_TO_MAP(title
));
546 * Inline JS_SuspendRequest before we wait on rt->titleSharingDone,
547 * saving and clearing cx->requestDepth so we don't deadlock if the
548 * GC needs to run on ownercx.
550 * Unlike JS_SuspendRequest and JS_EndRequest, we must take care not
551 * to decrement rt->requestCount if cx is active on the GC's thread,
552 * because the GC has already reduced rt->requestCount to exclude all
553 * such such contexts.
555 saveDepth
= cx
->requestDepth
;
557 cx
->requestDepth
= 0;
558 if (rt
->gcThread
!= cx
->thread
) {
559 JS_ASSERT(rt
->requestCount
> 0);
561 if (rt
->requestCount
== 0)
562 JS_NOTIFY_REQUEST_DONE(rt
);
567 * We know that some other thread's context owns title, which is now
568 * linked onto rt->titleSharingTodo, awaiting the end of that other
569 * thread's request. So it is safe to wait on rt->titleSharingDone.
571 cx
->titleToShare
= title
;
572 stat
= PR_WaitCondVar(rt
->titleSharingDone
, PR_INTERVAL_NO_TIMEOUT
);
573 JS_ASSERT(stat
!= PR_FAILURE
);
576 * Inline JS_ResumeRequest after waiting on rt->titleSharingDone,
577 * restoring cx->requestDepth. Same note as above for the inlined,
578 * specialized JS_SuspendRequest code: beware rt->gcThread.
581 if (rt
->gcThread
!= cx
->thread
) {
582 while (rt
->gcLevel
> 0)
583 JS_AWAIT_GC_DONE(rt
);
586 cx
->requestDepth
= saveDepth
;
590 * Don't clear cx->titleToShare until after we're through waiting on
591 * all condition variables protected by rt->gcLock -- that includes
592 * rt->titleSharingDone *and* rt->gcDone (hidden in JS_AWAIT_GC_DONE,
593 * in the inlined JS_ResumeRequest code immediately above).
595 * Otherwise, the GC could easily deadlock with another thread that
596 * owns a title wanted by a finalizer. By keeping cx->titleToShare
597 * set till here, we ensure that such deadlocks are detected, which
598 * results in the finalized object's title being shared (it must, of
599 * course, have other, live objects sharing it).
601 cx
->titleToShare
= NULL
;
608 /* Exported to js.c, which calls it via OBJ_GET_* and JSVAL_IS_* macros. */
610 js_GetSlotThreadSafe(JSContext
*cx
, JSObject
*obj
, uint32 slot
)
621 * We handle non-native objects via JSObjectOps.getRequiredSlot, treating
622 * all slots starting from 0 as required slots. A property definition or
623 * some prior arrangement must have allocated slot.
625 * Note once again (see jspubtd.h, before JSGetRequiredSlotOp's typedef)
626 * the crucial distinction between a |required slot number| that's passed
627 * to the get/setRequiredSlot JSObjectOps, and a |reserved slot index|
628 * passed to the JS_Get/SetReservedSlot APIs.
630 if (!OBJ_IS_NATIVE(obj
))
631 return OBJ_GET_REQUIRED_SLOT(cx
, obj
, slot
);
634 * Native object locking is inlined here to optimize the single-threaded
635 * and contention-free multi-threaded cases.
637 scope
= OBJ_SCOPE(obj
);
638 title
= &scope
->title
;
639 JS_ASSERT(title
->ownercx
!= cx
);
640 JS_ASSERT(slot
< obj
->map
->freeslot
);
643 * Avoid locking if called from the GC. Also avoid locking an object
644 * owning a sealed scope. If neither of those special cases applies, try
645 * to claim scope's flyweight lock from whatever context may have had it in
646 * an earlier request.
648 if (CX_THREAD_IS_RUNNING_GC(cx
) ||
649 (SCOPE_IS_SEALED(scope
) && scope
->object
== obj
) ||
650 (title
->ownercx
&& ClaimTitle(title
, cx
))) {
651 return STOBJ_GET_SLOT(obj
, slot
);
656 me
= CX_THINLOCK_ID(cx
);
657 JS_ASSERT(CURRENT_THREAD_IS_ME(me
));
658 if (NativeCompareAndSwap(&tl
->owner
, 0, me
)) {
660 * Got the lock with one compare-and-swap. Even so, someone else may
661 * have mutated obj so it now has its own scope and lock, which would
662 * require either a restart from the top of this routine, or a thin
663 * lock release followed by fat lock acquisition.
665 if (scope
== OBJ_SCOPE(obj
)) {
666 v
= STOBJ_GET_SLOT(obj
, slot
);
667 if (!NativeCompareAndSwap(&tl
->owner
, me
, 0)) {
668 /* Assert that scope locks never revert to flyweight. */
669 JS_ASSERT(title
->ownercx
!= cx
);
672 js_UnlockObj(cx
, obj
);
676 if (!NativeCompareAndSwap(&tl
->owner
, me
, 0))
679 else if (Thin_RemoveWait(ReadWord(tl
->owner
)) == me
) {
680 return STOBJ_GET_SLOT(obj
, slot
);
685 v
= STOBJ_GET_SLOT(obj
, slot
);
688 * Test whether cx took ownership of obj's scope during js_LockObj.
690 * This does not mean that a given scope reverted to flyweight from "thin"
691 * or "fat" -- it does mean that obj's map pointer changed due to another
692 * thread setting a property, requiring obj to cease sharing a prototype
693 * object's scope (whose lock was not flyweight, else we wouldn't be here
694 * in the first place!).
696 title
= &OBJ_SCOPE(obj
)->title
;
697 if (title
->ownercx
!= cx
)
698 js_UnlockTitle(cx
, title
);
703 js_SetSlotThreadSafe(JSContext
*cx
, JSObject
*obj
, uint32 slot
, jsval v
)
712 /* Any string stored in a thread-safe object must be immutable. */
713 if (JSVAL_IS_STRING(v
) &&
714 !js_MakeStringImmutable(cx
, JSVAL_TO_STRING(v
))) {
715 /* FIXME bug 363059: See comments in js_FinishSharingScope. */
720 * We handle non-native objects via JSObjectOps.setRequiredSlot, as above
723 if (!OBJ_IS_NATIVE(obj
)) {
724 OBJ_SET_REQUIRED_SLOT(cx
, obj
, slot
, v
);
729 * Native object locking is inlined here to optimize the single-threaded
730 * and contention-free multi-threaded cases.
732 scope
= OBJ_SCOPE(obj
);
733 title
= &scope
->title
;
734 JS_ASSERT(title
->ownercx
!= cx
);
735 JS_ASSERT(slot
< obj
->map
->freeslot
);
738 * Avoid locking if called from the GC. Also avoid locking an object
739 * owning a sealed scope. If neither of those special cases applies, try
740 * to claim scope's flyweight lock from whatever context may have had it in
741 * an earlier request.
743 if (CX_THREAD_IS_RUNNING_GC(cx
) ||
744 (SCOPE_IS_SEALED(scope
) && scope
->object
== obj
) ||
745 (title
->ownercx
&& ClaimTitle(title
, cx
))) {
746 LOCKED_OBJ_WRITE_BARRIER(cx
, obj
, slot
, v
);
752 me
= CX_THINLOCK_ID(cx
);
753 JS_ASSERT(CURRENT_THREAD_IS_ME(me
));
754 if (NativeCompareAndSwap(&tl
->owner
, 0, me
)) {
755 if (scope
== OBJ_SCOPE(obj
)) {
756 LOCKED_OBJ_WRITE_BARRIER(cx
, obj
, slot
, v
);
757 if (!NativeCompareAndSwap(&tl
->owner
, me
, 0)) {
758 /* Assert that scope locks never revert to flyweight. */
759 JS_ASSERT(title
->ownercx
!= cx
);
762 js_UnlockObj(cx
, obj
);
766 if (!NativeCompareAndSwap(&tl
->owner
, me
, 0))
769 else if (Thin_RemoveWait(ReadWord(tl
->owner
)) == me
) {
770 LOCKED_OBJ_WRITE_BARRIER(cx
, obj
, slot
, v
);
776 LOCKED_OBJ_WRITE_BARRIER(cx
, obj
, slot
, v
);
779 * Same drill as above, in js_GetSlotThreadSafe.
781 title
= &OBJ_SCOPE(obj
)->title
;
782 if (title
->ownercx
!= cx
)
783 js_UnlockTitle(cx
, title
);
791 JSFatLock
*fl
= (JSFatLock
*)malloc(sizeof(JSFatLock
)); /* for now */
792 if (!fl
) return NULL
;
796 fl
->slock
= PR_NewLock();
797 fl
->svar
= PR_NewCondVar(fl
->slock
);
802 DestroyFatlock(JSFatLock
*fl
)
804 PR_DestroyLock(fl
->slock
);
805 PR_DestroyCondVar(fl
->svar
);
810 ListOfFatlocks(int listc
)
817 m0
= m
= NewFatlock();
818 for (i
=1; i
<listc
; i
++) {
819 m
->next
= NewFatlock();
826 DeleteListOfFatlocks(JSFatLock
*m
)
835 static JSFatLockTable
*fl_list_table
= NULL
;
836 static uint32 fl_list_table_len
= 0;
837 static uint32 fl_list_chunk_len
= 0;
844 uint32 i
= GLOBAL_LOCK_INDEX(id
);
845 if (fl_list_table
[i
].free
== NULL
) {
847 if (fl_list_table
[i
].taken
)
848 printf("Ran out of fat locks!\n");
850 fl_list_table
[i
].free
= ListOfFatlocks(fl_list_chunk_len
);
852 m
= fl_list_table
[i
].free
;
853 fl_list_table
[i
].free
= m
->next
;
855 m
->next
= fl_list_table
[i
].taken
;
856 m
->prevp
= &fl_list_table
[i
].taken
;
857 if (fl_list_table
[i
].taken
)
858 fl_list_table
[i
].taken
->prevp
= &m
->next
;
859 fl_list_table
[i
].taken
= m
;
864 PutFatlock(JSFatLock
*m
, void *id
)
870 /* Unlink m from fl_list_table[i].taken. */
873 m
->next
->prevp
= m
->prevp
;
875 /* Insert m in fl_list_table[i].free. */
876 i
= GLOBAL_LOCK_INDEX(id
);
877 m
->next
= fl_list_table
[i
].free
;
878 fl_list_table
[i
].free
= m
;
881 #endif /* !NSPR_LOCK */
884 js_SetupLocks(int listc
, int globc
)
892 if (listc
> 10000 || listc
< 0) /* listc == fat lock list chunk length */
893 printf("Bad number %d in js_SetupLocks()!\n", listc
);
894 if (globc
> 100 || globc
< 0) /* globc == number of global locks */
895 printf("Bad number %d in js_SetupLocks()!\n", listc
);
897 global_locks_log2
= JS_CeilingLog2(globc
);
898 global_locks_mask
= JS_BITMASK(global_locks_log2
);
899 global_lock_count
= JS_BIT(global_locks_log2
);
900 global_locks
= (PRLock
**) malloc(global_lock_count
* sizeof(PRLock
*));
903 for (i
= 0; i
< global_lock_count
; i
++) {
904 global_locks
[i
] = PR_NewLock();
905 if (!global_locks
[i
]) {
906 global_lock_count
= i
;
911 fl_list_table
= (JSFatLockTable
*) malloc(i
* sizeof(JSFatLockTable
));
912 if (!fl_list_table
) {
916 fl_list_table_len
= global_lock_count
;
917 for (i
= 0; i
< global_lock_count
; i
++)
918 fl_list_table
[i
].free
= fl_list_table
[i
].taken
= NULL
;
919 fl_list_chunk_len
= listc
;
920 #endif /* !NSPR_LOCK */
931 for (i
= 0; i
< global_lock_count
; i
++)
932 PR_DestroyLock(global_locks
[i
]);
935 global_lock_count
= 1;
936 global_locks_log2
= 0;
937 global_locks_mask
= 0;
940 for (i
= 0; i
< fl_list_table_len
; i
++) {
941 DeleteListOfFatlocks(fl_list_table
[i
].free
);
942 fl_list_table
[i
].free
= NULL
;
943 DeleteListOfFatlocks(fl_list_table
[i
].taken
);
944 fl_list_table
[i
].taken
= NULL
;
947 fl_list_table
= NULL
;
948 fl_list_table_len
= 0;
950 #endif /* !NSPR_LOCK */
955 static JS_ALWAYS_INLINE
void
956 ThinLock(JSThinLock
*tl
, jsword me
)
958 JS_ACQUIRE_LOCK((JSLock
*) tl
->fat
);
962 static JS_ALWAYS_INLINE
void
963 ThinUnlock(JSThinLock
*tl
, jsword
/*me*/)
966 JS_RELEASE_LOCK((JSLock
*) tl
->fat
);
972 * Fast locking and unlocking is implemented by delaying the allocation of a
973 * system lock (fat lock) until contention. As long as a locking thread A
974 * runs uncontended, the lock is represented solely by storing A's identity in
975 * the object being locked.
977 * If another thread B tries to lock the object currently locked by A, B is
978 * enqueued into a fat lock structure (which might have to be allocated and
979 * pointed to by the object), and suspended using NSPR conditional variables
980 * (wait). A wait bit (Bacon bit) is set in the lock word of the object,
981 * signalling to A that when releasing the lock, B must be dequeued and
984 * The basic operation of the locking primitives (js_Lock, js_Unlock,
985 * js_Enqueue, and js_Dequeue) is compare-and-swap. Hence, when locking into
986 * the word pointed at by p, compare-and-swap(p, 0, A) success implies that p
987 * is unlocked. Similarly, when unlocking p, if compare-and-swap(p, A, 0)
988 * succeeds this implies that p is uncontended (no one is waiting because the
989 * wait bit is not set).
991 * When dequeueing, the lock is released, and one of the threads suspended on
992 * the lock is notified. If other threads still are waiting, the wait bit is
993 * kept (in js_Enqueue), and if not, the fat lock is deallocated.
995 * The functions js_Enqueue, js_Dequeue, js_SuspendThread, and js_ResumeThread
996 * are serialized using a global lock. For scalability, a hashtable of global
997 * locks is used, which is indexed modulo the thin lock pointer.
1002 * (i) global lock is held
1003 * (ii) fl->susp >= 0
1006 js_SuspendThread(JSThinLock
*tl
)
1011 if (tl
->fat
== NULL
)
1012 fl
= tl
->fat
= GetFatlock(tl
);
1015 JS_ASSERT(fl
->susp
>= 0);
1018 js_UnlockGlobal(tl
);
1019 stat
= PR_WaitCondVar(fl
->svar
, PR_INTERVAL_NO_TIMEOUT
);
1020 JS_ASSERT(stat
!= PR_FAILURE
);
1021 PR_Unlock(fl
->slock
);
1024 if (fl
->susp
== 0) {
1028 return tl
->fat
== NULL
;
1032 * (i) global lock is held
1036 js_ResumeThread(JSThinLock
*tl
)
1038 JSFatLock
*fl
= tl
->fat
;
1041 JS_ASSERT(fl
!= NULL
);
1042 JS_ASSERT(fl
->susp
> 0);
1044 js_UnlockGlobal(tl
);
1045 stat
= PR_NotifyCondVar(fl
->svar
);
1046 JS_ASSERT(stat
!= PR_FAILURE
);
1047 PR_Unlock(fl
->slock
);
1051 js_Enqueue(JSThinLock
*tl
, jsword me
)
1057 o
= ReadWord(tl
->owner
);
1058 n
= Thin_SetWait(o
);
1059 if (o
!= 0 && NativeCompareAndSwap(&tl
->owner
, o
, n
)) {
1060 if (js_SuspendThread(tl
))
1061 me
= Thin_RemoveWait(me
);
1063 me
= Thin_SetWait(me
);
1065 else if (NativeCompareAndSwap(&tl
->owner
, 0, me
)) {
1066 js_UnlockGlobal(tl
);
1073 js_Dequeue(JSThinLock
*tl
)
1078 o
= ReadWord(tl
->owner
);
1079 JS_ASSERT(Thin_GetWait(o
) != 0);
1080 JS_ASSERT(tl
->fat
!= NULL
);
1081 if (!NativeCompareAndSwap(&tl
->owner
, o
, 0)) /* release it */
1083 js_ResumeThread(tl
);
1086 static JS_ALWAYS_INLINE
void
1087 ThinLock(JSThinLock
*tl
, jsword me
)
1089 JS_ASSERT(CURRENT_THREAD_IS_ME(me
));
1090 if (NativeCompareAndSwap(&tl
->owner
, 0, me
))
1092 if (Thin_RemoveWait(ReadWord(tl
->owner
)) != me
)
1100 static JS_ALWAYS_INLINE
void
1101 ThinUnlock(JSThinLock
*tl
, jsword me
)
1103 JS_ASSERT(CURRENT_THREAD_IS_ME(me
));
1106 * Since we can race with the NativeCompareAndSwap in js_Enqueue, we need
1107 * to use a C_A_S here as well -- Arjan van de Ven 30/1/08
1109 if (NativeCompareAndSwap(&tl
->owner
, me
, 0))
1112 JS_ASSERT(Thin_GetWait(tl
->owner
));
1113 if (Thin_RemoveWait(ReadWord(tl
->owner
)) == me
)
1117 JS_ASSERT(0); /* unbalanced unlock */
1121 #endif /* !NSPR_LOCK */
1124 js_Lock(JSContext
*cx
, JSThinLock
*tl
)
1126 ThinLock(tl
, CX_THINLOCK_ID(cx
));
1130 js_Unlock(JSContext
*cx
, JSThinLock
*tl
)
1132 ThinUnlock(tl
, CX_THINLOCK_ID(cx
));
1136 js_LockRuntime(JSRuntime
*rt
)
1138 PR_Lock(rt
->rtLock
);
1140 rt
->rtLockOwner
= js_CurrentThreadId();
1145 js_UnlockRuntime(JSRuntime
*rt
)
1148 rt
->rtLockOwner
= 0;
1150 PR_Unlock(rt
->rtLock
);
1154 js_LockTitle(JSContext
*cx
, JSTitle
*title
)
1156 jsword me
= CX_THINLOCK_ID(cx
);
1158 JS_ASSERT(CURRENT_THREAD_IS_ME(me
));
1159 JS_ASSERT(title
->ownercx
!= cx
);
1160 if (CX_THREAD_IS_RUNNING_GC(cx
))
1162 if (title
->ownercx
&& ClaimTitle(title
, cx
))
1165 if (Thin_RemoveWait(ReadWord(title
->lock
.owner
)) == me
) {
1166 JS_ASSERT(title
->u
.count
> 0);
1170 ThinLock(&title
->lock
, me
);
1171 JS_ASSERT(title
->u
.count
== 0);
1178 js_UnlockTitle(JSContext
*cx
, JSTitle
*title
)
1180 jsword me
= CX_THINLOCK_ID(cx
);
1182 /* We hope compilers use me instead of reloading cx->thread in the macro. */
1183 if (CX_THREAD_IS_RUNNING_GC(cx
))
1185 if (cx
->lockedSealedTitle
== title
) {
1186 cx
->lockedSealedTitle
= NULL
;
1191 * If title->ownercx is not null, it's likely that two contexts not using
1192 * requests nested locks for title. The first context, cx here, claimed
1193 * title; the second, title->ownercx here, re-claimed it because the first
1194 * was not in a request, or was on the same thread. We don't want to keep
1195 * track of such nesting, because it penalizes the common non-nested case.
1196 * Instead of asserting here and silently coping, we simply re-claim title
1197 * for cx and return.
1199 * See http://bugzilla.mozilla.org/show_bug.cgi?id=229200 for a real world
1200 * case where an asymmetric thread model (Mozilla's main thread is known
1201 * to be the only thread that runs the GC) combined with multiple contexts
1202 * per thread has led to such request-less nesting.
1204 if (title
->ownercx
) {
1205 JS_ASSERT(title
->u
.count
== 0);
1206 JS_ASSERT(title
->lock
.owner
== 0);
1207 title
->ownercx
= cx
;
1211 JS_ASSERT(title
->u
.count
> 0);
1212 if (Thin_RemoveWait(ReadWord(title
->lock
.owner
)) != me
) {
1213 JS_ASSERT(0); /* unbalanced unlock */
1217 if (--title
->u
.count
== 0)
1218 ThinUnlock(&title
->lock
, me
);
1222 * NB: oldtitle may be null if our caller is js_GetMutableScope and it just
1223 * dropped the last reference to oldtitle.
1226 js_TransferTitle(JSContext
*cx
, JSTitle
*oldtitle
, JSTitle
*newtitle
)
1228 JS_ASSERT(JS_IS_TITLE_LOCKED(cx
, newtitle
));
1231 * If the last reference to oldtitle went away, newtitle needs no lock
1236 JS_ASSERT(JS_IS_TITLE_LOCKED(cx
, oldtitle
));
1239 * Special case in js_LockTitle and js_UnlockTitle for the GC calling
1240 * code that locks, unlocks, or mutates. Nothing to do in these cases,
1241 * because title and newtitle were "locked" by the GC thread, so neither
1242 * was actually locked.
1244 if (CX_THREAD_IS_RUNNING_GC(cx
))
1248 * Special case in js_LockObj and js_UnlockTitle for locking the sealed
1249 * scope of an object that owns that scope (the prototype or mutated obj
1250 * for which OBJ_SCOPE(obj)->object == obj), and unlocking it.
1252 JS_ASSERT(cx
->lockedSealedTitle
!= newtitle
);
1253 if (cx
->lockedSealedTitle
== oldtitle
) {
1254 JS_ASSERT(newtitle
->ownercx
== cx
||
1255 (!newtitle
->ownercx
&& newtitle
->u
.count
== 1));
1256 cx
->lockedSealedTitle
= NULL
;
1261 * If oldtitle is single-threaded, there's nothing to do.
1263 if (oldtitle
->ownercx
) {
1264 JS_ASSERT(oldtitle
->ownercx
== cx
);
1265 JS_ASSERT(newtitle
->ownercx
== cx
||
1266 (!newtitle
->ownercx
&& newtitle
->u
.count
== 1));
1271 * We transfer oldtitle->u.count only if newtitle is not single-threaded.
1272 * Flow unwinds from here through some number of JS_UNLOCK_TITLE and/or
1273 * JS_UNLOCK_OBJ macro calls, which will decrement newtitle->u.count only
1274 * if they find newtitle->ownercx != cx.
1276 if (newtitle
->ownercx
!= cx
) {
1277 JS_ASSERT(!newtitle
->ownercx
);
1278 newtitle
->u
.count
= oldtitle
->u
.count
;
1282 * Reset oldtitle's lock state so that it is completely unlocked.
1284 LOGIT(oldscope
, '0');
1285 oldtitle
->u
.count
= 0;
1286 ThinUnlock(&oldtitle
->lock
, CX_THINLOCK_ID(cx
));
1290 js_LockObj(JSContext
*cx
, JSObject
*obj
)
1295 JS_ASSERT(OBJ_IS_NATIVE(obj
));
1298 * We must test whether the GC is calling and return without mutating any
1299 * state, especially cx->lockedSealedScope. Note asymmetry with respect to
1300 * js_UnlockObj, which is a thin-layer on top of js_UnlockTitle.
1302 if (CX_THREAD_IS_RUNNING_GC(cx
))
1306 scope
= OBJ_SCOPE(obj
);
1307 title
= &scope
->title
;
1308 if (SCOPE_IS_SEALED(scope
) && scope
->object
== obj
&&
1309 !cx
->lockedSealedTitle
) {
1310 cx
->lockedSealedTitle
= title
;
1314 js_LockTitle(cx
, title
);
1316 /* If obj still has this scope, we're done. */
1317 if (scope
== OBJ_SCOPE(obj
))
1320 /* Lost a race with a mutator; retry with obj's new scope. */
1321 js_UnlockTitle(cx
, title
);
1326 js_UnlockObj(JSContext
*cx
, JSObject
*obj
)
1328 JS_ASSERT(OBJ_IS_NATIVE(obj
));
1329 js_UnlockTitle(cx
, &OBJ_SCOPE(obj
)->title
);
1333 js_InitTitle(JSContext
*cx
, JSTitle
*title
)
1335 #ifdef JS_THREADSAFE
1336 title
->ownercx
= cx
;
1337 memset(&title
->lock
, 0, sizeof title
->lock
);
1340 * Set u.link = NULL, not u.count = 0, in case the target architecture's
1341 * null pointer has a non-zero integer representation.
1343 title
->u
.link
= NULL
;
1345 #ifdef JS_DEBUG_TITLE_LOCKS
1346 title
->file
[0] = title
->file
[1] = title
->file
[2] = title
->file
[3] = NULL
;
1347 title
->line
[0] = title
->line
[1] = title
->line
[2] = title
->line
[3] = 0;
1353 js_FinishTitle(JSContext
*cx
, JSTitle
*title
)
1355 #ifdef JS_THREADSAFE
1356 /* Title must be single-threaded at this point, so set ownercx. */
1357 JS_ASSERT(title
->u
.count
== 0);
1358 title
->ownercx
= cx
;
1359 js_FinishLock(&title
->lock
);
1366 js_IsRuntimeLocked(JSRuntime
*rt
)
1368 return js_CurrentThreadId() == rt
->rtLockOwner
;
1372 js_IsObjLocked(JSContext
*cx
, JSObject
*obj
)
1374 JSScope
*scope
= OBJ_SCOPE(obj
);
1376 return MAP_IS_NATIVE(&scope
->map
) && js_IsTitleLocked(cx
, &scope
->title
);
1380 js_IsTitleLocked(JSContext
*cx
, JSTitle
*title
)
1382 /* Special case: the GC locking any object's title, see js_LockTitle. */
1383 if (CX_THREAD_IS_RUNNING_GC(cx
))
1386 /* Special case: locked object owning a sealed scope, see js_LockObj. */
1387 if (cx
->lockedSealedTitle
== title
)
1391 * General case: the title is either exclusively owned (by cx), or it has
1392 * a thin or fat lock to cope with shared (concurrent) ownership.
1394 if (title
->ownercx
) {
1395 JS_ASSERT(title
->ownercx
== cx
|| title
->ownercx
->thread
== cx
->thread
);
1398 return js_CurrentThreadId() ==
1399 ((JSThread
*)Thin_RemoveWait(ReadWord(title
->lock
.owner
)))->id
;
1402 #ifdef JS_DEBUG_TITLE_LOCKS
1404 js_SetScopeInfo(JSScope
*scope
, const char *file
, int line
)
1406 JSTitle
*title
= &scope
->title
;
1407 if (!title
->ownercx
) {
1408 jsrefcount count
= title
->u
.count
;
1409 JS_ASSERT_IF(!SCOPE_IS_SEALED(scope
), count
> 0);
1410 JS_ASSERT(count
<= 4);
1411 title
->file
[count
- 1] = file
;
1412 title
->line
[count
- 1] = line
;
1415 #endif /* JS_DEBUG_TITLE_LOCKS */
1417 #endif /* JS_THREADSAFE */