2 * i386 helpers (without register variable usage)
4 * Copyright (c) 2003 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301 USA
29 #include "qemu-common.h"
36 /* feature flags taken from "Intel Processor Identification and the CPUID
37 * Instruction" and AMD's "CPUID Specification". In cases of disagreement
38 * about feature names, the Linux name is used. */
39 static const char *feature_name
[] = {
40 "fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce",
41 "cx8", "apic", NULL
, "sep", "mtrr", "pge", "mca", "cmov",
42 "pat", "pse36", "pn" /* Intel psn */, "clflush" /* Intel clfsh */, NULL
, "ds" /* Intel dts */, "acpi", "mmx",
43 "fxsr", "sse", "sse2", "ss", "ht" /* Intel htt */, "tm", "ia64", "pbe",
45 static const char *ext_feature_name
[] = {
46 "pni" /* Intel,AMD sse3 */, NULL
, NULL
, "monitor", "ds_cpl", "vmx", NULL
/* Linux smx */, "est",
47 "tm2", "ssse3", "cid", NULL
, NULL
, "cx16", "xtpr", NULL
,
48 NULL
, NULL
, "dca", NULL
, NULL
, NULL
, NULL
, "popcnt",
49 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
51 static const char *ext2_feature_name
[] = {
52 "fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce",
53 "cx8" /* AMD CMPXCHG8B */, "apic", NULL
, "syscall", "mtrr", "pge", "mca", "cmov",
54 "pat", "pse36", NULL
, NULL
/* Linux mp */, "nx" /* Intel xd */, NULL
, "mmxext", "mmx",
55 "fxsr", "fxsr_opt" /* AMD ffxsr */, "pdpe1gb" /* AMD Page1GB */, "rdtscp", NULL
, "lm" /* Intel 64 */, "3dnowext", "3dnow",
57 static const char *ext3_feature_name
[] = {
58 "lahf_lm" /* AMD LahfSahf */, "cmp_legacy", "svm", "extapic" /* AMD ExtApicSpace */, "cr8legacy" /* AMD AltMovCr8 */, "abm", "sse4a", "misalignsse",
59 "3dnowprefetch", "osvw", NULL
/* Linux ibs */, NULL
, "skinit", "wdt", NULL
, NULL
,
60 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
61 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
64 static void add_flagname_to_bitmaps(char *flagname
, uint32_t *features
,
65 uint32_t *ext_features
,
66 uint32_t *ext2_features
,
67 uint32_t *ext3_features
)
72 for ( i
= 0 ; i
< 32 ; i
++ )
73 if (feature_name
[i
] && !strcmp (flagname
, feature_name
[i
])) {
77 for ( i
= 0 ; i
< 32 ; i
++ )
78 if (ext_feature_name
[i
] && !strcmp (flagname
, ext_feature_name
[i
])) {
79 *ext_features
|= 1 << i
;
82 for ( i
= 0 ; i
< 32 ; i
++ )
83 if (ext2_feature_name
[i
] && !strcmp (flagname
, ext2_feature_name
[i
])) {
84 *ext2_features
|= 1 << i
;
87 for ( i
= 0 ; i
< 32 ; i
++ )
88 if (ext3_feature_name
[i
] && !strcmp (flagname
, ext3_feature_name
[i
])) {
89 *ext3_features
|= 1 << i
;
93 fprintf(stderr
, "CPU feature %s not found\n", flagname
);
97 typedef struct x86_def_t
{
100 uint32_t vendor1
, vendor2
, vendor3
;
104 uint32_t features
, ext_features
, ext2_features
, ext3_features
;
110 #define I486_FEATURES (CPUID_FP87 | CPUID_VME | CPUID_PSE)
111 #define PENTIUM_FEATURES (I486_FEATURES | CPUID_DE | CPUID_TSC | \
112 CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_MMX)
113 #define PENTIUM2_FEATURES (PENTIUM_FEATURES | CPUID_PAE | CPUID_SEP | \
114 CPUID_MTRR | CPUID_PGE | CPUID_MCA | CPUID_CMOV | CPUID_PAT | \
115 CPUID_PSE36 | CPUID_FXSR)
116 #define PENTIUM3_FEATURES (PENTIUM2_FEATURES | CPUID_SSE)
117 #define PPRO_FEATURES (CPUID_FP87 | CPUID_DE | CPUID_PSE | CPUID_TSC | \
118 CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_PGE | CPUID_CMOV | \
119 CPUID_PAT | CPUID_FXSR | CPUID_MMX | CPUID_SSE | CPUID_SSE2 | \
120 CPUID_PAE | CPUID_SEP | CPUID_APIC)
121 static x86_def_t x86_defs
[] = {
126 .vendor1
= CPUID_VENDOR_AMD_1
,
127 .vendor2
= CPUID_VENDOR_AMD_2
,
128 .vendor3
= CPUID_VENDOR_AMD_3
,
132 .features
= PPRO_FEATURES
|
133 /* these features are needed for Win64 and aren't fully implemented */
134 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
|
135 /* this feature is needed for Solaris and isn't fully implemented */
137 .ext_features
= CPUID_EXT_SSE3
,
138 .ext2_features
= (PPRO_FEATURES
& 0x0183F3FF) |
139 CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
|
140 CPUID_EXT2_3DNOW
| CPUID_EXT2_3DNOWEXT
,
141 .ext3_features
= CPUID_EXT3_SVM
,
142 .xlevel
= 0x8000000A,
143 .model_id
= "QEMU Virtual CPU version " QEMU_VERSION
,
148 .vendor1
= CPUID_VENDOR_AMD_1
,
149 .vendor2
= CPUID_VENDOR_AMD_2
,
150 .vendor3
= CPUID_VENDOR_AMD_3
,
154 /* Missing: CPUID_VME, CPUID_HT */
155 .features
= PPRO_FEATURES
|
156 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
|
158 /* Missing: CPUID_EXT_CX16, CPUID_EXT_POPCNT */
159 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_MONITOR
,
160 /* Missing: CPUID_EXT2_PDPE1GB, CPUID_EXT2_RDTSCP */
161 .ext2_features
= (PPRO_FEATURES
& 0x0183F3FF) |
162 CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
|
163 CPUID_EXT2_3DNOW
| CPUID_EXT2_3DNOWEXT
| CPUID_EXT2_MMXEXT
|
165 /* Missing: CPUID_EXT3_LAHF_LM, CPUID_EXT3_CMP_LEG, CPUID_EXT3_EXTAPIC,
166 CPUID_EXT3_CR8LEG, CPUID_EXT3_ABM, CPUID_EXT3_SSE4A,
167 CPUID_EXT3_MISALIGNSSE, CPUID_EXT3_3DNOWPREFETCH,
168 CPUID_EXT3_OSVW, CPUID_EXT3_IBS */
169 .ext3_features
= CPUID_EXT3_SVM
,
170 .xlevel
= 0x8000001A,
171 .model_id
= "AMD Phenom(tm) 9550 Quad-Core Processor"
179 /* The original CPU also implements these features:
180 CPUID_VME, CPUID_DTS, CPUID_ACPI, CPUID_SS, CPUID_HT,
181 CPUID_TM, CPUID_PBE */
182 .features
= PPRO_FEATURES
|
183 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
|
185 /* The original CPU also implements these ext features:
186 CPUID_EXT_DTES64, CPUID_EXT_DSCPL, CPUID_EXT_VMX, CPUID_EXT_EST,
187 CPUID_EXT_TM2, CPUID_EXT_CX16, CPUID_EXT_XTPR, CPUID_EXT_PDCM */
188 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_MONITOR
| CPUID_EXT_SSSE3
,
189 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
,
190 /* Missing: .ext3_features = CPUID_EXT3_LAHF_LM */
191 .xlevel
= 0x80000008,
192 .model_id
= "Intel(R) Core(TM)2 Duo CPU T7700 @ 2.40GHz",
201 .features
= PPRO_FEATURES
,
202 .ext_features
= CPUID_EXT_SSE3
,
204 .model_id
= "QEMU Virtual CPU version " QEMU_VERSION
,
212 /* The original CPU also implements these features:
213 CPUID_DTS, CPUID_ACPI, CPUID_SS, CPUID_HT,
214 CPUID_TM, CPUID_PBE */
215 .features
= PPRO_FEATURES
| CPUID_VME
|
216 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
,
217 /* The original CPU also implements these ext features:
218 CPUID_EXT_VMX, CPUID_EXT_EST, CPUID_EXT_TM2, CPUID_EXT_XTPR,
220 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_MONITOR
,
221 .ext2_features
= CPUID_EXT2_NX
,
222 .xlevel
= 0x80000008,
223 .model_id
= "Genuine Intel(R) CPU T2600 @ 2.16GHz",
231 .features
= I486_FEATURES
,
240 .features
= PENTIUM_FEATURES
,
249 .features
= PENTIUM2_FEATURES
,
258 .features
= PENTIUM3_FEATURES
,
264 .vendor1
= 0x68747541, /* "Auth" */
265 .vendor2
= 0x69746e65, /* "enti" */
266 .vendor3
= 0x444d4163, /* "cAMD" */
270 .features
= PPRO_FEATURES
| CPUID_PSE36
| CPUID_VME
| CPUID_MTRR
| CPUID_MCA
,
271 .ext2_features
= (PPRO_FEATURES
& 0x0183F3FF) | CPUID_EXT2_MMXEXT
| CPUID_EXT2_3DNOW
| CPUID_EXT2_3DNOWEXT
,
272 .xlevel
= 0x80000008,
273 /* XXX: put another string ? */
274 .model_id
= "QEMU Virtual CPU version " QEMU_VERSION
,
278 /* original is on level 10 */
283 .features
= PPRO_FEATURES
|
284 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
| CPUID_VME
,
285 /* Missing: CPUID_DTS | CPUID_ACPI | CPUID_SS |
286 * CPUID_HT | CPUID_TM | CPUID_PBE */
287 /* Some CPUs got no CPUID_SEP */
288 .ext_features
= CPUID_EXT_MONITOR
|
289 CPUID_EXT_SSE3
/* PNI */ | CPUID_EXT_SSSE3
,
290 /* Missing: CPUID_EXT_DSCPL | CPUID_EXT_EST |
291 * CPUID_EXT_TM2 | CPUID_EXT_XTPR */
292 .ext2_features
= (PPRO_FEATURES
& 0x0183F3FF) | CPUID_EXT2_NX
,
293 /* Missing: .ext3_features = CPUID_EXT3_LAHF_LM */
294 .xlevel
= 0x8000000A,
295 .model_id
= "Intel(R) Atom(TM) CPU N270 @ 1.60GHz",
299 static int cpu_x86_find_by_name(x86_def_t
*x86_cpu_def
, const char *cpu_model
)
304 char *s
= strdup(cpu_model
);
305 char *featurestr
, *name
= strtok(s
, ",");
306 uint32_t plus_features
= 0, plus_ext_features
= 0, plus_ext2_features
= 0, plus_ext3_features
= 0;
307 uint32_t minus_features
= 0, minus_ext_features
= 0, minus_ext2_features
= 0, minus_ext3_features
= 0;
308 int family
= -1, model
= -1, stepping
= -1;
311 for (i
= 0; i
< ARRAY_SIZE(x86_defs
); i
++) {
312 if (strcmp(name
, x86_defs
[i
].name
) == 0) {
319 memcpy(x86_cpu_def
, def
, sizeof(*def
));
321 featurestr
= strtok(NULL
, ",");
325 if (featurestr
[0] == '+') {
326 add_flagname_to_bitmaps(featurestr
+ 1, &plus_features
, &plus_ext_features
, &plus_ext2_features
, &plus_ext3_features
);
327 } else if (featurestr
[0] == '-') {
328 add_flagname_to_bitmaps(featurestr
+ 1, &minus_features
, &minus_ext_features
, &minus_ext2_features
, &minus_ext3_features
);
329 } else if ((val
= strchr(featurestr
, '='))) {
331 if (!strcmp(featurestr
, "family")) {
333 family
= strtol(val
, &err
, 10);
334 if (!*val
|| *err
|| family
< 0) {
335 fprintf(stderr
, "bad numerical value %s\n", val
);
338 x86_cpu_def
->family
= family
;
339 } else if (!strcmp(featurestr
, "model")) {
341 model
= strtol(val
, &err
, 10);
342 if (!*val
|| *err
|| model
< 0 || model
> 0xff) {
343 fprintf(stderr
, "bad numerical value %s\n", val
);
346 x86_cpu_def
->model
= model
;
347 } else if (!strcmp(featurestr
, "stepping")) {
349 stepping
= strtol(val
, &err
, 10);
350 if (!*val
|| *err
|| stepping
< 0 || stepping
> 0xf) {
351 fprintf(stderr
, "bad numerical value %s\n", val
);
354 x86_cpu_def
->stepping
= stepping
;
355 } else if (!strcmp(featurestr
, "vendor")) {
356 if (strlen(val
) != 12) {
357 fprintf(stderr
, "vendor string must be 12 chars long\n");
360 x86_cpu_def
->vendor1
= 0;
361 x86_cpu_def
->vendor2
= 0;
362 x86_cpu_def
->vendor3
= 0;
363 for(i
= 0; i
< 4; i
++) {
364 x86_cpu_def
->vendor1
|= ((uint8_t)val
[i
]) << (8 * i
);
365 x86_cpu_def
->vendor2
|= ((uint8_t)val
[i
+ 4]) << (8 * i
);
366 x86_cpu_def
->vendor3
|= ((uint8_t)val
[i
+ 8]) << (8 * i
);
368 x86_cpu_def
->vendor_override
= 1;
369 } else if (!strcmp(featurestr
, "model_id")) {
370 pstrcpy(x86_cpu_def
->model_id
, sizeof(x86_cpu_def
->model_id
),
373 fprintf(stderr
, "unrecognized feature %s\n", featurestr
);
377 fprintf(stderr
, "feature string `%s' not in format (+feature|-feature|feature=xyz)\n", featurestr
);
380 featurestr
= strtok(NULL
, ",");
382 x86_cpu_def
->features
|= plus_features
;
383 x86_cpu_def
->ext_features
|= plus_ext_features
;
384 x86_cpu_def
->ext2_features
|= plus_ext2_features
;
385 x86_cpu_def
->ext3_features
|= plus_ext3_features
;
386 x86_cpu_def
->features
&= ~minus_features
;
387 x86_cpu_def
->ext_features
&= ~minus_ext_features
;
388 x86_cpu_def
->ext2_features
&= ~minus_ext2_features
;
389 x86_cpu_def
->ext3_features
&= ~minus_ext3_features
;
398 void x86_cpu_list (FILE *f
, int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...))
402 for (i
= 0; i
< ARRAY_SIZE(x86_defs
); i
++)
403 (*cpu_fprintf
)(f
, "x86 %16s\n", x86_defs
[i
].name
);
406 static int cpu_x86_register (CPUX86State
*env
, const char *cpu_model
)
408 x86_def_t def1
, *def
= &def1
;
410 if (cpu_x86_find_by_name(def
, cpu_model
) < 0)
413 env
->cpuid_vendor1
= def
->vendor1
;
414 env
->cpuid_vendor2
= def
->vendor2
;
415 env
->cpuid_vendor3
= def
->vendor3
;
417 env
->cpuid_vendor1
= CPUID_VENDOR_INTEL_1
;
418 env
->cpuid_vendor2
= CPUID_VENDOR_INTEL_2
;
419 env
->cpuid_vendor3
= CPUID_VENDOR_INTEL_3
;
421 env
->cpuid_vendor_override
= def
->vendor_override
;
422 env
->cpuid_level
= def
->level
;
423 if (def
->family
> 0x0f)
424 env
->cpuid_version
= 0xf00 | ((def
->family
- 0x0f) << 20);
426 env
->cpuid_version
= def
->family
<< 8;
427 env
->cpuid_version
|= ((def
->model
& 0xf) << 4) | ((def
->model
>> 4) << 16);
428 env
->cpuid_version
|= def
->stepping
;
429 env
->cpuid_features
= def
->features
;
430 env
->pat
= 0x0007040600070406ULL
;
431 env
->cpuid_ext_features
= def
->ext_features
;
432 env
->cpuid_ext2_features
= def
->ext2_features
;
433 env
->cpuid_xlevel
= def
->xlevel
;
434 env
->cpuid_ext3_features
= def
->ext3_features
;
436 const char *model_id
= def
->model_id
;
440 len
= strlen(model_id
);
441 for(i
= 0; i
< 48; i
++) {
445 c
= (uint8_t)model_id
[i
];
446 env
->cpuid_model
[i
>> 2] |= c
<< (8 * (i
& 3));
452 /* NOTE: must be called outside the CPU execute loop */
453 void cpu_reset(CPUX86State
*env
)
457 if (qemu_loglevel_mask(CPU_LOG_RESET
)) {
458 qemu_log("CPU Reset (CPU %d)\n", env
->cpu_index
);
459 log_cpu_state(env
, X86_DUMP_FPU
| X86_DUMP_CCOP
);
462 memset(env
, 0, offsetof(CPUX86State
, breakpoints
));
466 env
->old_exception
= -1;
468 /* init to reset state */
470 #ifdef CONFIG_SOFTMMU
471 env
->hflags
|= HF_SOFTMMU_MASK
;
473 env
->hflags2
|= HF2_GIF_MASK
;
475 cpu_x86_update_cr0(env
, 0x60000010);
476 env
->a20_mask
= ~0x0;
477 env
->smbase
= 0x30000;
479 env
->idt
.limit
= 0xffff;
480 env
->gdt
.limit
= 0xffff;
481 env
->ldt
.limit
= 0xffff;
482 env
->ldt
.flags
= DESC_P_MASK
| (2 << DESC_TYPE_SHIFT
);
483 env
->tr
.limit
= 0xffff;
484 env
->tr
.flags
= DESC_P_MASK
| (11 << DESC_TYPE_SHIFT
);
486 cpu_x86_load_seg_cache(env
, R_CS
, 0xf000, 0xffff0000, 0xffff,
487 DESC_P_MASK
| DESC_S_MASK
| DESC_CS_MASK
|
488 DESC_R_MASK
| DESC_A_MASK
);
489 cpu_x86_load_seg_cache(env
, R_DS
, 0, 0, 0xffff,
490 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
492 cpu_x86_load_seg_cache(env
, R_ES
, 0, 0, 0xffff,
493 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
495 cpu_x86_load_seg_cache(env
, R_SS
, 0, 0, 0xffff,
496 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
498 cpu_x86_load_seg_cache(env
, R_FS
, 0, 0, 0xffff,
499 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
501 cpu_x86_load_seg_cache(env
, R_GS
, 0, 0, 0xffff,
502 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
506 env
->regs
[R_EDX
] = env
->cpuid_version
;
511 for(i
= 0;i
< 8; i
++)
517 memset(env
->dr
, 0, sizeof(env
->dr
));
518 env
->dr
[6] = DR6_FIXED_1
;
519 env
->dr
[7] = DR7_FIXED_1
;
520 cpu_breakpoint_remove_all(env
, BP_CPU
);
521 cpu_watchpoint_remove_all(env
, BP_CPU
);
524 void cpu_x86_close(CPUX86State
*env
)
529 /***********************************************************/
532 static const char *cc_op_str
[] = {
588 cpu_x86_dump_seg_cache(CPUState
*env
, FILE *f
,
589 int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...),
590 const char *name
, struct SegmentCache
*sc
)
593 if (env
->hflags
& HF_CS64_MASK
) {
594 cpu_fprintf(f
, "%-3s=%04x %016" PRIx64
" %08x %08x", name
,
595 sc
->selector
, sc
->base
, sc
->limit
, sc
->flags
);
599 cpu_fprintf(f
, "%-3s=%04x %08x %08x %08x", name
, sc
->selector
,
600 (uint32_t)sc
->base
, sc
->limit
, sc
->flags
);
603 if (!(env
->hflags
& HF_PE_MASK
) || !(sc
->flags
& DESC_P_MASK
))
606 cpu_fprintf(f
, " DPL=%d ", (sc
->flags
& DESC_DPL_MASK
) >> DESC_DPL_SHIFT
);
607 if (sc
->flags
& DESC_S_MASK
) {
608 if (sc
->flags
& DESC_CS_MASK
) {
609 cpu_fprintf(f
, (sc
->flags
& DESC_L_MASK
) ? "CS64" :
610 ((sc
->flags
& DESC_B_MASK
) ? "CS32" : "CS16"));
611 cpu_fprintf(f
, " [%c%c", (sc
->flags
& DESC_C_MASK
) ? 'C' : '-',
612 (sc
->flags
& DESC_R_MASK
) ? 'R' : '-');
614 cpu_fprintf(f
, (sc
->flags
& DESC_B_MASK
) ? "DS " : "DS16");
615 cpu_fprintf(f
, " [%c%c", (sc
->flags
& DESC_E_MASK
) ? 'E' : '-',
616 (sc
->flags
& DESC_W_MASK
) ? 'W' : '-');
618 cpu_fprintf(f
, "%c]", (sc
->flags
& DESC_A_MASK
) ? 'A' : '-');
620 static const char *sys_type_name
[2][16] = {
622 "Reserved", "TSS16-avl", "LDT", "TSS16-busy",
623 "CallGate16", "TaskGate", "IntGate16", "TrapGate16",
624 "Reserved", "TSS32-avl", "Reserved", "TSS32-busy",
625 "CallGate32", "Reserved", "IntGate32", "TrapGate32"
628 "<hiword>", "Reserved", "LDT", "Reserved", "Reserved",
629 "Reserved", "Reserved", "Reserved", "Reserved",
630 "TSS64-avl", "Reserved", "TSS64-busy", "CallGate64",
631 "Reserved", "IntGate64", "TrapGate64"
634 cpu_fprintf(f
, sys_type_name
[(env
->hflags
& HF_LMA_MASK
) ? 1 : 0]
635 [(sc
->flags
& DESC_TYPE_MASK
)
636 >> DESC_TYPE_SHIFT
]);
639 cpu_fprintf(f
, "\n");
642 void cpu_dump_state(CPUState
*env
, FILE *f
,
643 int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...),
648 static const char *seg_name
[6] = { "ES", "CS", "SS", "DS", "FS", "GS" };
651 kvm_arch_get_registers(env
);
653 eflags
= env
->eflags
;
655 if (env
->hflags
& HF_CS64_MASK
) {
657 "RAX=%016" PRIx64
" RBX=%016" PRIx64
" RCX=%016" PRIx64
" RDX=%016" PRIx64
"\n"
658 "RSI=%016" PRIx64
" RDI=%016" PRIx64
" RBP=%016" PRIx64
" RSP=%016" PRIx64
"\n"
659 "R8 =%016" PRIx64
" R9 =%016" PRIx64
" R10=%016" PRIx64
" R11=%016" PRIx64
"\n"
660 "R12=%016" PRIx64
" R13=%016" PRIx64
" R14=%016" PRIx64
" R15=%016" PRIx64
"\n"
661 "RIP=%016" PRIx64
" RFL=%08x [%c%c%c%c%c%c%c] CPL=%d II=%d A20=%d SMM=%d HLT=%d\n",
679 eflags
& DF_MASK
? 'D' : '-',
680 eflags
& CC_O
? 'O' : '-',
681 eflags
& CC_S
? 'S' : '-',
682 eflags
& CC_Z
? 'Z' : '-',
683 eflags
& CC_A
? 'A' : '-',
684 eflags
& CC_P
? 'P' : '-',
685 eflags
& CC_C
? 'C' : '-',
686 env
->hflags
& HF_CPL_MASK
,
687 (env
->hflags
>> HF_INHIBIT_IRQ_SHIFT
) & 1,
688 (int)(env
->a20_mask
>> 20) & 1,
689 (env
->hflags
>> HF_SMM_SHIFT
) & 1,
694 cpu_fprintf(f
, "EAX=%08x EBX=%08x ECX=%08x EDX=%08x\n"
695 "ESI=%08x EDI=%08x EBP=%08x ESP=%08x\n"
696 "EIP=%08x EFL=%08x [%c%c%c%c%c%c%c] CPL=%d II=%d A20=%d SMM=%d HLT=%d\n",
697 (uint32_t)env
->regs
[R_EAX
],
698 (uint32_t)env
->regs
[R_EBX
],
699 (uint32_t)env
->regs
[R_ECX
],
700 (uint32_t)env
->regs
[R_EDX
],
701 (uint32_t)env
->regs
[R_ESI
],
702 (uint32_t)env
->regs
[R_EDI
],
703 (uint32_t)env
->regs
[R_EBP
],
704 (uint32_t)env
->regs
[R_ESP
],
705 (uint32_t)env
->eip
, eflags
,
706 eflags
& DF_MASK
? 'D' : '-',
707 eflags
& CC_O
? 'O' : '-',
708 eflags
& CC_S
? 'S' : '-',
709 eflags
& CC_Z
? 'Z' : '-',
710 eflags
& CC_A
? 'A' : '-',
711 eflags
& CC_P
? 'P' : '-',
712 eflags
& CC_C
? 'C' : '-',
713 env
->hflags
& HF_CPL_MASK
,
714 (env
->hflags
>> HF_INHIBIT_IRQ_SHIFT
) & 1,
715 (int)(env
->a20_mask
>> 20) & 1,
716 (env
->hflags
>> HF_SMM_SHIFT
) & 1,
720 for(i
= 0; i
< 6; i
++) {
721 cpu_x86_dump_seg_cache(env
, f
, cpu_fprintf
, seg_name
[i
],
724 cpu_x86_dump_seg_cache(env
, f
, cpu_fprintf
, "LDT", &env
->ldt
);
725 cpu_x86_dump_seg_cache(env
, f
, cpu_fprintf
, "TR", &env
->tr
);
728 if (env
->hflags
& HF_LMA_MASK
) {
729 cpu_fprintf(f
, "GDT= %016" PRIx64
" %08x\n",
730 env
->gdt
.base
, env
->gdt
.limit
);
731 cpu_fprintf(f
, "IDT= %016" PRIx64
" %08x\n",
732 env
->idt
.base
, env
->idt
.limit
);
733 cpu_fprintf(f
, "CR0=%08x CR2=%016" PRIx64
" CR3=%016" PRIx64
" CR4=%08x\n",
734 (uint32_t)env
->cr
[0],
737 (uint32_t)env
->cr
[4]);
738 for(i
= 0; i
< 4; i
++)
739 cpu_fprintf(f
, "DR%d=%016" PRIx64
" ", i
, env
->dr
[i
]);
740 cpu_fprintf(f
, "\nDR6=%016" PRIx64
" DR7=%016" PRIx64
"\n",
741 env
->dr
[6], env
->dr
[7]);
745 cpu_fprintf(f
, "GDT= %08x %08x\n",
746 (uint32_t)env
->gdt
.base
, env
->gdt
.limit
);
747 cpu_fprintf(f
, "IDT= %08x %08x\n",
748 (uint32_t)env
->idt
.base
, env
->idt
.limit
);
749 cpu_fprintf(f
, "CR0=%08x CR2=%08x CR3=%08x CR4=%08x\n",
750 (uint32_t)env
->cr
[0],
751 (uint32_t)env
->cr
[2],
752 (uint32_t)env
->cr
[3],
753 (uint32_t)env
->cr
[4]);
754 for(i
= 0; i
< 4; i
++)
755 cpu_fprintf(f
, "DR%d=%08x ", i
, env
->dr
[i
]);
756 cpu_fprintf(f
, "\nDR6=%08x DR7=%08x\n", env
->dr
[6], env
->dr
[7]);
758 if (flags
& X86_DUMP_CCOP
) {
759 if ((unsigned)env
->cc_op
< CC_OP_NB
)
760 snprintf(cc_op_name
, sizeof(cc_op_name
), "%s", cc_op_str
[env
->cc_op
]);
762 snprintf(cc_op_name
, sizeof(cc_op_name
), "[%d]", env
->cc_op
);
764 if (env
->hflags
& HF_CS64_MASK
) {
765 cpu_fprintf(f
, "CCS=%016" PRIx64
" CCD=%016" PRIx64
" CCO=%-8s\n",
766 env
->cc_src
, env
->cc_dst
,
771 cpu_fprintf(f
, "CCS=%08x CCD=%08x CCO=%-8s\n",
772 (uint32_t)env
->cc_src
, (uint32_t)env
->cc_dst
,
776 if (flags
& X86_DUMP_FPU
) {
779 for(i
= 0; i
< 8; i
++) {
780 fptag
|= ((!env
->fptags
[i
]) << i
);
782 cpu_fprintf(f
, "FCW=%04x FSW=%04x [ST=%d] FTW=%02x MXCSR=%08x\n",
784 (env
->fpus
& ~0x3800) | (env
->fpstt
& 0x7) << 11,
789 #if defined(USE_X86LDOUBLE)
797 tmp
.d
= env
->fpregs
[i
].d
;
798 cpu_fprintf(f
, "FPR%d=%016" PRIx64
" %04x",
799 i
, tmp
.l
.lower
, tmp
.l
.upper
);
801 cpu_fprintf(f
, "FPR%d=%016" PRIx64
,
802 i
, env
->fpregs
[i
].mmx
.q
);
805 cpu_fprintf(f
, "\n");
809 if (env
->hflags
& HF_CS64_MASK
)
814 cpu_fprintf(f
, "XMM%02d=%08x%08x%08x%08x",
816 env
->xmm_regs
[i
].XMM_L(3),
817 env
->xmm_regs
[i
].XMM_L(2),
818 env
->xmm_regs
[i
].XMM_L(1),
819 env
->xmm_regs
[i
].XMM_L(0));
821 cpu_fprintf(f
, "\n");
828 /***********************************************************/
830 /* XXX: add PGE support */
832 void cpu_x86_set_a20(CPUX86State
*env
, int a20_state
)
834 a20_state
= (a20_state
!= 0);
835 if (a20_state
!= ((env
->a20_mask
>> 20) & 1)) {
836 #if defined(DEBUG_MMU)
837 printf("A20 update: a20=%d\n", a20_state
);
839 /* if the cpu is currently executing code, we must unlink it and
840 all the potentially executing TB */
841 cpu_interrupt(env
, CPU_INTERRUPT_EXITTB
);
843 /* when a20 is changed, all the MMU mappings are invalid, so
844 we must flush everything */
846 env
->a20_mask
= (~0x100000) | (a20_state
<< 20);
850 void cpu_x86_update_cr0(CPUX86State
*env
, uint32_t new_cr0
)
854 #if defined(DEBUG_MMU)
855 printf("CR0 update: CR0=0x%08x\n", new_cr0
);
857 if ((new_cr0
& (CR0_PG_MASK
| CR0_WP_MASK
| CR0_PE_MASK
)) !=
858 (env
->cr
[0] & (CR0_PG_MASK
| CR0_WP_MASK
| CR0_PE_MASK
))) {
863 if (!(env
->cr
[0] & CR0_PG_MASK
) && (new_cr0
& CR0_PG_MASK
) &&
864 (env
->efer
& MSR_EFER_LME
)) {
865 /* enter in long mode */
866 /* XXX: generate an exception */
867 if (!(env
->cr
[4] & CR4_PAE_MASK
))
869 env
->efer
|= MSR_EFER_LMA
;
870 env
->hflags
|= HF_LMA_MASK
;
871 } else if ((env
->cr
[0] & CR0_PG_MASK
) && !(new_cr0
& CR0_PG_MASK
) &&
872 (env
->efer
& MSR_EFER_LMA
)) {
874 env
->efer
&= ~MSR_EFER_LMA
;
875 env
->hflags
&= ~(HF_LMA_MASK
| HF_CS64_MASK
);
876 env
->eip
&= 0xffffffff;
879 env
->cr
[0] = new_cr0
| CR0_ET_MASK
;
881 /* update PE flag in hidden flags */
882 pe_state
= (env
->cr
[0] & CR0_PE_MASK
);
883 env
->hflags
= (env
->hflags
& ~HF_PE_MASK
) | (pe_state
<< HF_PE_SHIFT
);
884 /* ensure that ADDSEG is always set in real mode */
885 env
->hflags
|= ((pe_state
^ 1) << HF_ADDSEG_SHIFT
);
886 /* update FPU flags */
887 env
->hflags
= (env
->hflags
& ~(HF_MP_MASK
| HF_EM_MASK
| HF_TS_MASK
)) |
888 ((new_cr0
<< (HF_MP_SHIFT
- 1)) & (HF_MP_MASK
| HF_EM_MASK
| HF_TS_MASK
));
891 /* XXX: in legacy PAE mode, generate a GPF if reserved bits are set in
893 void cpu_x86_update_cr3(CPUX86State
*env
, target_ulong new_cr3
)
895 env
->cr
[3] = new_cr3
;
896 if (env
->cr
[0] & CR0_PG_MASK
) {
897 #if defined(DEBUG_MMU)
898 printf("CR3 update: CR3=" TARGET_FMT_lx
"\n", new_cr3
);
904 void cpu_x86_update_cr4(CPUX86State
*env
, uint32_t new_cr4
)
906 #if defined(DEBUG_MMU)
907 printf("CR4 update: CR4=%08x\n", (uint32_t)env
->cr
[4]);
909 if ((new_cr4
& (CR4_PGE_MASK
| CR4_PAE_MASK
| CR4_PSE_MASK
)) !=
910 (env
->cr
[4] & (CR4_PGE_MASK
| CR4_PAE_MASK
| CR4_PSE_MASK
))) {
914 if (!(env
->cpuid_features
& CPUID_SSE
))
915 new_cr4
&= ~CR4_OSFXSR_MASK
;
916 if (new_cr4
& CR4_OSFXSR_MASK
)
917 env
->hflags
|= HF_OSFXSR_MASK
;
919 env
->hflags
&= ~HF_OSFXSR_MASK
;
921 env
->cr
[4] = new_cr4
;
924 #if defined(CONFIG_USER_ONLY)
926 int cpu_x86_handle_mmu_fault(CPUX86State
*env
, target_ulong addr
,
927 int is_write
, int mmu_idx
, int is_softmmu
)
929 /* user mode only emulation */
932 env
->error_code
= (is_write
<< PG_ERROR_W_BIT
);
933 env
->error_code
|= PG_ERROR_U_MASK
;
934 env
->exception_index
= EXCP0E_PAGE
;
938 target_phys_addr_t
cpu_get_phys_page_debug(CPUState
*env
, target_ulong addr
)
945 /* XXX: This value should match the one returned by CPUID
947 #if defined(CONFIG_KQEMU)
948 #define PHYS_ADDR_MASK 0xfffff000LL
950 # if defined(TARGET_X86_64)
951 # define PHYS_ADDR_MASK 0xfffffff000LL
953 # define PHYS_ADDR_MASK 0xffffff000LL
958 -1 = cannot handle fault
959 0 = nothing more to do
960 1 = generate PF fault
961 2 = soft MMU activation required for this block
963 int cpu_x86_handle_mmu_fault(CPUX86State
*env
, target_ulong addr
,
964 int is_write1
, int mmu_idx
, int is_softmmu
)
967 target_ulong pde_addr
, pte_addr
;
968 int error_code
, is_dirty
, prot
, page_size
, ret
, is_write
, is_user
;
969 target_phys_addr_t paddr
;
970 uint32_t page_offset
;
971 target_ulong vaddr
, virt_addr
;
973 is_user
= mmu_idx
== MMU_USER_IDX
;
974 #if defined(DEBUG_MMU)
975 printf("MMU fault: addr=" TARGET_FMT_lx
" w=%d u=%d eip=" TARGET_FMT_lx
"\n",
976 addr
, is_write1
, is_user
, env
->eip
);
978 is_write
= is_write1
& 1;
980 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
982 virt_addr
= addr
& TARGET_PAGE_MASK
;
983 prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
988 if (env
->cr
[4] & CR4_PAE_MASK
) {
990 target_ulong pdpe_addr
;
993 if (env
->hflags
& HF_LMA_MASK
) {
994 uint64_t pml4e_addr
, pml4e
;
997 /* test virtual address sign extension */
998 sext
= (int64_t)addr
>> 47;
999 if (sext
!= 0 && sext
!= -1) {
1000 env
->error_code
= 0;
1001 env
->exception_index
= EXCP0D_GPF
;
1005 pml4e_addr
= ((env
->cr
[3] & ~0xfff) + (((addr
>> 39) & 0x1ff) << 3)) &
1007 pml4e
= ldq_phys(pml4e_addr
);
1008 if (!(pml4e
& PG_PRESENT_MASK
)) {
1012 if (!(env
->efer
& MSR_EFER_NXE
) && (pml4e
& PG_NX_MASK
)) {
1013 error_code
= PG_ERROR_RSVD_MASK
;
1016 if (!(pml4e
& PG_ACCESSED_MASK
)) {
1017 pml4e
|= PG_ACCESSED_MASK
;
1018 stl_phys_notdirty(pml4e_addr
, pml4e
);
1020 ptep
= pml4e
^ PG_NX_MASK
;
1021 pdpe_addr
= ((pml4e
& PHYS_ADDR_MASK
) + (((addr
>> 30) & 0x1ff) << 3)) &
1023 pdpe
= ldq_phys(pdpe_addr
);
1024 if (!(pdpe
& PG_PRESENT_MASK
)) {
1028 if (!(env
->efer
& MSR_EFER_NXE
) && (pdpe
& PG_NX_MASK
)) {
1029 error_code
= PG_ERROR_RSVD_MASK
;
1032 ptep
&= pdpe
^ PG_NX_MASK
;
1033 if (!(pdpe
& PG_ACCESSED_MASK
)) {
1034 pdpe
|= PG_ACCESSED_MASK
;
1035 stl_phys_notdirty(pdpe_addr
, pdpe
);
1040 /* XXX: load them when cr3 is loaded ? */
1041 pdpe_addr
= ((env
->cr
[3] & ~0x1f) + ((addr
>> 27) & 0x18)) &
1043 pdpe
= ldq_phys(pdpe_addr
);
1044 if (!(pdpe
& PG_PRESENT_MASK
)) {
1048 ptep
= PG_NX_MASK
| PG_USER_MASK
| PG_RW_MASK
;
1051 pde_addr
= ((pdpe
& PHYS_ADDR_MASK
) + (((addr
>> 21) & 0x1ff) << 3)) &
1053 pde
= ldq_phys(pde_addr
);
1054 if (!(pde
& PG_PRESENT_MASK
)) {
1058 if (!(env
->efer
& MSR_EFER_NXE
) && (pde
& PG_NX_MASK
)) {
1059 error_code
= PG_ERROR_RSVD_MASK
;
1062 ptep
&= pde
^ PG_NX_MASK
;
1063 if (pde
& PG_PSE_MASK
) {
1065 page_size
= 2048 * 1024;
1067 if ((ptep
& PG_NX_MASK
) && is_write1
== 2)
1068 goto do_fault_protect
;
1070 if (!(ptep
& PG_USER_MASK
))
1071 goto do_fault_protect
;
1072 if (is_write
&& !(ptep
& PG_RW_MASK
))
1073 goto do_fault_protect
;
1075 if ((env
->cr
[0] & CR0_WP_MASK
) &&
1076 is_write
&& !(ptep
& PG_RW_MASK
))
1077 goto do_fault_protect
;
1079 is_dirty
= is_write
&& !(pde
& PG_DIRTY_MASK
);
1080 if (!(pde
& PG_ACCESSED_MASK
) || is_dirty
) {
1081 pde
|= PG_ACCESSED_MASK
;
1083 pde
|= PG_DIRTY_MASK
;
1084 stl_phys_notdirty(pde_addr
, pde
);
1086 /* align to page_size */
1087 pte
= pde
& ((PHYS_ADDR_MASK
& ~(page_size
- 1)) | 0xfff);
1088 virt_addr
= addr
& ~(page_size
- 1);
1091 if (!(pde
& PG_ACCESSED_MASK
)) {
1092 pde
|= PG_ACCESSED_MASK
;
1093 stl_phys_notdirty(pde_addr
, pde
);
1095 pte_addr
= ((pde
& PHYS_ADDR_MASK
) + (((addr
>> 12) & 0x1ff) << 3)) &
1097 pte
= ldq_phys(pte_addr
);
1098 if (!(pte
& PG_PRESENT_MASK
)) {
1102 if (!(env
->efer
& MSR_EFER_NXE
) && (pte
& PG_NX_MASK
)) {
1103 error_code
= PG_ERROR_RSVD_MASK
;
1106 /* combine pde and pte nx, user and rw protections */
1107 ptep
&= pte
^ PG_NX_MASK
;
1109 if ((ptep
& PG_NX_MASK
) && is_write1
== 2)
1110 goto do_fault_protect
;
1112 if (!(ptep
& PG_USER_MASK
))
1113 goto do_fault_protect
;
1114 if (is_write
&& !(ptep
& PG_RW_MASK
))
1115 goto do_fault_protect
;
1117 if ((env
->cr
[0] & CR0_WP_MASK
) &&
1118 is_write
&& !(ptep
& PG_RW_MASK
))
1119 goto do_fault_protect
;
1121 is_dirty
= is_write
&& !(pte
& PG_DIRTY_MASK
);
1122 if (!(pte
& PG_ACCESSED_MASK
) || is_dirty
) {
1123 pte
|= PG_ACCESSED_MASK
;
1125 pte
|= PG_DIRTY_MASK
;
1126 stl_phys_notdirty(pte_addr
, pte
);
1129 virt_addr
= addr
& ~0xfff;
1130 pte
= pte
& (PHYS_ADDR_MASK
| 0xfff);
1135 /* page directory entry */
1136 pde_addr
= ((env
->cr
[3] & ~0xfff) + ((addr
>> 20) & 0xffc)) &
1138 pde
= ldl_phys(pde_addr
);
1139 if (!(pde
& PG_PRESENT_MASK
)) {
1143 /* if PSE bit is set, then we use a 4MB page */
1144 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1145 page_size
= 4096 * 1024;
1147 if (!(pde
& PG_USER_MASK
))
1148 goto do_fault_protect
;
1149 if (is_write
&& !(pde
& PG_RW_MASK
))
1150 goto do_fault_protect
;
1152 if ((env
->cr
[0] & CR0_WP_MASK
) &&
1153 is_write
&& !(pde
& PG_RW_MASK
))
1154 goto do_fault_protect
;
1156 is_dirty
= is_write
&& !(pde
& PG_DIRTY_MASK
);
1157 if (!(pde
& PG_ACCESSED_MASK
) || is_dirty
) {
1158 pde
|= PG_ACCESSED_MASK
;
1160 pde
|= PG_DIRTY_MASK
;
1161 stl_phys_notdirty(pde_addr
, pde
);
1164 pte
= pde
& ~( (page_size
- 1) & ~0xfff); /* align to page_size */
1166 virt_addr
= addr
& ~(page_size
- 1);
1168 if (!(pde
& PG_ACCESSED_MASK
)) {
1169 pde
|= PG_ACCESSED_MASK
;
1170 stl_phys_notdirty(pde_addr
, pde
);
1173 /* page directory entry */
1174 pte_addr
= ((pde
& ~0xfff) + ((addr
>> 10) & 0xffc)) &
1176 pte
= ldl_phys(pte_addr
);
1177 if (!(pte
& PG_PRESENT_MASK
)) {
1181 /* combine pde and pte user and rw protections */
1184 if (!(ptep
& PG_USER_MASK
))
1185 goto do_fault_protect
;
1186 if (is_write
&& !(ptep
& PG_RW_MASK
))
1187 goto do_fault_protect
;
1189 if ((env
->cr
[0] & CR0_WP_MASK
) &&
1190 is_write
&& !(ptep
& PG_RW_MASK
))
1191 goto do_fault_protect
;
1193 is_dirty
= is_write
&& !(pte
& PG_DIRTY_MASK
);
1194 if (!(pte
& PG_ACCESSED_MASK
) || is_dirty
) {
1195 pte
|= PG_ACCESSED_MASK
;
1197 pte
|= PG_DIRTY_MASK
;
1198 stl_phys_notdirty(pte_addr
, pte
);
1201 virt_addr
= addr
& ~0xfff;
1204 /* the page can be put in the TLB */
1206 if (!(ptep
& PG_NX_MASK
))
1208 if (pte
& PG_DIRTY_MASK
) {
1209 /* only set write access if already dirty... otherwise wait
1212 if (ptep
& PG_RW_MASK
)
1215 if (!(env
->cr
[0] & CR0_WP_MASK
) ||
1216 (ptep
& PG_RW_MASK
))
1221 pte
= pte
& env
->a20_mask
;
1223 /* Even if 4MB pages, we map only one 4KB page in the cache to
1224 avoid filling it too fast */
1225 page_offset
= (addr
& TARGET_PAGE_MASK
) & (page_size
- 1);
1226 paddr
= (pte
& TARGET_PAGE_MASK
) + page_offset
;
1227 vaddr
= virt_addr
+ page_offset
;
1229 ret
= tlb_set_page_exec(env
, vaddr
, paddr
, prot
, mmu_idx
, is_softmmu
);
1232 error_code
= PG_ERROR_P_MASK
;
1234 error_code
|= (is_write
<< PG_ERROR_W_BIT
);
1236 error_code
|= PG_ERROR_U_MASK
;
1237 if (is_write1
== 2 &&
1238 (env
->efer
& MSR_EFER_NXE
) &&
1239 (env
->cr
[4] & CR4_PAE_MASK
))
1240 error_code
|= PG_ERROR_I_D_MASK
;
1241 if (env
->intercept_exceptions
& (1 << EXCP0E_PAGE
)) {
1242 /* cr2 is not modified in case of exceptions */
1243 stq_phys(env
->vm_vmcb
+ offsetof(struct vmcb
, control
.exit_info_2
),
1248 env
->error_code
= error_code
;
1249 env
->exception_index
= EXCP0E_PAGE
;
1253 target_phys_addr_t
cpu_get_phys_page_debug(CPUState
*env
, target_ulong addr
)
1255 target_ulong pde_addr
, pte_addr
;
1257 target_phys_addr_t paddr
;
1258 uint32_t page_offset
;
1261 if (env
->cr
[4] & CR4_PAE_MASK
) {
1262 target_ulong pdpe_addr
;
1265 #ifdef TARGET_X86_64
1266 if (env
->hflags
& HF_LMA_MASK
) {
1267 uint64_t pml4e_addr
, pml4e
;
1270 /* test virtual address sign extension */
1271 sext
= (int64_t)addr
>> 47;
1272 if (sext
!= 0 && sext
!= -1)
1275 pml4e_addr
= ((env
->cr
[3] & ~0xfff) + (((addr
>> 39) & 0x1ff) << 3)) &
1277 pml4e
= ldq_phys(pml4e_addr
);
1278 if (!(pml4e
& PG_PRESENT_MASK
))
1281 pdpe_addr
= ((pml4e
& ~0xfff) + (((addr
>> 30) & 0x1ff) << 3)) &
1283 pdpe
= ldq_phys(pdpe_addr
);
1284 if (!(pdpe
& PG_PRESENT_MASK
))
1289 pdpe_addr
= ((env
->cr
[3] & ~0x1f) + ((addr
>> 27) & 0x18)) &
1291 pdpe
= ldq_phys(pdpe_addr
);
1292 if (!(pdpe
& PG_PRESENT_MASK
))
1296 pde_addr
= ((pdpe
& ~0xfff) + (((addr
>> 21) & 0x1ff) << 3)) &
1298 pde
= ldq_phys(pde_addr
);
1299 if (!(pde
& PG_PRESENT_MASK
)) {
1302 if (pde
& PG_PSE_MASK
) {
1304 page_size
= 2048 * 1024;
1305 pte
= pde
& ~( (page_size
- 1) & ~0xfff); /* align to page_size */
1308 pte_addr
= ((pde
& ~0xfff) + (((addr
>> 12) & 0x1ff) << 3)) &
1311 pte
= ldq_phys(pte_addr
);
1313 if (!(pte
& PG_PRESENT_MASK
))
1318 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1322 /* page directory entry */
1323 pde_addr
= ((env
->cr
[3] & ~0xfff) + ((addr
>> 20) & 0xffc)) & env
->a20_mask
;
1324 pde
= ldl_phys(pde_addr
);
1325 if (!(pde
& PG_PRESENT_MASK
))
1327 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1328 pte
= pde
& ~0x003ff000; /* align to 4MB */
1329 page_size
= 4096 * 1024;
1331 /* page directory entry */
1332 pte_addr
= ((pde
& ~0xfff) + ((addr
>> 10) & 0xffc)) & env
->a20_mask
;
1333 pte
= ldl_phys(pte_addr
);
1334 if (!(pte
& PG_PRESENT_MASK
))
1339 pte
= pte
& env
->a20_mask
;
1342 page_offset
= (addr
& TARGET_PAGE_MASK
) & (page_size
- 1);
1343 paddr
= (pte
& TARGET_PAGE_MASK
) + page_offset
;
1347 void hw_breakpoint_insert(CPUState
*env
, int index
)
1351 switch (hw_breakpoint_type(env
->dr
[7], index
)) {
1353 if (hw_breakpoint_enabled(env
->dr
[7], index
))
1354 err
= cpu_breakpoint_insert(env
, env
->dr
[index
], BP_CPU
,
1355 &env
->cpu_breakpoint
[index
]);
1358 type
= BP_CPU
| BP_MEM_WRITE
;
1361 /* No support for I/O watchpoints yet */
1364 type
= BP_CPU
| BP_MEM_ACCESS
;
1366 err
= cpu_watchpoint_insert(env
, env
->dr
[index
],
1367 hw_breakpoint_len(env
->dr
[7], index
),
1368 type
, &env
->cpu_watchpoint
[index
]);
1372 env
->cpu_breakpoint
[index
] = NULL
;
1375 void hw_breakpoint_remove(CPUState
*env
, int index
)
1377 if (!env
->cpu_breakpoint
[index
])
1379 switch (hw_breakpoint_type(env
->dr
[7], index
)) {
1381 if (hw_breakpoint_enabled(env
->dr
[7], index
))
1382 cpu_breakpoint_remove_by_ref(env
, env
->cpu_breakpoint
[index
]);
1386 cpu_watchpoint_remove_by_ref(env
, env
->cpu_watchpoint
[index
]);
1389 /* No support for I/O watchpoints yet */
1394 int check_hw_breakpoints(CPUState
*env
, int force_dr6_update
)
1398 int hit_enabled
= 0;
1400 dr6
= env
->dr
[6] & ~0xf;
1401 for (reg
= 0; reg
< 4; reg
++) {
1402 type
= hw_breakpoint_type(env
->dr
[7], reg
);
1403 if ((type
== 0 && env
->dr
[reg
] == env
->eip
) ||
1404 ((type
& 1) && env
->cpu_watchpoint
[reg
] &&
1405 (env
->cpu_watchpoint
[reg
]->flags
& BP_WATCHPOINT_HIT
))) {
1407 if (hw_breakpoint_enabled(env
->dr
[7], reg
))
1411 if (hit_enabled
|| force_dr6_update
)
1416 static CPUDebugExcpHandler
*prev_debug_excp_handler
;
1418 void raise_exception(int exception_index
);
1420 static void breakpoint_handler(CPUState
*env
)
1424 if (env
->watchpoint_hit
) {
1425 if (env
->watchpoint_hit
->flags
& BP_CPU
) {
1426 env
->watchpoint_hit
= NULL
;
1427 if (check_hw_breakpoints(env
, 0))
1428 raise_exception(EXCP01_DB
);
1430 cpu_resume_from_signal(env
, NULL
);
1433 TAILQ_FOREACH(bp
, &env
->breakpoints
, entry
)
1434 if (bp
->pc
== env
->eip
) {
1435 if (bp
->flags
& BP_CPU
) {
1436 check_hw_breakpoints(env
, 1);
1437 raise_exception(EXCP01_DB
);
1442 if (prev_debug_excp_handler
)
1443 prev_debug_excp_handler(env
);
1445 #endif /* !CONFIG_USER_ONLY */
1447 static void host_cpuid(uint32_t function
, uint32_t count
,
1448 uint32_t *eax
, uint32_t *ebx
,
1449 uint32_t *ecx
, uint32_t *edx
)
1451 #if defined(CONFIG_KVM) || defined(USE_KVM)
1455 asm volatile("cpuid"
1456 : "=a"(vec
[0]), "=b"(vec
[1]),
1457 "=c"(vec
[2]), "=d"(vec
[3])
1458 : "0"(function
), "c"(count
) : "cc");
1460 asm volatile("pusha \n\t"
1462 "mov %%eax, 0(%2) \n\t"
1463 "mov %%ebx, 4(%2) \n\t"
1464 "mov %%ecx, 8(%2) \n\t"
1465 "mov %%edx, 12(%2) \n\t"
1467 : : "a"(function
), "c"(count
), "S"(vec
)
1482 void cpu_x86_cpuid(CPUX86State
*env
, uint32_t index
, uint32_t count
,
1483 uint32_t *eax
, uint32_t *ebx
,
1484 uint32_t *ecx
, uint32_t *edx
)
1486 /* test if maximum index reached */
1487 if (index
& 0x80000000) {
1488 if (index
> env
->cpuid_xlevel
)
1489 index
= env
->cpuid_level
;
1491 if (index
> env
->cpuid_level
)
1492 index
= env
->cpuid_level
;
1497 *eax
= env
->cpuid_level
;
1498 *ebx
= env
->cpuid_vendor1
;
1499 *edx
= env
->cpuid_vendor2
;
1500 *ecx
= env
->cpuid_vendor3
;
1502 /* sysenter isn't supported on compatibility mode on AMD. and syscall
1503 * isn't supported in compatibility mode on Intel. so advertise the
1504 * actuall cpu, and say goodbye to migration between different vendors
1505 * is you use compatibility mode. */
1506 if (kvm_enabled() && !env
->cpuid_vendor_override
)
1507 host_cpuid(0, 0, NULL
, ebx
, ecx
, edx
);
1510 *eax
= env
->cpuid_version
;
1511 *ebx
= (env
->cpuid_apic_id
<< 24) | 8 << 8; /* CLFLUSH size in quad words, Linux wants it. */
1512 *ecx
= env
->cpuid_ext_features
;
1513 *edx
= env
->cpuid_features
;
1515 /* "Hypervisor present" bit required for Microsoft SVVP */
1520 /* cache info: needed for Pentium Pro compatibility */
1527 /* cache info: needed for Core compatibility */
1529 case 0: /* L1 dcache info */
1535 case 1: /* L1 icache info */
1541 case 2: /* L2 cache info */
1547 default: /* end of info */
1556 /* mwait info: needed for Core compatibility */
1557 *eax
= 0; /* Smallest monitor-line size in bytes */
1558 *ebx
= 0; /* Largest monitor-line size in bytes */
1559 *ecx
= CPUID_MWAIT_EMX
| CPUID_MWAIT_IBE
;
1563 /* Thermal and Power Leaf */
1570 /* Direct Cache Access Information Leaf */
1571 *eax
= 0; /* Bits 0-31 in DCA_CAP MSR */
1577 /* Architectural Performance Monitoring Leaf */
1584 *eax
= env
->cpuid_xlevel
;
1585 *ebx
= env
->cpuid_vendor1
;
1586 *edx
= env
->cpuid_vendor2
;
1587 *ecx
= env
->cpuid_vendor3
;
1590 *eax
= env
->cpuid_features
;
1592 *ecx
= env
->cpuid_ext3_features
;
1593 *edx
= env
->cpuid_ext2_features
;
1595 if (kvm_enabled()) {
1596 uint32_t h_eax
, h_edx
;
1598 host_cpuid(index
, 0, &h_eax
, NULL
, NULL
, &h_edx
);
1600 /* disable CPU features that the host does not support */
1603 if ((h_edx
& 0x20000000) == 0 /* || !lm_capable_kernel */)
1604 *edx
&= ~0x20000000;
1606 if ((h_edx
& 0x00000800) == 0)
1607 *edx
&= ~0x00000800;
1609 if ((h_edx
& 0x00100000) == 0)
1610 *edx
&= ~0x00100000;
1612 /* disable CPU features that KVM cannot support */
1618 *edx
&= ~0xc0000000;
1624 *eax
= env
->cpuid_model
[(index
- 0x80000002) * 4 + 0];
1625 *ebx
= env
->cpuid_model
[(index
- 0x80000002) * 4 + 1];
1626 *ecx
= env
->cpuid_model
[(index
- 0x80000002) * 4 + 2];
1627 *edx
= env
->cpuid_model
[(index
- 0x80000002) * 4 + 3];
1630 /* cache info (L1 cache) */
1637 /* cache info (L2 cache) */
1644 /* virtual & phys address size in low 2 bytes. */
1645 /* XXX: This value must match the one used in the MMU code. */
1646 if (env
->cpuid_ext2_features
& CPUID_EXT2_LM
) {
1647 /* 64 bit processor */
1648 #if defined(CONFIG_KQEMU)
1649 *eax
= 0x00003020; /* 48 bits virtual, 32 bits physical */
1651 /* XXX: The physical address space is limited to 42 bits in exec.c. */
1652 *eax
= 0x00003028; /* 48 bits virtual, 40 bits physical */
1655 #if defined(CONFIG_KQEMU)
1656 *eax
= 0x00000020; /* 32 bits physical */
1658 if (env
->cpuid_features
& CPUID_PSE36
)
1659 *eax
= 0x00000024; /* 36 bits physical */
1661 *eax
= 0x00000020; /* 32 bits physical */
1669 *eax
= 0x00000001; /* SVM Revision */
1670 *ebx
= 0x00000010; /* nr of ASIDs */
1672 *edx
= 0; /* optional features */
1675 /* reserved values: zero */
1684 CPUX86State
*cpu_x86_init(const char *cpu_model
)
1689 env
= qemu_mallocz(sizeof(CPUX86State
));
1691 env
->cpu_model_str
= cpu_model
;
1693 /* init various static tables */
1696 optimize_flags_init();
1697 #ifndef CONFIG_USER_ONLY
1698 prev_debug_excp_handler
=
1699 cpu_set_debug_excp_handler(breakpoint_handler
);
1702 if (cpu_x86_register(env
, cpu_model
) < 0) {