VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMAll/VMMAll.cpp@ 43667

Last change on this file since 43667 was 41965, checked in by vboxsync, 12 years ago

VMM: ran scm. Mostly svn:keywords changes (adding Revision).

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id Revision
File size: 9.0 KB
Line 
1/* $Id: VMMAll.cpp 41965 2012-06-29 02:52:49Z vboxsync $ */
2/** @file
3 * VMM All Contexts.
4 */
5
6/*
7 * Copyright (C) 2006-2012 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 */
17
18
19/*******************************************************************************
20* Header Files *
21*******************************************************************************/
22#define LOG_GROUP LOG_GROUP_VMM
23#include <VBox/vmm/vmm.h>
24#include "VMMInternal.h"
25#include <VBox/vmm/vm.h>
26#include <VBox/vmm/vmcpuset.h>
27#include <VBox/param.h>
28#include <iprt/thread.h>
29#include <iprt/mp.h>
30
31
32/*******************************************************************************
33* Global Variables *
34*******************************************************************************/
35/** User counter for the vmmInitFormatTypes function (pro forma). */
36static volatile uint32_t g_cFormatTypeUsers = 0;
37
38
39/**
40 * Helper that formats a decimal number in the range 0..9999.
41 *
42 * @returns The length of the formatted number.
43 * @param pszBuf Output buffer with sufficient space.
44 * @param uNum The number to format.
45 */
46static unsigned vmmFormatTypeShortNumber(char *pszBuf, uint32_t uNumber)
47{
48 unsigned off = 0;
49 if (uNumber >= 10)
50 {
51 if (uNumber >= 100)
52 {
53 if (uNumber >= 1000)
54 pszBuf[off++] = ((uNumber / 1000) % 10) + '0';
55 pszBuf[off++] = ((uNumber / 100) % 10) + '0';
56 }
57 pszBuf[off++] = ((uNumber / 10) % 10) + '0';
58 }
59 pszBuf[off++] = (uNumber % 10) + '0';
60 pszBuf[off] = '\0';
61 return off;
62}
63
64
65/**
66 * @callback_method_impl{FNRTSTRFORMATTYPE, vmsetcpu}
67 */
68static DECLCALLBACK(size_t) vmmFormatTypeVmCpuSet(PFNRTSTROUTPUT pfnOutput, void *pvArgOutput,
69 const char *pszType, void const *pvValue,
70 int cchWidth, int cchPrecision, unsigned fFlags,
71 void *pvUser)
72{
73 PCVMCPUSET pSet = (PCVMCPUSET)pvValue;
74 uint32_t cCpus = 0;
75 uint32_t iCpu = RT_ELEMENTS(pSet->au32Bitmap) * 32;
76 while (iCpu--)
77 if (VMCPUSET_IS_PRESENT(pSet, iCpu))
78 cCpus++;
79
80 char szTmp[32];
81 AssertCompile(RT_ELEMENTS(pSet->au32Bitmap) * 32 < 999);
82 if (cCpus == 1)
83 {
84 iCpu = RT_ELEMENTS(pSet->au32Bitmap) * 32;
85 while (iCpu--)
86 if (VMCPUSET_IS_PRESENT(pSet, iCpu))
87 {
88 szTmp[0] = 'c';
89 szTmp[1] = 'p';
90 szTmp[2] = 'u';
91 return pfnOutput(pvArgOutput, szTmp, 3 + vmmFormatTypeShortNumber(&szTmp[3], iCpu));
92 }
93 cCpus = 0;
94 }
95 if (cCpus == 0)
96 return pfnOutput(pvArgOutput, "<empty>", sizeof("<empty>") - 1);
97 if (cCpus == RT_ELEMENTS(pSet->au32Bitmap) * 32)
98 return pfnOutput(pvArgOutput, "<full>", sizeof("<full>") - 1);
99
100 /*
101 * Print cpus that are present: {1,2,7,9 ... }
102 */
103 size_t cchRet = pfnOutput(pvArgOutput, "{", 1);
104
105 cCpus = 0;
106 iCpu = 0;
107 while (iCpu < RT_ELEMENTS(pSet->au32Bitmap) * 32)
108 {
109 if (VMCPUSET_IS_PRESENT(pSet, iCpu))
110 {
111 /* Output the first cpu number. */
112 int off = 0;
113 if (cCpus != 0)
114 szTmp[off++] = ',';
115 off += vmmFormatTypeShortNumber(&szTmp[off], iCpu);
116
117 /* Check for sequence. */
118 uint32_t const iStart = ++iCpu;
119 while ( iCpu < RT_ELEMENTS(pSet->au32Bitmap) * 32
120 && VMCPUSET_IS_PRESENT(pSet, iCpu))
121 iCpu++;
122 if (iCpu != iStart)
123 {
124 szTmp[off++] = '-';
125 off += vmmFormatTypeShortNumber(&szTmp[off], iCpu);
126 }
127
128 /* Terminate and output. */
129 szTmp[off] = '\0';
130 cchRet += pfnOutput(pvArgOutput, szTmp, off);
131 }
132 iCpu++;
133 }
134
135 cchRet += pfnOutput(pvArgOutput, "}", 1);
136 NOREF(pvUser);
137 return cchRet;
138}
139
140
141/**
142 * Registers the VMM wide format types.
143 *
144 * Called by VMMR3Init, VMMR0Init and VMMRCInit.
145 */
146int vmmInitFormatTypes(void)
147{
148 int rc = VINF_SUCCESS;
149 if (ASMAtomicIncU32(&g_cFormatTypeUsers) == 1)
150 rc = RTStrFormatTypeRegister("vmcpuset", vmmFormatTypeVmCpuSet, NULL);
151 return rc;
152}
153
154
155#ifndef IN_RC
156/**
157 * Counterpart to vmmInitFormatTypes, called by VMMR3Term and VMMR0Term.
158 */
159void vmmTermFormatTypes(void)
160{
161 if (ASMAtomicDecU32(&g_cFormatTypeUsers) == 0)
162 RTStrFormatTypeDeregister("vmcpuset");
163}
164#endif
165
166
167/**
168 * Gets the bottom of the hypervisor stack - RC Ptr.
169 *
170 * (The returned address is not actually writable, only after it's decremented
171 * by a push/ret/whatever does it become writable.)
172 *
173 * @returns bottom of the stack.
174 * @param pVCpu Pointer to the VMCPU.
175 */
176VMMDECL(RTRCPTR) VMMGetStackRC(PVMCPU pVCpu)
177{
178 return (RTRCPTR)pVCpu->vmm.s.pbEMTStackBottomRC;
179}
180
181
182/**
183 * Gets the ID of the virtual CPU associated with the calling thread.
184 *
185 * @returns The CPU ID. NIL_VMCPUID if the thread isn't an EMT.
186 *
187 * @param pVM Pointer to the VM.
188 */
189VMMDECL(VMCPUID) VMMGetCpuId(PVM pVM)
190{
191#if defined(IN_RING3)
192 return VMR3GetVMCPUId(pVM);
193
194#elif defined(IN_RING0)
195 if (pVM->cCpus == 1)
196 return 0;
197
198 /* Search first by host cpu id (most common case)
199 * and then by native thread id (page fusion case).
200 */
201 /* RTMpCpuId had better be cheap. */
202 RTCPUID idHostCpu = RTMpCpuId();
203
204 /** @todo optimize for large number of VCPUs when that becomes more common. */
205 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
206 {
207 PVMCPU pVCpu = &pVM->aCpus[idCpu];
208
209 if (pVCpu->idHostCpu == idHostCpu)
210 return pVCpu->idCpu;
211 }
212
213 /* RTThreadGetNativeSelf had better be cheap. */
214 RTNATIVETHREAD hThread = RTThreadNativeSelf();
215
216 /** @todo optimize for large number of VCPUs when that becomes more common. */
217 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
218 {
219 PVMCPU pVCpu = &pVM->aCpus[idCpu];
220
221 if (pVCpu->hNativeThreadR0 == hThread)
222 return pVCpu->idCpu;
223 }
224 return NIL_VMCPUID;
225
226#else /* RC: Always EMT(0) */
227 NOREF(pVM);
228 return 0;
229#endif
230}
231
232
233/**
234 * Returns the VMCPU of the calling EMT.
235 *
236 * @returns The VMCPU pointer. NULL if not an EMT.
237 *
238 * @param pVM Pointer to the VM.
239 */
240VMMDECL(PVMCPU) VMMGetCpu(PVM pVM)
241{
242#ifdef IN_RING3
243 VMCPUID idCpu = VMR3GetVMCPUId(pVM);
244 if (idCpu == NIL_VMCPUID)
245 return NULL;
246 Assert(idCpu < pVM->cCpus);
247 return &pVM->aCpus[idCpu];
248
249#elif defined(IN_RING0)
250 if (pVM->cCpus == 1)
251 return &pVM->aCpus[0];
252
253 /* Search first by host cpu id (most common case)
254 * and then by native thread id (page fusion case).
255 */
256
257 /* RTMpCpuId had better be cheap. */
258 RTCPUID idHostCpu = RTMpCpuId();
259
260 /** @todo optimize for large number of VCPUs when that becomes more common. */
261 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
262 {
263 PVMCPU pVCpu = &pVM->aCpus[idCpu];
264
265 if (pVCpu->idHostCpu == idHostCpu)
266 return pVCpu;
267 }
268
269 /* RTThreadGetNativeSelf had better be cheap. */
270 RTNATIVETHREAD hThread = RTThreadNativeSelf();
271
272 /** @todo optimize for large number of VCPUs when that becomes more common. */
273 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
274 {
275 PVMCPU pVCpu = &pVM->aCpus[idCpu];
276
277 if (pVCpu->hNativeThreadR0 == hThread)
278 return pVCpu;
279 }
280 return NULL;
281
282#else /* RC: Always EMT(0) */
283 return &pVM->aCpus[0];
284#endif /* IN_RING0 */
285}
286
287
288/**
289 * Returns the VMCPU of the first EMT thread.
290 *
291 * @returns The VMCPU pointer.
292 * @param pVM Pointer to the VM.
293 */
294VMMDECL(PVMCPU) VMMGetCpu0(PVM pVM)
295{
296 Assert(pVM->cCpus == 1);
297 return &pVM->aCpus[0];
298}
299
300
301/**
302 * Returns the VMCPU of the specified virtual CPU.
303 *
304 * @returns The VMCPU pointer. NULL if idCpu is invalid.
305 *
306 * @param pVM Pointer to the VM.
307 * @param idCpu The ID of the virtual CPU.
308 */
309VMMDECL(PVMCPU) VMMGetCpuById(PVM pVM, RTCPUID idCpu)
310{
311 AssertReturn(idCpu < pVM->cCpus, NULL);
312 return &pVM->aCpus[idCpu];
313}
314
315
316/**
317 * Gets the VBOX_SVN_REV.
318 *
319 * This is just to avoid having to compile a bunch of big files
320 * and requires less Makefile mess.
321 *
322 * @returns VBOX_SVN_REV.
323 */
324VMMDECL(uint32_t) VMMGetSvnRev(void)
325{
326 return VBOX_SVN_REV;
327}
328
329
330/**
331 * Queries the current switcher
332 *
333 * @returns active switcher
334 * @param pVM Pointer to the VM.
335 */
336VMMDECL(VMMSWITCHER) VMMGetSwitcher(PVM pVM)
337{
338 return pVM->vmm.s.enmSwitcher;
339}
340
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use