/** @file * IPRT - CPU Set. */ /* * Copyright (C) 2008 Sun Microsystems, Inc. * * 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. * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 USA or visit http://www.sun.com if you need * additional information or have any questions. */ #ifndef ___iprt_cpuset_h #define ___iprt_cpuset_h #include #include /* RTMpCpuIdToSetIndex */ #include __BEGIN_DECLS /** @defgroup grp_rt_cpuset RTCpuSet - CPU Set * @ingroup grp_rt * @{ */ /** * The maximum number of CPUs a set can contain and IPRT is able * to reference. * @remarks This is the maximum value of the supported platforms. */ #define RTCPUSET_MAX_CPUS 64 /** * Clear all CPUs. * * @returns pSet. * @param pSet Pointer to the set. */ DECLINLINE(PRTCPUSET) RTCpuSetEmpty(PRTCPUSET pSet) { *pSet = 0; return pSet; } /** * Set all CPUs. * * @returns pSet. * @param pSet Pointer to the set. */ DECLINLINE(PRTCPUSET) RTCpuSetFill(PRTCPUSET pSet) { *pSet = UINT64_MAX; return pSet; } /** * Adds a CPU given by its identifier to the set. * * @returns 0 on success, -1 if idCpu isn't valid. * @param pSet Pointer to the set. * @param idCpu The identifier of the CPU to add. * @remarks The modification is atomic. */ DECLINLINE(int) RTCpuSetAdd(PRTCPUSET pSet, RTCPUID idCpu) { int iCpu = RTMpCpuIdToSetIndex(idCpu); if (RT_UNLIKELY(iCpu < 0)) return -1; ASMAtomicBitSet(pSet, iCpu); return 0; } /** * Removes a CPU given by its identifier from the set. * * @returns 0 on success, -1 if idCpu isn't valid. * @param pSet Pointer to the set. * @param idCpu The identifier of the CPU to delete. * @remarks The modification is atomic. */ DECLINLINE(int) RTCpuSetDel(PRTCPUSET pSet, RTCPUID idCpu) { int iCpu = RTMpCpuIdToSetIndex(idCpu); if (RT_UNLIKELY(iCpu < 0)) return -1; ASMAtomicBitClear(pSet, iCpu); return 0; } /** * Checks if a CPU given by its identifier is a member of the set. * * @returns true / false accordingly. * @param pSet Pointer to the set. * @param idCpu The identifier of the CPU to look for. * @remarks The test is atomic. */ DECLINLINE(bool) RTCpuSetIsMember(PCRTCPUSET pSet, RTCPUID idCpu) { int iCpu = RTMpCpuIdToSetIndex(idCpu); if (RT_UNLIKELY(iCpu < 0)) return false; return ASMBitTest((volatile void *)pSet, iCpu); } /** * Checks if a CPU given by its index is a member of the set. * * @returns true / false accordingly. * @param pSet Pointer to the set. * @param iCpu The index of the CPU in the set. * @remarks The test is atomic. */ DECLINLINE(bool) RTCpuSetIsMemberByIndex(PCRTCPUSET pSet, int iCpu) { if (RT_UNLIKELY((unsigned)iCpu >= RTCPUSET_MAX_CPUS)) return false; return ASMBitTest((volatile void *)pSet, iCpu); } /** * Checks if the two sets match or not. * * @returns true / false accordingly. * @param pSet1 The first set. * @param pSet2 The second set. */ DECLINLINE(bool) RTCpuSetIsEqual(PCRTCPUSET pSet1, PCRTCPUSET pSet2) { return *pSet1 == *pSet2; } /** * Converts the CPU set to a 64-bit mask. * * @returns The mask. * @param pSet Pointer to the set. */ DECLINLINE(uint64_t) RTCpuSetToU64(PCRTCPUSET pSet) { return *pSet; } /** * Initializes the CPU set from a 64-bit mask. * * @param pSet Pointer to the set. * @param fMask The mask. */ DECLINLINE(PRTCPUSET) RTCpuSetFromU64(PRTCPUSET pSet, uint64_t fMask) { *pSet = fMask; return pSet; } /** * Count the CPUs in the set. * * @returns CPU count. * @param pSet Pointer to the set. */ DECLINLINE(int) RTCpuSetCount(PCRTCPUSET pSet) { int cCpus = 0; RTCPUID iCpu = 64; while (iCpu-- > 0) if (*pSet & RT_BIT_64(iCpu)) cCpus++; return cCpus; } /** * Get the highest set index. * * @returns The higest set index, -1 if all bits are clear. * @param pSet Pointer to the set. */ DECLINLINE(int) RTCpuLastIndex(PCRTCPUSET pSet) { /* There are more efficient ways to do this in asm.h... */ int iCpu = RTCPUSET_MAX_CPUS; while (iCpu-- > 0) if (*pSet & RT_BIT_64(iCpu)) return iCpu; return iCpu; } /** @} */ __END_DECLS #endif