- Timestamp:
- Sep 22, 2015 2:26:11 PM (9 years ago)
- Location:
- trunk/src/VBox/VMM
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/CPUMAllRegs.cpp
r57446 r57856 2704 2704 { 2705 2705 Assert(!(pVCpu->cpum.s.fUseFlags & (CPUM_USED_DEBUG_REGS_GUEST | CPUM_USED_DEBUG_REGS_HYPER | CPUM_USED_DEBUG_REGS_HOST))); 2706 NOREF(pVCpu); 2706 2707 } 2707 2708 -
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r57446 r57856 2077 2077 SUPR0Printf("vmmR0LoggerFlush: invalid VCPU context!\n"); 2078 2078 # endif 2079 #endif 2079 #else 2080 NOREF(pLogger); 2081 #endif /* LOG_ENABLED */ 2080 2082 } 2081 2083 … … 2108 2110 return 2; 2109 2111 #else 2112 NOREF(pLogger); NOREF(pcbBuf); NOREF(cchBuf); 2110 2113 return 0; 2111 2114 #endif … … 2233 2236 { 2234 2237 for (size_t i = 0; i < cbChars; i++) 2235 LogAlways(("%c", pachChars[i])); 2238 { 2239 LogAlways(("%c", pachChars[i])); NOREF(pachChars); 2240 } 2236 2241 2237 2242 NOREF(pv); -
trunk/src/VBox/VMM/include/PGMInline.h
r56626 r57856 1403 1403 DECLINLINE(void) pgmPoolLockPage(PPGMPOOL pPool, PPGMPOOLPAGE pPage) 1404 1404 { 1405 PGM_LOCK_ASSERT_OWNER(pPool->CTX_SUFF(pVM)); 1405 PGM_LOCK_ASSERT_OWNER(pPool->CTX_SUFF(pVM)); NOREF(pPool); 1406 1406 ASMAtomicIncU32(&pPage->cLocked); 1407 1407 } … … 1416 1416 DECLINLINE(void) pgmPoolUnlockPage(PPGMPOOL pPool, PPGMPOOLPAGE pPage) 1417 1417 { 1418 PGM_LOCK_ASSERT_OWNER(pPool->CTX_SUFF(pVM)); 1418 PGM_LOCK_ASSERT_OWNER(pPool->CTX_SUFF(pVM)); NOREF(pPool); 1419 1419 Assert(pPage->cLocked); 1420 1420 ASMAtomicDecU32(&pPage->cLocked); … … 1451 1451 #ifdef PGM_WITHOUT_MAPPINGS 1452 1452 /* There are no mappings in VT-x and AMD-V mode. */ 1453 Assert(HMIsEnabled(pVM)); 1453 Assert(HMIsEnabled(pVM)); NOREF(pVM); 1454 1454 return false; 1455 1455 #else … … 1470 1470 #ifdef PGM_WITHOUT_MAPPINGS 1471 1471 /* There are no mappings in VT-x and AMD-V mode. */ 1472 Assert(HMIsEnabled(pVM)); 1472 Assert(HMIsEnabled(pVM)); NOREF(pVM); 1473 1473 return false; 1474 1474 #else
Note:
See TracChangeset
for help on using the changeset viewer.