/* $Id: spinlock-generic.cpp 29271 2010-05-09 21:25:16Z vboxsync $ */ /** @file * IPRT - Spinlock, generic implementation. */ /* * Copyright (C) 2006-2007 Oracle Corporation * * This file is part of VirtualBox Open Source Edition (OSE), as * available from http://www.virtualbox.org. This file is free software; * you can redistribute it and/or modify it under the terms of the GNU * General Public License (GPL) as published by the Free Software * Foundation, in version 2 as it comes in the "COPYING" file of the * VirtualBox OSE distribution. VirtualBox OSE is distributed in the * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. * * The contents of this file may alternatively be used under the terms * of the Common Development and Distribution License Version 1.0 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the * VirtualBox OSE distribution, in which case the provisions of the * CDDL are applicable instead of those of the GPL. * * You may elect to license modified versions of this file under the * terms and conditions of either the GPL or the CDDL or both. */ /******************************************************************************* * Defined Constants And Macros * *******************************************************************************/ /** @def RT_CFG_SPINLOCK_GENERIC_DO_SLEEP * Force cpu yields after spinning the number of times indicated by the define. * If 0 we will spin forever. */ #define RT_CFG_SPINLOCK_GENERIC_DO_SLEEP 100000 /******************************************************************************* * Header Files * *******************************************************************************/ #include #include "internal/iprt.h" #include #include #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) # include #endif #include #include #if RT_CFG_SPINLOCK_GENERIC_DO_SLEEP # include #endif #include "internal/magics.h" /******************************************************************************* * Structures and Typedefs * *******************************************************************************/ /** * Generic spinlock structure. */ typedef struct RTSPINLOCKINTERNAL { /** Spinlock magic value (RTSPINLOCK_MAGIC). */ uint32_t u32Magic; /** The spinlock. */ uint32_t volatile fLocked; } RTSPINLOCKINTERNAL, *PRTSPINLOCKINTERNAL; RTDECL(int) RTSpinlockCreate(PRTSPINLOCK pSpinlock) { /* * Allocate. */ PRTSPINLOCKINTERNAL pSpinlockInt; pSpinlockInt = (PRTSPINLOCKINTERNAL)RTMemAlloc(sizeof(*pSpinlockInt)); if (!pSpinlockInt) return VERR_NO_MEMORY; /* * Initialize and return. */ pSpinlockInt->u32Magic = RTSPINLOCK_MAGIC; ASMAtomicXchgU32(&pSpinlockInt->fLocked, 0); *pSpinlock = pSpinlockInt; return VINF_SUCCESS; } RT_EXPORT_SYMBOL(RTSpinlockCreate); RTDECL(int) RTSpinlockDestroy(RTSPINLOCK Spinlock) { /* * Validate input. */ PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock; if (!pSpinlockInt) return VERR_INVALID_PARAMETER; if (pSpinlockInt->u32Magic != RTSPINLOCK_MAGIC) { AssertMsgFailed(("Invalid spinlock %p magic=%#x\n", pSpinlockInt, pSpinlockInt->u32Magic)); return VERR_INVALID_PARAMETER; } ASMAtomicIncU32(&pSpinlockInt->u32Magic); RTMemFree(pSpinlockInt); return VINF_SUCCESS; } RT_EXPORT_SYMBOL(RTSpinlockDestroy); RTDECL(void) RTSpinlockAcquireNoInts(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp) { PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock; AssertMsg(pSpinlockInt && pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC, ("pSpinlockInt=%p u32Magic=%08x\n", pSpinlockInt, pSpinlockInt ? (int)pSpinlockInt->u32Magic : 0)); #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) pTmp->uFlags = ASMGetFlags(); #else pTmp->uFlags = 0; #endif #if RT_CFG_SPINLOCK_GENERIC_DO_SLEEP for (;;) { # if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) ASMIntDisable(); # endif for (int c = RT_CFG_SPINLOCK_GENERIC_DO_SLEEP; c > 0; c--) if (ASMAtomicCmpXchgU32(&pSpinlockInt->fLocked, 1, 0)) return; RTThreadYield(); } #else # if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) ASMIntDisable(); # endif while (!ASMAtomicCmpXchgU32(&pSpinlockInt->fLocked, 1, 0)) /*nothing */; #endif } RT_EXPORT_SYMBOL(RTSpinlockAcquireNoInts); RTDECL(void) RTSpinlockReleaseNoInts(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp) { PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock; AssertMsg(pSpinlockInt && pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC, ("pSpinlockInt=%p u32Magic=%08x\n", pSpinlockInt, pSpinlockInt ? (int)pSpinlockInt->u32Magic : 0)); NOREF(pSpinlockInt); if (!ASMAtomicCmpXchgU32(&pSpinlockInt->fLocked, 0, 1)) AssertMsgFailed(("Spinlock %p was not locked!\n", pSpinlockInt)); #if defined(RT_ARCH_AMD64) || defined(RT_ARCH_X86) ASMSetFlags(pTmp->uFlags); #endif } RT_EXPORT_SYMBOL(RTSpinlockReleaseNoInts); RTDECL(void) RTSpinlockAcquire(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp) { PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock; AssertMsg(pSpinlockInt && pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC, ("pSpinlockInt=%p u32Magic=%08x\n", pSpinlockInt, pSpinlockInt ? (int)pSpinlockInt->u32Magic : 0)); NOREF(pTmp); #if RT_CFG_SPINLOCK_GENERIC_DO_SLEEP for (;;) { for (int c = RT_CFG_SPINLOCK_GENERIC_DO_SLEEP; c > 0; c--) if (ASMAtomicCmpXchgU32(&pSpinlockInt->fLocked, 1, 0)) return; RTThreadYield(); } #else while (!ASMAtomicCmpXchgU32(&pSpinlockInt->fLocked, 1, 0)) /*nothing */; #endif } RT_EXPORT_SYMBOL(RTSpinlockAcquire); RTDECL(void) RTSpinlockRelease(RTSPINLOCK Spinlock, PRTSPINLOCKTMP pTmp) { PRTSPINLOCKINTERNAL pSpinlockInt = (PRTSPINLOCKINTERNAL)Spinlock; AssertMsg(pSpinlockInt && pSpinlockInt->u32Magic == RTSPINLOCK_MAGIC, ("pSpinlockInt=%p u32Magic=%08x\n", pSpinlockInt, pSpinlockInt ? (int)pSpinlockInt->u32Magic : 0)); NOREF(pTmp); if (!ASMAtomicCmpXchgU32(&pSpinlockInt->fLocked, 0, 1)) AssertMsgFailed(("Spinlock %p was not locked!\n", pSpinlockInt)); } RT_EXPORT_SYMBOL(RTSpinlockRelease);