Changeset 7715 in vbox for trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
- Timestamp:
- Apr 3, 2008 9:03:01 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMAll/PGMAll.cpp
r7676 r7715 753 753 case PGMMODE_PAE: 754 754 case PGMMODE_PAE_NX: 755 return pVM->pgm.s.HCPhysPaePDPT R;755 return pVM->pgm.s.HCPhysPaePDPT; 756 756 757 757 case PGMMODE_AMD64: … … 784 784 PGMDECL(uint32_t) PGMGetHyperPaeCR3(PVM pVM) 785 785 { 786 return pVM->pgm.s.HCPhysPaePDPT R;786 return pVM->pgm.s.HCPhysPaePDPT; 787 787 } 788 788 … … 816 816 case SUPPAGINGMODE_PAE_NX: 817 817 case SUPPAGINGMODE_PAE_GLOBAL_NX: 818 return pVM->pgm.s.HCPhysInterPaePDPT R;818 return pVM->pgm.s.HCPhysInterPaePDPT; 819 819 820 820 case SUPPAGINGMODE_AMD64: … … 822 822 case SUPPAGINGMODE_AMD64_NX: 823 823 case SUPPAGINGMODE_AMD64_GLOBAL_NX: 824 return pVM->pgm.s.HCPhysInterPaePDPT R;824 return pVM->pgm.s.HCPhysInterPaePDPT; 825 825 826 826 default: … … 845 845 case PGMMODE_PAE: 846 846 case PGMMODE_PAE_NX: 847 return pVM->pgm.s.HCPhysInterPaePDPT R;847 return pVM->pgm.s.HCPhysInterPaePDPT; 848 848 849 849 case PGMMODE_AMD64: … … 876 876 PGMDECL(uint32_t) PGMGetInterPaeCR3(PVM pVM) 877 877 { 878 return pVM->pgm.s.HCPhysInterPaePDPT R;878 return pVM->pgm.s.HCPhysInterPaePDPT; 879 879 } 880 880 … … 894 894 * Performs and schedules necessary updates following a CR3 load or reload. 895 895 * 896 * This will normally involve mapping the guest PD or nPDPT R896 * This will normally involve mapping the guest PD or nPDPT 897 897 * 898 898 * @returns VBox status code.
Note:
See TracChangeset
for help on using the changeset viewer.