VirtualBox

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

Last change on this file since 23794 was 20774, checked in by vboxsync, 15 years ago

Debug logging updates for the hyper heap

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 19.3 KB
Line 
1/* $Id: MMAll.cpp 20774 2009-06-22 12:59:53Z vboxsync $ */
2/** @file
3 * MM - Memory Manager - Any Context.
4 */
5
6/*
7 * Copyright (C) 2006-2007 Sun Microsystems, Inc.
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 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
19 * additional information or have any questions.
20 */
21
22
23/*******************************************************************************
24* Header Files *
25*******************************************************************************/
26#define LOG_GROUP LOG_GROUP_MM_HYPER
27#include <VBox/mm.h>
28#include <VBox/vmm.h>
29#include "MMInternal.h"
30#include <VBox/vm.h>
31#include <VBox/log.h>
32#include <iprt/assert.h>
33#include <iprt/string.h>
34
35
36
37/**
38 * Lookup a host context ring-3 address.
39 *
40 * @returns Pointer to the corresponding lookup record.
41 * @returns NULL on failure.
42 * @param pVM The VM handle.
43 * @param R3Ptr The host context ring-3 address to lookup.
44 * @param poff Where to store the offset into the HMA memory chunk.
45 */
46DECLINLINE(PMMLOOKUPHYPER) mmHyperLookupR3(PVM pVM, RTR3PTR R3Ptr, uint32_t *poff)
47{
48 /** @todo cache last lookup, this stuff ain't cheap! */
49 PMMLOOKUPHYPER pLookup = (PMMLOOKUPHYPER)((uint8_t *)pVM->mm.s.CTX_SUFF(pHyperHeap) + pVM->mm.s.offLookupHyper);
50 for (;;)
51 {
52 switch (pLookup->enmType)
53 {
54 case MMLOOKUPHYPERTYPE_LOCKED:
55 {
56 const RTR3UINTPTR off = (RTR3UINTPTR)R3Ptr - (RTR3UINTPTR)pLookup->u.Locked.pvR3;
57 if (off < pLookup->cb)
58 {
59 *poff = off;
60 return pLookup;
61 }
62 break;
63 }
64
65 case MMLOOKUPHYPERTYPE_HCPHYS:
66 {
67 const RTR3UINTPTR off = (RTR3UINTPTR)R3Ptr - (RTR3UINTPTR)pLookup->u.HCPhys.pvR3;
68 if (off < pLookup->cb)
69 {
70 *poff = off;
71 return pLookup;
72 }
73 break;
74 }
75
76 case MMLOOKUPHYPERTYPE_GCPHYS: /* (for now we'll not allow these kind of conversions) */
77 case MMLOOKUPHYPERTYPE_MMIO2:
78 case MMLOOKUPHYPERTYPE_DYNAMIC:
79 break;
80
81 default:
82 AssertMsgFailed(("enmType=%d\n", pLookup->enmType));
83 break;
84 }
85
86 /* next */
87 if (pLookup->offNext == (int32_t)NIL_OFFSET)
88 break;
89 pLookup = (PMMLOOKUPHYPER)((uint8_t *)pLookup + pLookup->offNext);
90 }
91
92 AssertMsgFailed(("R3Ptr=%RHv is not inside the hypervisor memory area!\n", R3Ptr));
93 return NULL;
94}
95
96
97/**
98 * Lookup a host context ring-0 address.
99 *
100 * @returns Pointer to the corresponding lookup record.
101 * @returns NULL on failure.
102 * @param pVM The VM handle.
103 * @param R0Ptr The host context ring-0 address to lookup.
104 * @param poff Where to store the offset into the HMA memory chunk.
105 */
106DECLINLINE(PMMLOOKUPHYPER) mmHyperLookupR0(PVM pVM, RTR0PTR R0Ptr, uint32_t *poff)
107{
108 AssertCompile(sizeof(RTR0PTR) == sizeof(RTR3PTR));
109
110 /** @todo cache last lookup, this stuff ain't cheap! */
111 PMMLOOKUPHYPER pLookup = (PMMLOOKUPHYPER)((uint8_t *)pVM->mm.s.CTX_SUFF(pHyperHeap) + pVM->mm.s.offLookupHyper);
112 for (;;)
113 {
114 switch (pLookup->enmType)
115 {
116 case MMLOOKUPHYPERTYPE_LOCKED:
117 {
118 const RTR0UINTPTR off = (RTR0UINTPTR)R0Ptr - (RTR0UINTPTR)pLookup->u.Locked.pvR0;
119 if (off < pLookup->cb && pLookup->u.Locked.pvR0)
120 {
121 *poff = off;
122 return pLookup;
123 }
124 break;
125 }
126
127 case MMLOOKUPHYPERTYPE_HCPHYS:
128 {
129 const RTR0UINTPTR off = (RTR0UINTPTR)R0Ptr - (RTR0UINTPTR)pLookup->u.HCPhys.pvR0;
130 if (off < pLookup->cb && pLookup->u.HCPhys.pvR0)
131 {
132 *poff = off;
133 return pLookup;
134 }
135 break;
136 }
137
138 case MMLOOKUPHYPERTYPE_GCPHYS: /* (for now we'll not allow these kind of conversions) */
139 case MMLOOKUPHYPERTYPE_MMIO2:
140 case MMLOOKUPHYPERTYPE_DYNAMIC:
141 break;
142
143 default:
144 AssertMsgFailed(("enmType=%d\n", pLookup->enmType));
145 break;
146 }
147
148 /* next */
149 if (pLookup->offNext == (int32_t)NIL_OFFSET)
150 break;
151 pLookup = (PMMLOOKUPHYPER)((uint8_t *)pLookup + pLookup->offNext);
152 }
153
154 AssertMsgFailed(("R0Ptr=%RHv is not inside the hypervisor memory area!\n", R0Ptr));
155 return NULL;
156}
157
158
159/**
160 * Lookup a raw-mode context address.
161 *
162 * @returns Pointer to the corresponding lookup record.
163 * @returns NULL on failure.
164 * @param pVM The VM handle.
165 * @param RCPtr The raw-mode context address to lookup.
166 * @param poff Where to store the offset into the HMA memory chunk.
167 */
168DECLINLINE(PMMLOOKUPHYPER) mmHyperLookupRC(PVM pVM, RTRCPTR RCPtr, uint32_t *poff)
169{
170 /** @todo cache last lookup this stuff ain't cheap! */
171 unsigned offRC = (RTRCUINTPTR)RCPtr - (RTGCUINTPTR)pVM->mm.s.pvHyperAreaGC;
172 PMMLOOKUPHYPER pLookup = (PMMLOOKUPHYPER)((uint8_t *)pVM->mm.s.CTX_SUFF(pHyperHeap) + pVM->mm.s.offLookupHyper);
173 for (;;)
174 {
175 const uint32_t off = offRC - pLookup->off;
176 if (off < pLookup->cb)
177 {
178 switch (pLookup->enmType)
179 {
180 case MMLOOKUPHYPERTYPE_LOCKED:
181 case MMLOOKUPHYPERTYPE_HCPHYS:
182 *poff = off;
183 return pLookup;
184 default:
185 break;
186 }
187 AssertMsgFailed(("enmType=%d\n", pLookup->enmType));
188 return NULL;
189 }
190
191 /* next */
192 if (pLookup->offNext == (int32_t)NIL_OFFSET)
193 break;
194 pLookup = (PMMLOOKUPHYPER)((uint8_t *)pLookup + pLookup->offNext);
195 }
196
197 AssertMsgFailed(("RCPtr=%RRv is not inside the hypervisor memory area!\n", RCPtr));
198 return NULL;
199}
200
201
202/**
203 * Lookup a current context address.
204 *
205 * @returns Pointer to the corresponding lookup record.
206 * @returns NULL on failure.
207 * @param pVM The VM handle.
208 * @param pv The current context address to lookup.
209 * @param poff Where to store the offset into the HMA memory chunk.
210 */
211DECLINLINE(PMMLOOKUPHYPER) mmHyperLookupCC(PVM pVM, void *pv, uint32_t *poff)
212{
213#ifdef IN_RC
214 return mmHyperLookupRC(pVM, (RTRCPTR)pv, poff);
215#elif defined(IN_RING0)
216 return mmHyperLookupR0(pVM, pv, poff);
217#else
218 return mmHyperLookupR3(pVM, pv, poff);
219#endif
220}
221
222
223/**
224 * Calculate the host context ring-3 address of an offset into the HMA memory chunk.
225 *
226 * @returns the host context ring-3 address.
227 * @param pLookup The HMA lookup record.
228 * @param off The offset into the HMA memory chunk.
229 */
230DECLINLINE(RTR3PTR) mmHyperLookupCalcR3(PMMLOOKUPHYPER pLookup, uint32_t off)
231{
232 switch (pLookup->enmType)
233 {
234 case MMLOOKUPHYPERTYPE_LOCKED:
235 return (RTR3PTR)((RTR3UINTPTR)pLookup->u.Locked.pvR3 + off);
236 case MMLOOKUPHYPERTYPE_HCPHYS:
237 return (RTR3PTR)((RTR3UINTPTR)pLookup->u.HCPhys.pvR3 + off);
238 default:
239 AssertMsgFailed(("enmType=%d\n", pLookup->enmType));
240 return NIL_RTR3PTR;
241 }
242}
243
244
245/**
246 * Calculate the host context ring-0 address of an offset into the HMA memory chunk.
247 *
248 * @returns the host context ring-0 address.
249 * @param pVM Pointer to the shared VM structure.
250 * @param pLookup The HMA lookup record.
251 * @param off The offset into the HMA memory chunk.
252 */
253DECLINLINE(RTR0PTR) mmHyperLookupCalcR0(PVM pVM, PMMLOOKUPHYPER pLookup, uint32_t off)
254{
255 switch (pLookup->enmType)
256 {
257 case MMLOOKUPHYPERTYPE_LOCKED:
258 if (pLookup->u.Locked.pvR0)
259 return (RTR0PTR)((RTR0UINTPTR)pLookup->u.Locked.pvR0 + off);
260#ifdef VBOX_WITH_2X_4GB_ADDR_SPACE
261 AssertMsg(!VMMIsHwVirtExtForced(pVM), ("%s\n", R3STRING(pLookup->pszDesc)));
262#else
263 AssertMsgFailed(("%s\n", R3STRING(pLookup->pszDesc)));
264#endif
265 return NIL_RTR0PTR;
266
267 case MMLOOKUPHYPERTYPE_HCPHYS:
268 if (pLookup->u.HCPhys.pvR0)
269 return (RTR0PTR)((RTR0UINTPTR)pLookup->u.HCPhys.pvR0 + off);
270 AssertMsgFailed(("%s\n", R3STRING(pLookup->pszDesc)));
271 return NIL_RTR0PTR;
272
273 default:
274 AssertMsgFailed(("enmType=%d\n", pLookup->enmType));
275 return NIL_RTR0PTR;
276 }
277}
278
279
280/**
281 * Calculate the raw-mode context address of an offset into the HMA memory chunk.
282 *
283 * @returns the raw-mode context base address.
284 * @param pVM The the VM handle.
285 * @param pLookup The HMA lookup record.
286 * @param off The offset into the HMA memory chunk.
287 */
288DECLINLINE(RTRCPTR) mmHyperLookupCalcRC(PVM pVM, PMMLOOKUPHYPER pLookup, uint32_t off)
289{
290 return (RTRCPTR)((RTGCUINTPTR)pVM->mm.s.pvHyperAreaGC + pLookup->off + off);
291}
292
293
294/**
295 * Calculate the guest context address of an offset into the HMA memory chunk.
296 *
297 * @returns the guest context base address.
298 * @param pVM The the VM handle.
299 * @param pLookup The HMA lookup record.
300 * @param off The offset into the HMA memory chunk.
301 */
302DECLINLINE(void *) mmHyperLookupCalcCC(PVM pVM, PMMLOOKUPHYPER pLookup, uint32_t off)
303{
304#ifdef IN_RC
305 return (void *)mmHyperLookupCalcRC(pVM, pLookup, off);
306#elif defined(IN_RING0)
307 return mmHyperLookupCalcR0(pVM, pLookup, off);
308#else
309 return mmHyperLookupCalcR3(pLookup, off);
310#endif
311}
312
313
314/**
315 * Converts a ring-0 host context address in the Hypervisor memory region to a ring-3 host context address.
316 *
317 * @returns ring-3 host context address.
318 * @param pVM The VM to operate on.
319 * @param R0Ptr The ring-0 host context address.
320 * You'll be damned if this is not in the HMA! :-)
321 * @thread The Emulation Thread.
322 */
323VMMDECL(RTR3PTR) MMHyperR0ToR3(PVM pVM, RTR0PTR R0Ptr)
324{
325 uint32_t off;
326 PMMLOOKUPHYPER pLookup = mmHyperLookupR0(pVM, R0Ptr, &off);
327 if (pLookup)
328 return mmHyperLookupCalcR3(pLookup, off);
329 return NIL_RTR3PTR;
330}
331
332
333/**
334 * Converts a ring-0 host context address in the Hypervisor memory region to a raw-mode context address.
335 *
336 * @returns raw-mode context address.
337 * @param pVM The VM to operate on.
338 * @param R0Ptr The ring-0 host context address.
339 * You'll be damned if this is not in the HMA! :-)
340 * @thread The Emulation Thread.
341 */
342VMMDECL(RTRCPTR) MMHyperR0ToRC(PVM pVM, RTR0PTR R0Ptr)
343{
344 uint32_t off;
345 PMMLOOKUPHYPER pLookup = mmHyperLookupR0(pVM, R0Ptr, &off);
346 if (pLookup)
347 return mmHyperLookupCalcRC(pVM, pLookup, off);
348 return NIL_RTRCPTR;
349}
350
351
352#ifndef IN_RING0
353/**
354 * Converts a ring-0 host context address in the Hypervisor memory region to a current context address.
355 *
356 * @returns current context address.
357 * @param pVM The VM to operate on.
358 * @param R0Ptr The ring-0 host context address.
359 * You'll be damned if this is not in the HMA! :-)
360 * @thread The Emulation Thread.
361 */
362VMMDECL(void *) MMHyperR0ToCC(PVM pVM, RTR0PTR R0Ptr)
363{
364 uint32_t off;
365 PMMLOOKUPHYPER pLookup = mmHyperLookupR0(pVM, R0Ptr, &off);
366 if (pLookup)
367 return mmHyperLookupCalcCC(pVM, pLookup, off);
368 return NULL;
369}
370#endif
371
372
373/**
374 * Converts a ring-3 host context address in the Hypervisor memory region to a ring-0 host context address.
375 *
376 * @returns ring-0 host context address.
377 * @param pVM The VM to operate on.
378 * @param R3Ptr The ring-3 host context address.
379 * You'll be damned if this is not in the HMA! :-)
380 * @thread The Emulation Thread.
381 */
382VMMDECL(RTR0PTR) MMHyperR3ToR0(PVM pVM, RTR3PTR R3Ptr)
383{
384 uint32_t off;
385 PMMLOOKUPHYPER pLookup = mmHyperLookupR3(pVM, R3Ptr, &off);
386 if (pLookup)
387 return mmHyperLookupCalcR0(pVM, pLookup, off);
388 AssertMsgFailed(("R3Ptr=%p is not inside the hypervisor memory area!\n", R3Ptr));
389 return NIL_RTR0PTR;
390}
391
392
393/**
394 * Converts a ring-3 host context address in the Hypervisor memory region to a guest context address.
395 *
396 * @returns guest context address.
397 * @param pVM The VM to operate on.
398 * @param R3Ptr The ring-3 host context address.
399 * You'll be damned if this is not in the HMA! :-)
400 * @thread The Emulation Thread.
401 */
402VMMDECL(RTRCPTR) MMHyperR3ToRC(PVM pVM, RTR3PTR R3Ptr)
403{
404 uint32_t off;
405 PMMLOOKUPHYPER pLookup = mmHyperLookupR3(pVM, R3Ptr, &off);
406 if (pLookup)
407 return mmHyperLookupCalcRC(pVM, pLookup, off);
408 AssertMsgFailed(("R3Ptr=%p is not inside the hypervisor memory area!\n", R3Ptr));
409 return NIL_RTRCPTR;
410}
411
412
413/**
414 * Converts a ring-3 host context address in the Hypervisor memory region to a current context address.
415 *
416 * @returns current context address.
417 * @param pVM The VM to operate on.
418 * @param R3Ptr The ring-3 host context address.
419 * You'll be damned if this is not in the HMA! :-)
420 * @thread The Emulation Thread.
421 */
422#ifndef IN_RING3
423VMMDECL(void *) MMHyperR3ToCC(PVM pVM, RTR3PTR R3Ptr)
424{
425 uint32_t off;
426 PMMLOOKUPHYPER pLookup = mmHyperLookupR3(pVM, R3Ptr, &off);
427 if (pLookup)
428 return mmHyperLookupCalcCC(pVM, pLookup, off);
429 return NULL;
430}
431#endif
432
433
434/**
435 * Converts a raw-mode context address in the Hypervisor memory region to a ring-3 context address.
436 *
437 * @returns ring-3 host context address.
438 * @param pVM The VM to operate on.
439 * @param GCPtr The raw-mode context address.
440 * You'll be damned if this is not in the HMA! :-)
441 * @thread The Emulation Thread.
442 */
443VMMDECL(RTR3PTR) MMHyperRCToR3(PVM pVM, RTRCPTR RCPtr)
444{
445 uint32_t off;
446 PMMLOOKUPHYPER pLookup = mmHyperLookupRC(pVM, RCPtr, &off);
447 if (pLookup)
448 return mmHyperLookupCalcR3(pLookup, off);
449 return NIL_RTR3PTR;
450}
451
452
453/**
454 * Converts a raw-mode context address in the Hypervisor memory region to a ring-0 host context address.
455 *
456 * @returns ring-0 host context address.
457 * @param pVM The VM to operate on.
458 * @param RCPtr The raw-mode context address.
459 * You'll be damned if this is not in the HMA! :-)
460 * @thread The Emulation Thread.
461 */
462VMMDECL(RTR0PTR) MMHyperRCToR0(PVM pVM, RTRCPTR RCPtr)
463{
464 uint32_t off;
465 PMMLOOKUPHYPER pLookup = mmHyperLookupRC(pVM, RCPtr, &off);
466 if (pLookup)
467 return mmHyperLookupCalcR0(pVM, pLookup, off);
468 return NIL_RTR0PTR;
469}
470
471
472/**
473 * Converts a raw-mode context address in the Hypervisor memory region to a current context address.
474 *
475 * @returns current context address.
476 * @param pVM The VM to operate on.
477 * @param RCPtr The raw-mode host context address.
478 * You'll be damned if this is not in the HMA! :-)
479 * @thread The Emulation Thread.
480 */
481#ifndef IN_RC
482VMMDECL(void *) MMHyperRCToCC(PVM pVM, RTRCPTR RCPtr)
483{
484 uint32_t off;
485 PMMLOOKUPHYPER pLookup = mmHyperLookupRC(pVM, RCPtr, &off);
486 if (pLookup)
487 return mmHyperLookupCalcCC(pVM, pLookup, off);
488 return NULL;
489}
490#endif
491
492
493
494/**
495 * Converts a current context address in the Hypervisor memory region to a ring-3 host context address.
496 *
497 * @returns ring-3 host context address.
498 * @param pVM The VM to operate on.
499 * @param pv The current context address.
500 * You'll be damned if this is not in the HMA! :-)
501 * @thread The Emulation Thread.
502 */
503#ifndef IN_RING3
504VMMDECL(RTR3PTR) MMHyperCCToR3(PVM pVM, void *pv)
505{
506 uint32_t off;
507 PMMLOOKUPHYPER pLookup = mmHyperLookupCC(pVM, pv, &off);
508 if (pLookup)
509 return mmHyperLookupCalcR3(pLookup, off);
510 return NIL_RTR3PTR;
511}
512#endif
513
514/**
515 * Converts a current context address in the Hypervisor memory region to a ring-0 host context address.
516 *
517 * @returns ring-0 host context address.
518 * @param pVM The VM to operate on.
519 * @param pv The current context address.
520 * You'll be damned if this is not in the HMA! :-)
521 * @thread The Emulation Thread.
522 */
523#ifndef IN_RING0
524VMMDECL(RTR0PTR) MMHyperCCToR0(PVM pVM, void *pv)
525{
526 uint32_t off;
527 PMMLOOKUPHYPER pLookup = mmHyperLookupCC(pVM, pv, &off);
528 if (pLookup)
529 return mmHyperLookupCalcR0(pVM, pLookup, off);
530 return NIL_RTR0PTR;
531}
532#endif
533
534
535/**
536 * Converts a current context address in the Hypervisor memory region to a raw-mode context address.
537 *
538 * @returns guest context address.
539 * @param pVM The VM to operate on.
540 * @param pv The current context address.
541 * You'll be damned if this is not in the HMA! :-)
542 * @thread The Emulation Thread.
543 */
544#ifndef IN_RC
545VMMDECL(RTRCPTR) MMHyperCCToRC(PVM pVM, void *pv)
546{
547 uint32_t off;
548 PMMLOOKUPHYPER pLookup = mmHyperLookupCC(pVM, pv, &off);
549 if (pLookup)
550 return mmHyperLookupCalcRC(pVM, pLookup, off);
551 return NIL_RTRCPTR;
552}
553#endif
554
555
556/**
557 * Gets the string name of a memory tag.
558 *
559 * @returns name of enmTag.
560 * @param enmTag The tag.
561 */
562const char *mmGetTagName(MMTAG enmTag)
563{
564 switch (enmTag)
565 {
566 #define TAG2STR(tag) case MM_TAG_##tag: return #tag
567
568 TAG2STR(CFGM);
569 TAG2STR(CFGM_BYTES);
570 TAG2STR(CFGM_STRING);
571 TAG2STR(CFGM_USER);
572
573 TAG2STR(CSAM);
574 TAG2STR(CSAM_PATCH);
575
576 TAG2STR(DBGF);
577 TAG2STR(DBGF_AS);
578 TAG2STR(DBGF_INFO);
579 TAG2STR(DBGF_LINE);
580 TAG2STR(DBGF_LINE_DUP);
581 TAG2STR(DBGF_MODULE);
582 TAG2STR(DBGF_OS);
583 TAG2STR(DBGF_STACK);
584 TAG2STR(DBGF_SYMBOL);
585 TAG2STR(DBGF_SYMBOL_DUP);
586
587 TAG2STR(EM);
588
589 TAG2STR(IOM);
590 TAG2STR(IOM_STATS);
591
592 TAG2STR(MM);
593 TAG2STR(MM_LOOKUP_GUEST);
594 TAG2STR(MM_LOOKUP_PHYS);
595 TAG2STR(MM_LOOKUP_VIRT);
596 TAG2STR(MM_PAGE);
597
598 TAG2STR(PARAV);
599
600 TAG2STR(PATM);
601 TAG2STR(PATM_PATCH);
602
603 TAG2STR(PDM);
604 TAG2STR(PDM_DEVICE);
605 TAG2STR(PDM_DEVICE_DESC);
606 TAG2STR(PDM_DEVICE_USER);
607 TAG2STR(PDM_DRIVER);
608 TAG2STR(PDM_DRIVER_DESC);
609 TAG2STR(PDM_DRIVER_USER);
610 TAG2STR(PDM_USB);
611 TAG2STR(PDM_USB_DESC);
612 TAG2STR(PDM_USB_USER);
613 TAG2STR(PDM_LUN);
614 TAG2STR(PDM_QUEUE);
615 TAG2STR(PDM_THREAD);
616 TAG2STR(PDM_ASYNC_COMPLETION);
617
618 TAG2STR(PGM);
619 TAG2STR(PGM_CHUNK_MAPPING);
620 TAG2STR(PGM_HANDLERS);
621 TAG2STR(PGM_MAPPINGS);
622 TAG2STR(PGM_PHYS);
623 TAG2STR(PGM_POOL);
624
625 TAG2STR(REM);
626
627 TAG2STR(SELM);
628
629 TAG2STR(SSM);
630
631 TAG2STR(STAM);
632
633 TAG2STR(TM);
634
635 TAG2STR(TRPM);
636
637 TAG2STR(VM);
638 TAG2STR(VM_REQ);
639
640 TAG2STR(VMM);
641
642 TAG2STR(HWACCM);
643
644 #undef TAG2STR
645
646 default:
647 {
648 AssertMsgFailed(("Unknown tag %d! forgot to add it to the switch?\n", enmTag));
649#ifdef IN_RING3
650 static char sz[48];
651 RTStrPrintf(sz, sizeof(sz), "%d", enmTag);
652 return sz;
653#else
654 return "unknown tag!";
655#endif
656 }
657 }
658}
659
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