- Timestamp:
- May 22, 2014 6:06:18 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 93818
- Location:
- trunk/src/VBox/VMM/VMMR3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/CPUMR3CpuId.cpp
r51282 r51334 679 679 int cpumR3CpuIdInsert(PVM pVM, PCPUMCPUIDLEAF *ppaLeaves, uint32_t *pcLeaves, PCPUMCPUIDLEAF pNewLeaf) 680 680 { 681 PCPUMCPUIDLEAF paLeaves = *ppaLeaves;682 uint32_t cLeaves = *pcLeaves;683 684 681 /* 685 682 * Validate input parameters if we are using the hyper heap and use the VM's CPUID arrays. … … 693 690 pcLeaves = &pVM->cpum.s.GuestInfo.cCpuIdLeaves; 694 691 } 692 693 PCPUMCPUIDLEAF paLeaves = *ppaLeaves; 694 uint32_t cLeaves = *pcLeaves; 695 695 696 696 /* -
trunk/src/VBox/VMM/VMMR3/CPUMR3Db.cpp
r51283 r51334 369 369 int cpumR3MsrRangesInsert(PVM pVM, PCPUMMSRRANGE *ppaMsrRanges, uint32_t *pcMsrRanges, PCCPUMMSRRANGE pNewRange) 370 370 { 371 uint32_t cMsrRanges = *pcMsrRanges;372 PCPUMMSRRANGE paMsrRanges = *ppaMsrRanges;373 374 371 Assert(pNewRange->uLast >= pNewRange->uFirst); 375 372 Assert(pNewRange->enmRdFn > kCpumMsrRdFn_Invalid && pNewRange->enmRdFn < kCpumMsrRdFn_End); … … 387 384 pcMsrRanges = &pVM->cpum.s.GuestInfo.cMsrRanges; 388 385 } 386 387 uint32_t cMsrRanges = *pcMsrRanges; 388 PCPUMMSRRANGE paMsrRanges = *ppaMsrRanges; 389 389 390 390 /*
Note:
See TracChangeset
for help on using the changeset viewer.