Changeset 14082 in vbox
- Timestamp:
- Nov 11, 2008 10:12:57 AM (16 years ago)
- Location:
- trunk/src/VBox/VMM/VMMAll
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/EMAll.cpp
r13832 r14082 2679 2679 break; 2680 2680 } 2681 Log (("EMInterpretRdmsr %s (%x) -> val=%RX64\n", emMSRtoString(pRegFrame->ecx), pRegFrame->ecx, val));2681 LogFlow(("EMInterpretRdmsr %s (%x) -> val=%RX64\n", emMSRtoString(pRegFrame->ecx), pRegFrame->ecx, val)); 2682 2682 if (rc == VINF_SUCCESS) 2683 2683 { … … 2726 2726 2727 2727 val = RT_MAKE_U64(pRegFrame->eax, pRegFrame->edx); 2728 Log (("EMInterpretWrmsr %s (%x) val=%RX64\n", emMSRtoString(pRegFrame->ecx), pRegFrame->ecx, val));2728 LogFlow(("EMInterpretWrmsr %s (%x) val=%RX64\n", emMSRtoString(pRegFrame->ecx), pRegFrame->ecx, val)); 2729 2729 switch (pRegFrame->ecx) 2730 2730 { -
trunk/src/VBox/VMM/VMMAll/PGMAllHandler.cpp
r13841 r14082 951 951 952 952 /* Do the actual remapping here. This page now serves as an alias for the backing memory specified. */ 953 pPage->HCPhys = pPageRemap->HCPhys ;953 pPage->HCPhys = pPageRemap->HCPhys & MM_RAM_FLAGS_NO_REFS_MASK; 954 954 955 955 LogFlow(("PGMHandlerPhysicalPageAlias %RGp -> %RGp - %RHp\n", GCPhysPage, GCPhysPageRemap, pPageRemap->HCPhys));
Note:
See TracChangeset
for help on using the changeset viewer.