VirtualBox

source: vbox/trunk/include/VBox/vmm/vmcpuset.h

Last change on this file was 103005, checked in by vboxsync, 4 months ago

iprt/asm.h,*: Split out the ASMMem* and related stuff into a separate header, asm-mem.h, so that we can get the RT_ASM_PAGE_SIZE stuff out of the way.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 4.8 KB
Line 
1/** @file
2 * VirtualBox - VMCPUSET Operation.
3 */
4
5/*
6 * Copyright (C) 2006-2023 Oracle and/or its affiliates.
7 *
8 * This file is part of VirtualBox base platform packages, as
9 * available from https://www.virtualbox.org.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation, in version 3 of the
14 * License.
15 *
16 * This program is distributed in the hope that it will be useful, but
17 * WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, see <https://www.gnu.org/licenses>.
23 *
24 * The contents of this file may alternatively be used under the terms
25 * of the Common Development and Distribution License Version 1.0
26 * (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
27 * in the VirtualBox distribution, in which case the provisions of the
28 * CDDL are applicable instead of those of the GPL.
29 *
30 * You may elect to license modified versions of this file under the
31 * terms and conditions of either the GPL or the CDDL or both.
32 *
33 * SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
34 */
35
36#ifndef VBOX_INCLUDED_vmm_vmcpuset_h
37#define VBOX_INCLUDED_vmm_vmcpuset_h
38#ifndef RT_WITHOUT_PRAGMA_ONCE
39# pragma once
40#endif
41
42#include <VBox/types.h>
43#include <iprt/asm-mem.h>
44#include <iprt/asm.h>
45#include <iprt/string.h>
46
47/** @defgroup grp_vmcpuset VMCPUSET Operations
48 * @ingroup grp_types_both
49 * @sa VMCPUSET
50 * @{
51 */
52
53/** Tests if a valid CPU ID is present in the set. */
54#define VMCPUSET_IS_PRESENT(pSet, idCpu) ASMBitTest( &(pSet)->au32Bitmap[0], (idCpu))
55/** Adds a CPU to the set. */
56#define VMCPUSET_ADD(pSet, idCpu) ASMBitSet( &(pSet)->au32Bitmap[0], (idCpu))
57/** Deletes a CPU from the set. */
58#define VMCPUSET_DEL(pSet, idCpu) ASMBitClear(&(pSet)->au32Bitmap[0], (idCpu))
59/** Adds a CPU to the set, atomically. */
60#define VMCPUSET_ATOMIC_ADD(pSet, idCpu) ASMAtomicBitSet( &(pSet)->au32Bitmap[0], (idCpu))
61/** Deletes a CPU from the set, atomically. */
62#define VMCPUSET_ATOMIC_DEL(pSet, idCpu) ASMAtomicBitClear(&(pSet)->au32Bitmap[0], (idCpu))
63/** Empties the set. */
64#define VMCPUSET_EMPTY(pSet) memset(&(pSet)->au32Bitmap[0], '\0', sizeof((pSet)->au32Bitmap))
65/** Fills the set. */
66#define VMCPUSET_FILL(pSet) memset(&(pSet)->au32Bitmap[0], 0xff, sizeof((pSet)->au32Bitmap))
67/** Checks if two sets are equal to one another. */
68#define VMCPUSET_IS_EQUAL(pSet1, pSet2) (memcmp(&(pSet1)->au32Bitmap[0], &(pSet2)->au32Bitmap[0], sizeof((pSet1)->au32Bitmap)) == 0)
69/** Checks if the set is empty. */
70#define VMCPUSET_IS_EMPTY(a_pSet) ( (a_pSet)->au32Bitmap[0] == 0 \
71 && (a_pSet)->au32Bitmap[1] == 0 \
72 && (a_pSet)->au32Bitmap[2] == 0 \
73 && (a_pSet)->au32Bitmap[3] == 0 \
74 && (a_pSet)->au32Bitmap[4] == 0 \
75 && (a_pSet)->au32Bitmap[5] == 0 \
76 && (a_pSet)->au32Bitmap[6] == 0 \
77 && (a_pSet)->au32Bitmap[7] == 0 \
78 )
79/** Finds the first CPU present in the SET.
80 * @returns CPU index if found, NIL_VMCPUID if not. */
81#define VMCPUSET_FIND_FIRST_PRESENT(a_pSet) VMCpuSetFindFirstPresentInternal(a_pSet)
82
83/** Implements VMCPUSET_FIND_FIRST_PRESENT.
84 *
85 * @returns CPU index of the first CPU present in the set, NIL_VMCPUID if none
86 * are present.
87 * @param pSet The set to scan.
88 */
89DECLINLINE(int32_t) VMCpuSetFindFirstPresentInternal(PCVMCPUSET pSet)
90{
91 int i = ASMBitFirstSet(&pSet->au32Bitmap[0], RT_ELEMENTS(pSet->au32Bitmap) * 32);
92 return i >= 0 ? (VMCPUID)i : NIL_VMCPUID;
93}
94
95/** Finds the first CPU present in the SET.
96 * @returns CPU index if found, NIL_VMCPUID if not. */
97#define VMCPUSET_FIND_LAST_PRESENT(a_pSet) VMCpuSetFindLastPresentInternal(a_pSet)
98
99/** Implements VMCPUSET_FIND_LAST_PRESENT.
100 *
101 * @returns CPU index of the last CPU present in the set, NIL_VMCPUID if none
102 * are present.
103 * @param pSet The set to scan.
104 */
105DECLINLINE(int32_t) VMCpuSetFindLastPresentInternal(PCVMCPUSET pSet)
106{
107 uint32_t i = RT_ELEMENTS(pSet->au32Bitmap);
108 while (i-- > 0)
109 {
110 uint32_t u = pSet->au32Bitmap[i];
111 if (u)
112 {
113 u = ASMBitLastSetU32(u);
114 u--;
115 u |= i << 5;
116 return u;
117 }
118 }
119 return NIL_VMCPUID;
120}
121
122/** @} */
123
124#endif /* !VBOX_INCLUDED_vmm_vmcpuset_h */
125
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use