VirtualBox

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

Last change on this file since 32181 was 31361, checked in by vboxsync, 14 years ago

Reapplied 64410 with previous lookup added

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 5.0 KB
Line 
1/* $Id: VMMAll.cpp 31361 2010-08-04 15:38:35Z vboxsync $ */
2/** @file
3 * VMM All Contexts.
4 */
5
6/*
7 * Copyright (C) 2006-2007 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.h>
24#include "VMMInternal.h"
25#include <VBox/vm.h>
26#include <VBox/vmm.h>
27#include <VBox/param.h>
28#include <iprt/thread.h>
29#include <iprt/mp.h>
30
31
32/**
33 * Gets the bottom of the hypervisor stack - RC Ptr.
34 *
35 * (The returned address is not actually writable, only after it's decremented
36 * by a push/ret/whatever does it become writable.)
37 *
38 * @returns bottom of the stack.
39 * @param pVCpu The VMCPU handle.
40 */
41VMMDECL(RTRCPTR) VMMGetStackRC(PVMCPU pVCpu)
42{
43 return (RTRCPTR)pVCpu->vmm.s.pbEMTStackBottomRC;
44}
45
46
47/**
48 * Gets the ID virtual of the virtual CPU assoicated with the calling thread.
49 *
50 * @returns The CPU ID. NIL_VMCPUID if the thread isn't an EMT.
51 *
52 * @param pVM Pointer to the shared VM handle.
53 */
54VMMDECL(VMCPUID) VMMGetCpuId(PVM pVM)
55{
56#if defined(IN_RING3)
57 return VMR3GetVMCPUId(pVM);
58
59#elif defined(IN_RING0)
60 if (pVM->cCpus == 1)
61 return 0;
62
63 /* Search first by host cpu id (most common case)
64 * and then by native thread id (page fusion case).
65 */
66 /* RTMpCpuId had better be cheap. */
67 RTCPUID idHostCpu = RTMpCpuId();
68
69 /** @todo optimize for large number of VCPUs when that becomes more common. */
70 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
71 {
72 PVMCPU pVCpu = &pVM->aCpus[idCpu];
73
74 if (pVCpu->idHostCpu == idHostCpu)
75 return pVCpu->idCpu;
76 }
77
78 /* RTThreadGetNativeSelf had better be cheap. */
79 RTNATIVETHREAD hThread = RTThreadNativeSelf();
80
81 /** @todo optimize for large number of VCPUs when that becomes more common. */
82 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
83 {
84 PVMCPU pVCpu = &pVM->aCpus[idCpu];
85
86 if (pVCpu->hNativeThreadR0 == hThread)
87 return pVCpu->idCpu;
88 }
89 return NIL_VMCPUID;
90
91#else /* RC: Always EMT(0) */
92 return 0;
93#endif
94}
95
96
97/**
98 * Returns the VMCPU of the calling EMT.
99 *
100 * @returns The VMCPU pointer. NULL if not an EMT.
101 *
102 * @param pVM The VM to operate on.
103 */
104VMMDECL(PVMCPU) VMMGetCpu(PVM pVM)
105{
106#ifdef IN_RING3
107 VMCPUID idCpu = VMR3GetVMCPUId(pVM);
108 if (idCpu == NIL_VMCPUID)
109 return NULL;
110 Assert(idCpu < pVM->cCpus);
111 return &pVM->aCpus[idCpu];
112
113#elif defined(IN_RING0)
114 if (pVM->cCpus == 1)
115 return &pVM->aCpus[0];
116
117 /* Search first by host cpu id (most common case)
118 * and then by native thread id (page fusion case).
119 */
120
121 /* RTMpCpuId had better be cheap. */
122 RTCPUID idHostCpu = RTMpCpuId();
123
124 /** @todo optimize for large number of VCPUs when that becomes more common. */
125 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
126 {
127 PVMCPU pVCpu = &pVM->aCpus[idCpu];
128
129 if (pVCpu->idHostCpu == idHostCpu)
130 return pVCpu;
131 }
132
133 /* RTThreadGetNativeSelf had better be cheap. */
134 RTNATIVETHREAD hThread = RTThreadNativeSelf();
135
136 /** @todo optimize for large number of VCPUs when that becomes more common. */
137 for (VMCPUID idCpu = 0; idCpu < pVM->cCpus; idCpu++)
138 {
139 PVMCPU pVCpu = &pVM->aCpus[idCpu];
140
141 if (pVCpu->hNativeThreadR0 == hThread)
142 return pVCpu;
143 }
144 return NULL;
145
146#else /* RC: Always EMT(0) */
147 return &pVM->aCpus[0];
148#endif /* IN_RING0 */
149}
150
151
152/**
153 * Returns the VMCPU of the first EMT thread.
154 *
155 * @returns The VMCPU pointer.
156 * @param pVM The VM to operate on.
157 */
158VMMDECL(PVMCPU) VMMGetCpu0(PVM pVM)
159{
160 Assert(pVM->cCpus == 1);
161 return &pVM->aCpus[0];
162}
163
164
165/**
166 * Returns the VMCPU of the specified virtual CPU.
167 *
168 * @returns The VMCPU pointer. NULL if idCpu is invalid.
169 *
170 * @param pVM The VM to operate on.
171 * @param idCpu The ID of the virtual CPU.
172 */
173VMMDECL(PVMCPU) VMMGetCpuById(PVM pVM, RTCPUID idCpu)
174{
175 AssertReturn(idCpu < pVM->cCpus, NULL);
176 return &pVM->aCpus[idCpu];
177}
178
179
180/**
181 * Gets the VBOX_SVN_REV.
182 *
183 * This is just to avoid having to compile a bunch of big files
184 * and requires less Makefile mess.
185 *
186 * @returns VBOX_SVN_REV.
187 */
188VMMDECL(uint32_t) VMMGetSvnRev(void)
189{
190 return VBOX_SVN_REV;
191}
192
193
194/**
195 * Queries the current switcher
196 *
197 * @returns active switcher
198 * @param pVM VM handle.
199 */
200VMMDECL(VMMSWITCHER) VMMGetSwitcher(PVM pVM)
201{
202 return pVM->vmm.s.enmSwitcher;
203}
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette