Changeset 41155 in vbox for trunk/src/VBox/VMM
- Timestamp:
- May 3, 2012 11:33:24 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77772
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/include/VMMInternal.h
r41147 r41155 412 412 RCPTRTYPE(uint8_t *) pbEMTStackBottomRC; 413 413 414 #ifdef LOG_ENABLED415 414 /** Pointer to the R0 logger instance - R3 Ptr. 416 415 * This is NULL if logging is disabled. */ … … 419 418 * This is NULL if logging is disabled. */ 420 419 R0PTRTYPE(PVMMR0LOGGER) pR0LoggerR0; 421 #endif422 420 423 421 /** @name Rendezvous … … 449 447 uint64_t u64CallRing3Arg; 450 448 /** The Ring-0 jmp buffer. 451 * @remarks The size of this type isn't stable in assembly, so don't put 449 * @remarks The size of this type isn't stable in assembly, so don't put 452 450 * anything that needs to be accessed from assembly after it. */ 453 451 VMMR0JMPBUF CallRing3JmpBufR0; -
trunk/src/VBox/VMM/include/VMMInternal.mac
r41150 r41155 98 98 99 99 struc VMMCPU 100 100 101 101 .offVMCPU resd 1 102 102 .iLastGZRc resd 1 … … 104 104 .pbEMTStackRC RTRCPTR_RES 1 105 105 .pbEMTStackBottomRC RTRCPTR_RES 1 106 %ifdef LOG_ENABLED 106 107 107 .pR0LoggerR3 RTR3PTR_RES 1 108 108 .pR0LoggerR0 RTR0PTR_RES 1 109 %endif110 109 111 110 .fInRendezvous resb 1 -
trunk/src/VBox/VMM/testcase/Makefile.kmk
r41150 r41155 386 386 $(QUIET)$(RM) -f $@ [email protected] [email protected] 387 387 $(QUIET)$(REDIRECT) -wo [email protected] -- $(VBOX_NM) $< 388 $(QUIET)$(SED) -e '/STAMPROFILEADV/d' \ 389 -e '/00[0-9a-fA-F]* [aA] [^_.]*\./!d' -e 's/\(00[0-9a-fA-F]*\) [aA] \([^.]*\)\.\(.*$$\)/ CHECK_OFF(\2, 0x0\1, \3);/' \ 390 --output [email protected] [email protected] 391 $(QUIET)$(SED) -e '/VM_size$$/d' -e '/VMCPU_size$$/d' \ 392 -e '/00[0-9a-fA-F]* [aA] [^_.]*_size$$/!d' -e 's/\(00[0-9a-fA-F]*\) [aA] \([^_.]*\)_size/ CHECK_SIZE(\2, 0x0\1);/' \ 393 --append [email protected] [email protected] 388 $(QUIET)$(SED) \ 389 -e '/STAMPROFILEADV/d' \ 390 \ 391 -e '/00[0-9a-fA-F]* [aA] [^_.]*\./!d' \ 392 -e 's/\(00[0-9a-fA-F]*\) [aA] \([^.]*\)\.\(.*$$\)/ CHECK_OFF(\2, 0x0\1, \3);/' \ 393 --output [email protected] [email protected] 394 $(QUIET)$(SED) \ 395 -e '/VM_size$$/d' \ 396 -e '/VMCPU_size$$/d' \ 397 -e '/VMMCPU_size$$/d' \ 398 -e '/SUPDRVTRACERUSRCTX32_size$$/d' \ 399 \ 400 -e '/00[0-9a-fA-F]* [aA] [^_.]*_size$$/!d' \ 401 -e 's/\(00[0-9a-fA-F]*\) [aA] \([^_.]*\)_size/ CHECK_SIZE(\2, 0x0\1);/' \ 402 --append [email protected] [email protected] 394 403 $(QUIET)$(MV) -f [email protected] $@ 395 404 $(QUIET)$(RM) -f [email protected] -
trunk/src/VBox/VMM/testcase/tstAsmStructs.cpp
r41154 r41155 5 5 6 6 /* 7 * Copyright (C) 2006-20 07Oracle Corporation7 * Copyright (C) 2006-2012 Oracle Corporation 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 31 31 #include <stdio.h> 32 32 33 #define SUPDRVTRACERUSRCTX32 SUPDRVTRACERUSRCTX 34 #define SUPDRVTRACERUSRCTX64 SUPDRVTRACERUSRCTX 33 34 /* For sup.mac simplifications. */ 35 #define SUPDRVTRACERUSRCTX32 SUPDRVTRACERUSRCTX 36 #define SUPDRVTRACERUSRCTX64 SUPDRVTRACERUSRCTX 35 37 36 38
Note:
See TracChangeset
for help on using the changeset viewer.