Changeset 12542 in vbox for trunk/src/VBox/VMM/CPUM.cpp
- Timestamp:
- Sep 17, 2008 1:01:01 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/CPUM.cpp
r12121 r12542 20 20 */ 21 21 22 /** @page pg_cpum 22 /** @page pg_cpum CPUM - CPU Monitor / Manager 23 * 23 24 * The CPU Monitor / Manager keeps track of all the CPU registers. It is 24 25 * also responsible for lazy FPU handling and some of the context loading … … 719 720 pCtx->msrPAT = UINT64_C(0x0007040600070406); /** @todo correct? */ 720 721 721 /* Reset EFER; see AMD64 Architecture Programmer's Manual Volume 2: Table 14-1. Initial Processor State 722 * The Intel docs don't mention it. 722 /* Reset EFER; see AMD64 Architecture Programmer's Manual Volume 2: Table 14-1. Initial Processor State 723 * The Intel docs don't mention it. 723 724 */ 724 725 pCtx->msrEFER = 0; … … 892 893 memset(&pVM->cpum.s.Guest, 0, sizeof(pVM->cpum.s.Guest)); 893 894 SSMR3GetMem(pSSM, &cpumctx16, sizeof(cpumctx16)); 894 895 895 896 /* Save the old cpumctx state into the new one. */ 896 897 cpumR3LoadCPUM1_6(pVM, &cpumctx16);
Note:
See TracChangeset
for help on using the changeset viewer.