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, see <http://www.gnu.org/licenses/>.
28 #include "qemu-common.h"
33 /* feature flags taken from "Intel Processor Identification and the CPUID
34 * Instruction" and AMD's "CPUID Specification". In cases of disagreement
35 * about feature names, the Linux name is used. */
36 static const char *feature_name
[] = {
37 "fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce",
38 "cx8", "apic", NULL
, "sep", "mtrr", "pge", "mca", "cmov",
39 "pat", "pse36", "pn" /* Intel psn */, "clflush" /* Intel clfsh */, NULL
, "ds" /* Intel dts */, "acpi", "mmx",
40 "fxsr", "sse", "sse2", "ss", "ht" /* Intel htt */, "tm", "ia64", "pbe",
42 static const char *ext_feature_name
[] = {
43 "pni" /* Intel,AMD sse3 */, NULL
, NULL
, "monitor", "ds_cpl", "vmx", NULL
/* Linux smx */, "est",
44 "tm2", "ssse3", "cid", NULL
, NULL
, "cx16", "xtpr", NULL
,
45 NULL
, NULL
, "dca", NULL
, NULL
, NULL
, NULL
, "popcnt",
46 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, "hypervisor",
48 static const char *ext2_feature_name
[] = {
49 "fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce",
50 "cx8" /* AMD CMPXCHG8B */, "apic", NULL
, "syscall", "mtrr", "pge", "mca", "cmov",
51 "pat", "pse36", NULL
, NULL
/* Linux mp */, "nx" /* Intel xd */, NULL
, "mmxext", "mmx",
52 "fxsr", "fxsr_opt" /* AMD ffxsr */, "pdpe1gb" /* AMD Page1GB */, "rdtscp", NULL
, "lm" /* Intel 64 */, "3dnowext", "3dnow",
54 static const char *ext3_feature_name
[] = {
55 "lahf_lm" /* AMD LahfSahf */, "cmp_legacy", "svm", "extapic" /* AMD ExtApicSpace */, "cr8legacy" /* AMD AltMovCr8 */, "abm", "sse4a", "misalignsse",
56 "3dnowprefetch", "osvw", NULL
/* Linux ibs */, NULL
, "skinit", "wdt", NULL
, NULL
,
57 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
58 NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
, NULL
,
61 static void add_flagname_to_bitmaps(const char *flagname
, uint32_t *features
,
62 uint32_t *ext_features
,
63 uint32_t *ext2_features
,
64 uint32_t *ext3_features
)
69 for ( i
= 0 ; i
< 32 ; i
++ )
70 if (feature_name
[i
] && !strcmp (flagname
, feature_name
[i
])) {
74 for ( i
= 0 ; i
< 32 ; i
++ )
75 if (ext_feature_name
[i
] && !strcmp (flagname
, ext_feature_name
[i
])) {
76 *ext_features
|= 1 << i
;
79 for ( i
= 0 ; i
< 32 ; i
++ )
80 if (ext2_feature_name
[i
] && !strcmp (flagname
, ext2_feature_name
[i
])) {
81 *ext2_features
|= 1 << i
;
84 for ( i
= 0 ; i
< 32 ; i
++ )
85 if (ext3_feature_name
[i
] && !strcmp (flagname
, ext3_feature_name
[i
])) {
86 *ext3_features
|= 1 << i
;
90 fprintf(stderr
, "CPU feature %s not found\n", flagname
);
94 typedef struct x86_def_t
{
97 uint32_t vendor1
, vendor2
, vendor3
;
101 uint32_t features
, ext_features
, ext2_features
, ext3_features
;
107 #define I486_FEATURES (CPUID_FP87 | CPUID_VME | CPUID_PSE)
108 #define PENTIUM_FEATURES (I486_FEATURES | CPUID_DE | CPUID_TSC | \
109 CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_MMX)
110 #define PENTIUM2_FEATURES (PENTIUM_FEATURES | CPUID_PAE | CPUID_SEP | \
111 CPUID_MTRR | CPUID_PGE | CPUID_MCA | CPUID_CMOV | CPUID_PAT | \
112 CPUID_PSE36 | CPUID_FXSR)
113 #define PENTIUM3_FEATURES (PENTIUM2_FEATURES | CPUID_SSE)
114 #define PPRO_FEATURES (CPUID_FP87 | CPUID_DE | CPUID_PSE | CPUID_TSC | \
115 CPUID_MSR | CPUID_MCE | CPUID_CX8 | CPUID_PGE | CPUID_CMOV | \
116 CPUID_PAT | CPUID_FXSR | CPUID_MMX | CPUID_SSE | CPUID_SSE2 | \
117 CPUID_PAE | CPUID_SEP | CPUID_APIC)
118 static x86_def_t x86_defs
[] = {
123 .vendor1
= CPUID_VENDOR_AMD_1
,
124 .vendor2
= CPUID_VENDOR_AMD_2
,
125 .vendor3
= CPUID_VENDOR_AMD_3
,
129 .features
= PPRO_FEATURES
|
130 /* these features are needed for Win64 and aren't fully implemented */
131 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
|
132 /* this feature is needed for Solaris and isn't fully implemented */
134 .ext_features
= CPUID_EXT_SSE3
,
135 .ext2_features
= (PPRO_FEATURES
& 0x0183F3FF) |
136 CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
,
137 .ext3_features
= CPUID_EXT3_SVM
,
138 .xlevel
= 0x8000000A,
139 .model_id
= "QEMU Virtual CPU version " QEMU_VERSION
,
144 .vendor1
= CPUID_VENDOR_AMD_1
,
145 .vendor2
= CPUID_VENDOR_AMD_2
,
146 .vendor3
= CPUID_VENDOR_AMD_3
,
150 /* Missing: CPUID_VME, CPUID_HT */
151 .features
= PPRO_FEATURES
|
152 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
|
154 /* Missing: CPUID_EXT_CX16, CPUID_EXT_POPCNT */
155 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_MONITOR
,
156 /* Missing: CPUID_EXT2_PDPE1GB, CPUID_EXT2_RDTSCP */
157 .ext2_features
= (PPRO_FEATURES
& 0x0183F3FF) |
158 CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
|
159 CPUID_EXT2_3DNOW
| CPUID_EXT2_3DNOWEXT
| CPUID_EXT2_MMXEXT
|
161 /* Missing: CPUID_EXT3_LAHF_LM, CPUID_EXT3_CMP_LEG, CPUID_EXT3_EXTAPIC,
162 CPUID_EXT3_CR8LEG, CPUID_EXT3_ABM, CPUID_EXT3_SSE4A,
163 CPUID_EXT3_MISALIGNSSE, CPUID_EXT3_3DNOWPREFETCH,
164 CPUID_EXT3_OSVW, CPUID_EXT3_IBS */
165 .ext3_features
= CPUID_EXT3_SVM
,
166 .xlevel
= 0x8000001A,
167 .model_id
= "AMD Phenom(tm) 9550 Quad-Core Processor"
175 /* The original CPU also implements these features:
176 CPUID_VME, CPUID_DTS, CPUID_ACPI, CPUID_SS, CPUID_HT,
177 CPUID_TM, CPUID_PBE */
178 .features
= PPRO_FEATURES
|
179 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
|
181 /* The original CPU also implements these ext features:
182 CPUID_EXT_DTES64, CPUID_EXT_DSCPL, CPUID_EXT_VMX, CPUID_EXT_EST,
183 CPUID_EXT_TM2, CPUID_EXT_CX16, CPUID_EXT_XTPR, CPUID_EXT_PDCM */
184 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_MONITOR
| CPUID_EXT_SSSE3
,
185 .ext2_features
= CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
,
186 /* Missing: .ext3_features = CPUID_EXT3_LAHF_LM */
187 .xlevel
= 0x80000008,
188 .model_id
= "Intel(R) Core(TM)2 Duo CPU T7700 @ 2.40GHz",
193 .vendor1
= CPUID_VENDOR_INTEL_1
,
194 .vendor2
= CPUID_VENDOR_INTEL_2
,
195 .vendor3
= CPUID_VENDOR_INTEL_3
,
199 /* Missing: CPUID_VME, CPUID_HT */
200 .features
= PPRO_FEATURES
|
201 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
|
203 /* Missing: CPUID_EXT_POPCNT, CPUID_EXT_MONITOR */
204 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_CX16
,
205 /* Missing: CPUID_EXT2_PDPE1GB, CPUID_EXT2_RDTSCP */
206 .ext2_features
= (PPRO_FEATURES
& 0x0183F3FF) |
207 CPUID_EXT2_LM
| CPUID_EXT2_SYSCALL
| CPUID_EXT2_NX
,
208 /* Missing: CPUID_EXT3_LAHF_LM, CPUID_EXT3_CMP_LEG, CPUID_EXT3_EXTAPIC,
209 CPUID_EXT3_CR8LEG, CPUID_EXT3_ABM, CPUID_EXT3_SSE4A,
210 CPUID_EXT3_MISALIGNSSE, CPUID_EXT3_3DNOWPREFETCH,
211 CPUID_EXT3_OSVW, CPUID_EXT3_IBS, CPUID_EXT3_SVM */
213 .xlevel
= 0x80000008,
214 .model_id
= "Common KVM processor"
223 .features
= PPRO_FEATURES
,
224 .ext_features
= CPUID_EXT_SSE3
,
226 .model_id
= "QEMU Virtual CPU version " QEMU_VERSION
,
234 /* The original CPU also implements these features:
235 CPUID_DTS, CPUID_ACPI, CPUID_SS, CPUID_HT,
236 CPUID_TM, CPUID_PBE */
237 .features
= PPRO_FEATURES
| CPUID_VME
|
238 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
,
239 /* The original CPU also implements these ext features:
240 CPUID_EXT_VMX, CPUID_EXT_EST, CPUID_EXT_TM2, CPUID_EXT_XTPR,
242 .ext_features
= CPUID_EXT_SSE3
| CPUID_EXT_MONITOR
,
243 .ext2_features
= CPUID_EXT2_NX
,
244 .xlevel
= 0x80000008,
245 .model_id
= "Genuine Intel(R) CPU T2600 @ 2.16GHz",
253 .features
= I486_FEATURES
,
262 .features
= PENTIUM_FEATURES
,
271 .features
= PENTIUM2_FEATURES
,
280 .features
= PENTIUM3_FEATURES
,
286 .vendor1
= CPUID_VENDOR_AMD_1
,
287 .vendor2
= CPUID_VENDOR_AMD_2
,
288 .vendor3
= CPUID_VENDOR_AMD_3
,
292 .features
= PPRO_FEATURES
| CPUID_PSE36
| CPUID_VME
| CPUID_MTRR
| CPUID_MCA
,
293 .ext2_features
= (PPRO_FEATURES
& 0x0183F3FF) | CPUID_EXT2_MMXEXT
| CPUID_EXT2_3DNOW
| CPUID_EXT2_3DNOWEXT
,
294 .xlevel
= 0x80000008,
295 /* XXX: put another string ? */
296 .model_id
= "QEMU Virtual CPU version " QEMU_VERSION
,
300 /* original is on level 10 */
305 .features
= PPRO_FEATURES
|
306 CPUID_MTRR
| CPUID_CLFLUSH
| CPUID_MCA
| CPUID_VME
,
307 /* Missing: CPUID_DTS | CPUID_ACPI | CPUID_SS |
308 * CPUID_HT | CPUID_TM | CPUID_PBE */
309 /* Some CPUs got no CPUID_SEP */
310 .ext_features
= CPUID_EXT_MONITOR
|
311 CPUID_EXT_SSE3
/* PNI */ | CPUID_EXT_SSSE3
,
312 /* Missing: CPUID_EXT_DSCPL | CPUID_EXT_EST |
313 * CPUID_EXT_TM2 | CPUID_EXT_XTPR */
314 .ext2_features
= (PPRO_FEATURES
& 0x0183F3FF) | CPUID_EXT2_NX
,
315 /* Missing: .ext3_features = CPUID_EXT3_LAHF_LM */
316 .xlevel
= 0x8000000A,
317 .model_id
= "Intel(R) Atom(TM) CPU N270 @ 1.60GHz",
321 static void host_cpuid(uint32_t function
, uint32_t count
, uint32_t *eax
,
322 uint32_t *ebx
, uint32_t *ecx
, uint32_t *edx
);
324 static int cpu_x86_fill_model_id(char *str
)
326 uint32_t eax
= 0, ebx
= 0, ecx
= 0, edx
= 0;
329 for (i
= 0; i
< 3; i
++) {
330 host_cpuid(0x80000002 + i
, 0, &eax
, &ebx
, &ecx
, &edx
);
331 memcpy(str
+ i
* 16 + 0, &eax
, 4);
332 memcpy(str
+ i
* 16 + 4, &ebx
, 4);
333 memcpy(str
+ i
* 16 + 8, &ecx
, 4);
334 memcpy(str
+ i
* 16 + 12, &edx
, 4);
339 static int cpu_x86_fill_host(x86_def_t
*x86_cpu_def
)
341 uint32_t eax
= 0, ebx
= 0, ecx
= 0, edx
= 0;
343 x86_cpu_def
->name
= "host";
344 host_cpuid(0x0, 0, &eax
, &ebx
, &ecx
, &edx
);
345 x86_cpu_def
->level
= eax
;
346 x86_cpu_def
->vendor1
= ebx
;
347 x86_cpu_def
->vendor2
= edx
;
348 x86_cpu_def
->vendor3
= ecx
;
350 host_cpuid(0x1, 0, &eax
, &ebx
, &ecx
, &edx
);
351 x86_cpu_def
->family
= ((eax
>> 8) & 0x0F) + ((eax
>> 20) & 0xFF);
352 x86_cpu_def
->model
= ((eax
>> 4) & 0x0F) | ((eax
& 0xF0000) >> 12);
353 x86_cpu_def
->stepping
= eax
& 0x0F;
354 x86_cpu_def
->ext_features
= ecx
;
355 x86_cpu_def
->features
= edx
;
357 host_cpuid(0x80000000, 0, &eax
, &ebx
, &ecx
, &edx
);
358 x86_cpu_def
->xlevel
= eax
;
360 host_cpuid(0x80000001, 0, &eax
, &ebx
, &ecx
, &edx
);
361 x86_cpu_def
->ext2_features
= edx
;
362 x86_cpu_def
->ext3_features
= ecx
;
363 cpu_x86_fill_model_id(x86_cpu_def
->model_id
);
364 x86_cpu_def
->vendor_override
= 0;
369 static int cpu_x86_find_by_name(x86_def_t
*x86_cpu_def
, const char *cpu_model
)
374 char *s
= strdup(cpu_model
);
375 char *featurestr
, *name
= strtok(s
, ",");
376 uint32_t plus_features
= 0, plus_ext_features
= 0, plus_ext2_features
= 0, plus_ext3_features
= 0;
377 uint32_t minus_features
= 0, minus_ext_features
= 0, minus_ext2_features
= 0, minus_ext3_features
= 0;
381 for (i
= 0; i
< ARRAY_SIZE(x86_defs
); i
++) {
382 if (strcmp(name
, x86_defs
[i
].name
) == 0) {
387 if (kvm_enabled() && strcmp(name
, "host") == 0) {
388 cpu_x86_fill_host(x86_cpu_def
);
392 memcpy(x86_cpu_def
, def
, sizeof(*def
));
395 add_flagname_to_bitmaps("hypervisor", &plus_features
,
396 &plus_ext_features
, &plus_ext2_features
, &plus_ext3_features
);
398 featurestr
= strtok(NULL
, ",");
402 if (featurestr
[0] == '+') {
403 add_flagname_to_bitmaps(featurestr
+ 1, &plus_features
, &plus_ext_features
, &plus_ext2_features
, &plus_ext3_features
);
404 } else if (featurestr
[0] == '-') {
405 add_flagname_to_bitmaps(featurestr
+ 1, &minus_features
, &minus_ext_features
, &minus_ext2_features
, &minus_ext3_features
);
406 } else if ((val
= strchr(featurestr
, '='))) {
408 if (!strcmp(featurestr
, "family")) {
410 numvalue
= strtoul(val
, &err
, 0);
412 fprintf(stderr
, "bad numerical value %s\n", val
);
415 x86_cpu_def
->family
= numvalue
;
416 } else if (!strcmp(featurestr
, "model")) {
418 numvalue
= strtoul(val
, &err
, 0);
419 if (!*val
|| *err
|| numvalue
> 0xff) {
420 fprintf(stderr
, "bad numerical value %s\n", val
);
423 x86_cpu_def
->model
= numvalue
;
424 } else if (!strcmp(featurestr
, "stepping")) {
426 numvalue
= strtoul(val
, &err
, 0);
427 if (!*val
|| *err
|| numvalue
> 0xf) {
428 fprintf(stderr
, "bad numerical value %s\n", val
);
431 x86_cpu_def
->stepping
= numvalue
;
432 } else if (!strcmp(featurestr
, "level")) {
434 numvalue
= strtoul(val
, &err
, 0);
436 fprintf(stderr
, "bad numerical value %s\n", val
);
439 x86_cpu_def
->level
= numvalue
;
440 } else if (!strcmp(featurestr
, "xlevel")) {
442 numvalue
= strtoul(val
, &err
, 0);
444 fprintf(stderr
, "bad numerical value %s\n", val
);
447 if (numvalue
< 0x80000000) {
448 numvalue
+= 0x80000000;
450 x86_cpu_def
->xlevel
= numvalue
;
451 } else if (!strcmp(featurestr
, "vendor")) {
452 if (strlen(val
) != 12) {
453 fprintf(stderr
, "vendor string must be 12 chars long\n");
456 x86_cpu_def
->vendor1
= 0;
457 x86_cpu_def
->vendor2
= 0;
458 x86_cpu_def
->vendor3
= 0;
459 for(i
= 0; i
< 4; i
++) {
460 x86_cpu_def
->vendor1
|= ((uint8_t)val
[i
]) << (8 * i
);
461 x86_cpu_def
->vendor2
|= ((uint8_t)val
[i
+ 4]) << (8 * i
);
462 x86_cpu_def
->vendor3
|= ((uint8_t)val
[i
+ 8]) << (8 * i
);
464 x86_cpu_def
->vendor_override
= 1;
465 } else if (!strcmp(featurestr
, "model_id")) {
466 pstrcpy(x86_cpu_def
->model_id
, sizeof(x86_cpu_def
->model_id
),
469 fprintf(stderr
, "unrecognized feature %s\n", featurestr
);
473 fprintf(stderr
, "feature string `%s' not in format (+feature|-feature|feature=xyz)\n", featurestr
);
476 featurestr
= strtok(NULL
, ",");
478 x86_cpu_def
->features
|= plus_features
;
479 x86_cpu_def
->ext_features
|= plus_ext_features
;
480 x86_cpu_def
->ext2_features
|= plus_ext2_features
;
481 x86_cpu_def
->ext3_features
|= plus_ext3_features
;
482 x86_cpu_def
->features
&= ~minus_features
;
483 x86_cpu_def
->ext_features
&= ~minus_ext_features
;
484 x86_cpu_def
->ext2_features
&= ~minus_ext2_features
;
485 x86_cpu_def
->ext3_features
&= ~minus_ext3_features
;
494 void x86_cpu_list (FILE *f
, int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...))
498 for (i
= 0; i
< ARRAY_SIZE(x86_defs
); i
++)
499 (*cpu_fprintf
)(f
, "x86 %16s\n", x86_defs
[i
].name
);
502 static int cpu_x86_register (CPUX86State
*env
, const char *cpu_model
)
504 x86_def_t def1
, *def
= &def1
;
506 if (cpu_x86_find_by_name(def
, cpu_model
) < 0)
509 env
->cpuid_vendor1
= def
->vendor1
;
510 env
->cpuid_vendor2
= def
->vendor2
;
511 env
->cpuid_vendor3
= def
->vendor3
;
513 env
->cpuid_vendor1
= CPUID_VENDOR_INTEL_1
;
514 env
->cpuid_vendor2
= CPUID_VENDOR_INTEL_2
;
515 env
->cpuid_vendor3
= CPUID_VENDOR_INTEL_3
;
517 env
->cpuid_vendor_override
= def
->vendor_override
;
518 env
->cpuid_level
= def
->level
;
519 if (def
->family
> 0x0f)
520 env
->cpuid_version
= 0xf00 | ((def
->family
- 0x0f) << 20);
522 env
->cpuid_version
= def
->family
<< 8;
523 env
->cpuid_version
|= ((def
->model
& 0xf) << 4) | ((def
->model
>> 4) << 16);
524 env
->cpuid_version
|= def
->stepping
;
525 env
->cpuid_features
= def
->features
;
526 env
->pat
= 0x0007040600070406ULL
;
527 env
->cpuid_ext_features
= def
->ext_features
;
528 env
->cpuid_ext2_features
= def
->ext2_features
;
529 env
->cpuid_xlevel
= def
->xlevel
;
530 env
->cpuid_ext3_features
= def
->ext3_features
;
532 const char *model_id
= def
->model_id
;
536 len
= strlen(model_id
);
537 for(i
= 0; i
< 48; i
++) {
541 c
= (uint8_t)model_id
[i
];
542 env
->cpuid_model
[i
>> 2] |= c
<< (8 * (i
& 3));
548 /* NOTE: must be called outside the CPU execute loop */
549 void cpu_reset(CPUX86State
*env
)
553 if (qemu_loglevel_mask(CPU_LOG_RESET
)) {
554 qemu_log("CPU Reset (CPU %d)\n", env
->cpu_index
);
555 log_cpu_state(env
, X86_DUMP_FPU
| X86_DUMP_CCOP
);
558 memset(env
, 0, offsetof(CPUX86State
, breakpoints
));
562 env
->old_exception
= -1;
564 /* init to reset state */
566 #ifdef CONFIG_SOFTMMU
567 env
->hflags
|= HF_SOFTMMU_MASK
;
569 env
->hflags2
|= HF2_GIF_MASK
;
571 cpu_x86_update_cr0(env
, 0x60000010);
572 env
->a20_mask
= ~0x0;
573 env
->smbase
= 0x30000;
575 env
->idt
.limit
= 0xffff;
576 env
->gdt
.limit
= 0xffff;
577 env
->ldt
.limit
= 0xffff;
578 env
->ldt
.flags
= DESC_P_MASK
| (2 << DESC_TYPE_SHIFT
);
579 env
->tr
.limit
= 0xffff;
580 env
->tr
.flags
= DESC_P_MASK
| (11 << DESC_TYPE_SHIFT
);
582 cpu_x86_load_seg_cache(env
, R_CS
, 0xf000, 0xffff0000, 0xffff,
583 DESC_P_MASK
| DESC_S_MASK
| DESC_CS_MASK
|
584 DESC_R_MASK
| DESC_A_MASK
);
585 cpu_x86_load_seg_cache(env
, R_DS
, 0, 0, 0xffff,
586 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
588 cpu_x86_load_seg_cache(env
, R_ES
, 0, 0, 0xffff,
589 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
591 cpu_x86_load_seg_cache(env
, R_SS
, 0, 0, 0xffff,
592 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
594 cpu_x86_load_seg_cache(env
, R_FS
, 0, 0, 0xffff,
595 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
597 cpu_x86_load_seg_cache(env
, R_GS
, 0, 0, 0xffff,
598 DESC_P_MASK
| DESC_S_MASK
| DESC_W_MASK
|
602 env
->regs
[R_EDX
] = env
->cpuid_version
;
607 for(i
= 0;i
< 8; i
++)
613 memset(env
->dr
, 0, sizeof(env
->dr
));
614 env
->dr
[6] = DR6_FIXED_1
;
615 env
->dr
[7] = DR7_FIXED_1
;
616 cpu_breakpoint_remove_all(env
, BP_CPU
);
617 cpu_watchpoint_remove_all(env
, BP_CPU
);
620 void cpu_x86_close(CPUX86State
*env
)
625 /***********************************************************/
628 static const char *cc_op_str
[] = {
684 cpu_x86_dump_seg_cache(CPUState
*env
, FILE *f
,
685 int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...),
686 const char *name
, struct SegmentCache
*sc
)
689 if (env
->hflags
& HF_CS64_MASK
) {
690 cpu_fprintf(f
, "%-3s=%04x %016" PRIx64
" %08x %08x", name
,
691 sc
->selector
, sc
->base
, sc
->limit
, sc
->flags
);
695 cpu_fprintf(f
, "%-3s=%04x %08x %08x %08x", name
, sc
->selector
,
696 (uint32_t)sc
->base
, sc
->limit
, sc
->flags
);
699 if (!(env
->hflags
& HF_PE_MASK
) || !(sc
->flags
& DESC_P_MASK
))
702 cpu_fprintf(f
, " DPL=%d ", (sc
->flags
& DESC_DPL_MASK
) >> DESC_DPL_SHIFT
);
703 if (sc
->flags
& DESC_S_MASK
) {
704 if (sc
->flags
& DESC_CS_MASK
) {
705 cpu_fprintf(f
, (sc
->flags
& DESC_L_MASK
) ? "CS64" :
706 ((sc
->flags
& DESC_B_MASK
) ? "CS32" : "CS16"));
707 cpu_fprintf(f
, " [%c%c", (sc
->flags
& DESC_C_MASK
) ? 'C' : '-',
708 (sc
->flags
& DESC_R_MASK
) ? 'R' : '-');
710 cpu_fprintf(f
, (sc
->flags
& DESC_B_MASK
) ? "DS " : "DS16");
711 cpu_fprintf(f
, " [%c%c", (sc
->flags
& DESC_E_MASK
) ? 'E' : '-',
712 (sc
->flags
& DESC_W_MASK
) ? 'W' : '-');
714 cpu_fprintf(f
, "%c]", (sc
->flags
& DESC_A_MASK
) ? 'A' : '-');
716 static const char *sys_type_name
[2][16] = {
718 "Reserved", "TSS16-avl", "LDT", "TSS16-busy",
719 "CallGate16", "TaskGate", "IntGate16", "TrapGate16",
720 "Reserved", "TSS32-avl", "Reserved", "TSS32-busy",
721 "CallGate32", "Reserved", "IntGate32", "TrapGate32"
724 "<hiword>", "Reserved", "LDT", "Reserved", "Reserved",
725 "Reserved", "Reserved", "Reserved", "Reserved",
726 "TSS64-avl", "Reserved", "TSS64-busy", "CallGate64",
727 "Reserved", "IntGate64", "TrapGate64"
730 cpu_fprintf(f
, sys_type_name
[(env
->hflags
& HF_LMA_MASK
) ? 1 : 0]
731 [(sc
->flags
& DESC_TYPE_MASK
)
732 >> DESC_TYPE_SHIFT
]);
735 cpu_fprintf(f
, "\n");
738 void cpu_dump_state(CPUState
*env
, FILE *f
,
739 int (*cpu_fprintf
)(FILE *f
, const char *fmt
, ...),
744 static const char *seg_name
[6] = { "ES", "CS", "SS", "DS", "FS", "GS" };
746 cpu_synchronize_state(env
);
748 eflags
= env
->eflags
;
750 if (env
->hflags
& HF_CS64_MASK
) {
752 "RAX=%016" PRIx64
" RBX=%016" PRIx64
" RCX=%016" PRIx64
" RDX=%016" PRIx64
"\n"
753 "RSI=%016" PRIx64
" RDI=%016" PRIx64
" RBP=%016" PRIx64
" RSP=%016" PRIx64
"\n"
754 "R8 =%016" PRIx64
" R9 =%016" PRIx64
" R10=%016" PRIx64
" R11=%016" PRIx64
"\n"
755 "R12=%016" PRIx64
" R13=%016" PRIx64
" R14=%016" PRIx64
" R15=%016" PRIx64
"\n"
756 "RIP=%016" PRIx64
" RFL=%08x [%c%c%c%c%c%c%c] CPL=%d II=%d A20=%d SMM=%d HLT=%d\n",
774 eflags
& DF_MASK
? 'D' : '-',
775 eflags
& CC_O
? 'O' : '-',
776 eflags
& CC_S
? 'S' : '-',
777 eflags
& CC_Z
? 'Z' : '-',
778 eflags
& CC_A
? 'A' : '-',
779 eflags
& CC_P
? 'P' : '-',
780 eflags
& CC_C
? 'C' : '-',
781 env
->hflags
& HF_CPL_MASK
,
782 (env
->hflags
>> HF_INHIBIT_IRQ_SHIFT
) & 1,
783 (int)(env
->a20_mask
>> 20) & 1,
784 (env
->hflags
>> HF_SMM_SHIFT
) & 1,
789 cpu_fprintf(f
, "EAX=%08x EBX=%08x ECX=%08x EDX=%08x\n"
790 "ESI=%08x EDI=%08x EBP=%08x ESP=%08x\n"
791 "EIP=%08x EFL=%08x [%c%c%c%c%c%c%c] CPL=%d II=%d A20=%d SMM=%d HLT=%d\n",
792 (uint32_t)env
->regs
[R_EAX
],
793 (uint32_t)env
->regs
[R_EBX
],
794 (uint32_t)env
->regs
[R_ECX
],
795 (uint32_t)env
->regs
[R_EDX
],
796 (uint32_t)env
->regs
[R_ESI
],
797 (uint32_t)env
->regs
[R_EDI
],
798 (uint32_t)env
->regs
[R_EBP
],
799 (uint32_t)env
->regs
[R_ESP
],
800 (uint32_t)env
->eip
, eflags
,
801 eflags
& DF_MASK
? 'D' : '-',
802 eflags
& CC_O
? 'O' : '-',
803 eflags
& CC_S
? 'S' : '-',
804 eflags
& CC_Z
? 'Z' : '-',
805 eflags
& CC_A
? 'A' : '-',
806 eflags
& CC_P
? 'P' : '-',
807 eflags
& CC_C
? 'C' : '-',
808 env
->hflags
& HF_CPL_MASK
,
809 (env
->hflags
>> HF_INHIBIT_IRQ_SHIFT
) & 1,
810 (int)(env
->a20_mask
>> 20) & 1,
811 (env
->hflags
>> HF_SMM_SHIFT
) & 1,
815 for(i
= 0; i
< 6; i
++) {
816 cpu_x86_dump_seg_cache(env
, f
, cpu_fprintf
, seg_name
[i
],
819 cpu_x86_dump_seg_cache(env
, f
, cpu_fprintf
, "LDT", &env
->ldt
);
820 cpu_x86_dump_seg_cache(env
, f
, cpu_fprintf
, "TR", &env
->tr
);
823 if (env
->hflags
& HF_LMA_MASK
) {
824 cpu_fprintf(f
, "GDT= %016" PRIx64
" %08x\n",
825 env
->gdt
.base
, env
->gdt
.limit
);
826 cpu_fprintf(f
, "IDT= %016" PRIx64
" %08x\n",
827 env
->idt
.base
, env
->idt
.limit
);
828 cpu_fprintf(f
, "CR0=%08x CR2=%016" PRIx64
" CR3=%016" PRIx64
" CR4=%08x\n",
829 (uint32_t)env
->cr
[0],
832 (uint32_t)env
->cr
[4]);
833 for(i
= 0; i
< 4; i
++)
834 cpu_fprintf(f
, "DR%d=%016" PRIx64
" ", i
, env
->dr
[i
]);
835 cpu_fprintf(f
, "\nDR6=%016" PRIx64
" DR7=%016" PRIx64
"\n",
836 env
->dr
[6], env
->dr
[7]);
840 cpu_fprintf(f
, "GDT= %08x %08x\n",
841 (uint32_t)env
->gdt
.base
, env
->gdt
.limit
);
842 cpu_fprintf(f
, "IDT= %08x %08x\n",
843 (uint32_t)env
->idt
.base
, env
->idt
.limit
);
844 cpu_fprintf(f
, "CR0=%08x CR2=%08x CR3=%08x CR4=%08x\n",
845 (uint32_t)env
->cr
[0],
846 (uint32_t)env
->cr
[2],
847 (uint32_t)env
->cr
[3],
848 (uint32_t)env
->cr
[4]);
849 for(i
= 0; i
< 4; i
++)
850 cpu_fprintf(f
, "DR%d=%08x ", i
, env
->dr
[i
]);
851 cpu_fprintf(f
, "\nDR6=%08x DR7=%08x\n", env
->dr
[6], env
->dr
[7]);
853 if (flags
& X86_DUMP_CCOP
) {
854 if ((unsigned)env
->cc_op
< CC_OP_NB
)
855 snprintf(cc_op_name
, sizeof(cc_op_name
), "%s", cc_op_str
[env
->cc_op
]);
857 snprintf(cc_op_name
, sizeof(cc_op_name
), "[%d]", env
->cc_op
);
859 if (env
->hflags
& HF_CS64_MASK
) {
860 cpu_fprintf(f
, "CCS=%016" PRIx64
" CCD=%016" PRIx64
" CCO=%-8s\n",
861 env
->cc_src
, env
->cc_dst
,
866 cpu_fprintf(f
, "CCS=%08x CCD=%08x CCO=%-8s\n",
867 (uint32_t)env
->cc_src
, (uint32_t)env
->cc_dst
,
871 if (flags
& X86_DUMP_FPU
) {
874 for(i
= 0; i
< 8; i
++) {
875 fptag
|= ((!env
->fptags
[i
]) << i
);
877 cpu_fprintf(f
, "FCW=%04x FSW=%04x [ST=%d] FTW=%02x MXCSR=%08x\n",
879 (env
->fpus
& ~0x3800) | (env
->fpstt
& 0x7) << 11,
884 #if defined(USE_X86LDOUBLE)
892 tmp
.d
= env
->fpregs
[i
].d
;
893 cpu_fprintf(f
, "FPR%d=%016" PRIx64
" %04x",
894 i
, tmp
.l
.lower
, tmp
.l
.upper
);
896 cpu_fprintf(f
, "FPR%d=%016" PRIx64
,
897 i
, env
->fpregs
[i
].mmx
.q
);
900 cpu_fprintf(f
, "\n");
904 if (env
->hflags
& HF_CS64_MASK
)
909 cpu_fprintf(f
, "XMM%02d=%08x%08x%08x%08x",
911 env
->xmm_regs
[i
].XMM_L(3),
912 env
->xmm_regs
[i
].XMM_L(2),
913 env
->xmm_regs
[i
].XMM_L(1),
914 env
->xmm_regs
[i
].XMM_L(0));
916 cpu_fprintf(f
, "\n");
923 /***********************************************************/
925 /* XXX: add PGE support */
927 void cpu_x86_set_a20(CPUX86State
*env
, int a20_state
)
929 a20_state
= (a20_state
!= 0);
930 if (a20_state
!= ((env
->a20_mask
>> 20) & 1)) {
931 #if defined(DEBUG_MMU)
932 printf("A20 update: a20=%d\n", a20_state
);
934 /* if the cpu is currently executing code, we must unlink it and
935 all the potentially executing TB */
936 cpu_interrupt(env
, CPU_INTERRUPT_EXITTB
);
938 /* when a20 is changed, all the MMU mappings are invalid, so
939 we must flush everything */
941 env
->a20_mask
= (~0x100000) | (a20_state
<< 20);
945 void cpu_x86_update_cr0(CPUX86State
*env
, uint32_t new_cr0
)
949 #if defined(DEBUG_MMU)
950 printf("CR0 update: CR0=0x%08x\n", new_cr0
);
952 if ((new_cr0
& (CR0_PG_MASK
| CR0_WP_MASK
| CR0_PE_MASK
)) !=
953 (env
->cr
[0] & (CR0_PG_MASK
| CR0_WP_MASK
| CR0_PE_MASK
))) {
958 if (!(env
->cr
[0] & CR0_PG_MASK
) && (new_cr0
& CR0_PG_MASK
) &&
959 (env
->efer
& MSR_EFER_LME
)) {
960 /* enter in long mode */
961 /* XXX: generate an exception */
962 if (!(env
->cr
[4] & CR4_PAE_MASK
))
964 env
->efer
|= MSR_EFER_LMA
;
965 env
->hflags
|= HF_LMA_MASK
;
966 } else if ((env
->cr
[0] & CR0_PG_MASK
) && !(new_cr0
& CR0_PG_MASK
) &&
967 (env
->efer
& MSR_EFER_LMA
)) {
969 env
->efer
&= ~MSR_EFER_LMA
;
970 env
->hflags
&= ~(HF_LMA_MASK
| HF_CS64_MASK
);
971 env
->eip
&= 0xffffffff;
974 env
->cr
[0] = new_cr0
| CR0_ET_MASK
;
976 /* update PE flag in hidden flags */
977 pe_state
= (env
->cr
[0] & CR0_PE_MASK
);
978 env
->hflags
= (env
->hflags
& ~HF_PE_MASK
) | (pe_state
<< HF_PE_SHIFT
);
979 /* ensure that ADDSEG is always set in real mode */
980 env
->hflags
|= ((pe_state
^ 1) << HF_ADDSEG_SHIFT
);
981 /* update FPU flags */
982 env
->hflags
= (env
->hflags
& ~(HF_MP_MASK
| HF_EM_MASK
| HF_TS_MASK
)) |
983 ((new_cr0
<< (HF_MP_SHIFT
- 1)) & (HF_MP_MASK
| HF_EM_MASK
| HF_TS_MASK
));
986 /* XXX: in legacy PAE mode, generate a GPF if reserved bits are set in
988 void cpu_x86_update_cr3(CPUX86State
*env
, target_ulong new_cr3
)
990 env
->cr
[3] = new_cr3
;
991 if (env
->cr
[0] & CR0_PG_MASK
) {
992 #if defined(DEBUG_MMU)
993 printf("CR3 update: CR3=" TARGET_FMT_lx
"\n", new_cr3
);
999 void cpu_x86_update_cr4(CPUX86State
*env
, uint32_t new_cr4
)
1001 #if defined(DEBUG_MMU)
1002 printf("CR4 update: CR4=%08x\n", (uint32_t)env
->cr
[4]);
1004 if ((new_cr4
& (CR4_PGE_MASK
| CR4_PAE_MASK
| CR4_PSE_MASK
)) !=
1005 (env
->cr
[4] & (CR4_PGE_MASK
| CR4_PAE_MASK
| CR4_PSE_MASK
))) {
1009 if (!(env
->cpuid_features
& CPUID_SSE
))
1010 new_cr4
&= ~CR4_OSFXSR_MASK
;
1011 if (new_cr4
& CR4_OSFXSR_MASK
)
1012 env
->hflags
|= HF_OSFXSR_MASK
;
1014 env
->hflags
&= ~HF_OSFXSR_MASK
;
1016 env
->cr
[4] = new_cr4
;
1019 #if defined(CONFIG_USER_ONLY)
1021 int cpu_x86_handle_mmu_fault(CPUX86State
*env
, target_ulong addr
,
1022 int is_write
, int mmu_idx
, int is_softmmu
)
1024 /* user mode only emulation */
1027 env
->error_code
= (is_write
<< PG_ERROR_W_BIT
);
1028 env
->error_code
|= PG_ERROR_U_MASK
;
1029 env
->exception_index
= EXCP0E_PAGE
;
1033 target_phys_addr_t
cpu_get_phys_page_debug(CPUState
*env
, target_ulong addr
)
1040 /* XXX: This value should match the one returned by CPUID
1042 # if defined(TARGET_X86_64)
1043 # define PHYS_ADDR_MASK 0xfffffff000LL
1045 # define PHYS_ADDR_MASK 0xffffff000LL
1049 -1 = cannot handle fault
1050 0 = nothing more to do
1051 1 = generate PF fault
1052 2 = soft MMU activation required for this block
1054 int cpu_x86_handle_mmu_fault(CPUX86State
*env
, target_ulong addr
,
1055 int is_write1
, int mmu_idx
, int is_softmmu
)
1058 target_ulong pde_addr
, pte_addr
;
1059 int error_code
, is_dirty
, prot
, page_size
, ret
, is_write
, is_user
;
1060 target_phys_addr_t paddr
;
1061 uint32_t page_offset
;
1062 target_ulong vaddr
, virt_addr
;
1064 is_user
= mmu_idx
== MMU_USER_IDX
;
1065 #if defined(DEBUG_MMU)
1066 printf("MMU fault: addr=" TARGET_FMT_lx
" w=%d u=%d eip=" TARGET_FMT_lx
"\n",
1067 addr
, is_write1
, is_user
, env
->eip
);
1069 is_write
= is_write1
& 1;
1071 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1073 virt_addr
= addr
& TARGET_PAGE_MASK
;
1074 prot
= PAGE_READ
| PAGE_WRITE
| PAGE_EXEC
;
1079 if (env
->cr
[4] & CR4_PAE_MASK
) {
1081 target_ulong pdpe_addr
;
1083 #ifdef TARGET_X86_64
1084 if (env
->hflags
& HF_LMA_MASK
) {
1085 uint64_t pml4e_addr
, pml4e
;
1088 /* test virtual address sign extension */
1089 sext
= (int64_t)addr
>> 47;
1090 if (sext
!= 0 && sext
!= -1) {
1091 env
->error_code
= 0;
1092 env
->exception_index
= EXCP0D_GPF
;
1096 pml4e_addr
= ((env
->cr
[3] & ~0xfff) + (((addr
>> 39) & 0x1ff) << 3)) &
1098 pml4e
= ldq_phys(pml4e_addr
);
1099 if (!(pml4e
& PG_PRESENT_MASK
)) {
1103 if (!(env
->efer
& MSR_EFER_NXE
) && (pml4e
& PG_NX_MASK
)) {
1104 error_code
= PG_ERROR_RSVD_MASK
;
1107 if (!(pml4e
& PG_ACCESSED_MASK
)) {
1108 pml4e
|= PG_ACCESSED_MASK
;
1109 stl_phys_notdirty(pml4e_addr
, pml4e
);
1111 ptep
= pml4e
^ PG_NX_MASK
;
1112 pdpe_addr
= ((pml4e
& PHYS_ADDR_MASK
) + (((addr
>> 30) & 0x1ff) << 3)) &
1114 pdpe
= ldq_phys(pdpe_addr
);
1115 if (!(pdpe
& PG_PRESENT_MASK
)) {
1119 if (!(env
->efer
& MSR_EFER_NXE
) && (pdpe
& PG_NX_MASK
)) {
1120 error_code
= PG_ERROR_RSVD_MASK
;
1123 ptep
&= pdpe
^ PG_NX_MASK
;
1124 if (!(pdpe
& PG_ACCESSED_MASK
)) {
1125 pdpe
|= PG_ACCESSED_MASK
;
1126 stl_phys_notdirty(pdpe_addr
, pdpe
);
1131 /* XXX: load them when cr3 is loaded ? */
1132 pdpe_addr
= ((env
->cr
[3] & ~0x1f) + ((addr
>> 27) & 0x18)) &
1134 pdpe
= ldq_phys(pdpe_addr
);
1135 if (!(pdpe
& PG_PRESENT_MASK
)) {
1139 ptep
= PG_NX_MASK
| PG_USER_MASK
| PG_RW_MASK
;
1142 pde_addr
= ((pdpe
& PHYS_ADDR_MASK
) + (((addr
>> 21) & 0x1ff) << 3)) &
1144 pde
= ldq_phys(pde_addr
);
1145 if (!(pde
& PG_PRESENT_MASK
)) {
1149 if (!(env
->efer
& MSR_EFER_NXE
) && (pde
& PG_NX_MASK
)) {
1150 error_code
= PG_ERROR_RSVD_MASK
;
1153 ptep
&= pde
^ PG_NX_MASK
;
1154 if (pde
& PG_PSE_MASK
) {
1156 page_size
= 2048 * 1024;
1158 if ((ptep
& PG_NX_MASK
) && is_write1
== 2)
1159 goto do_fault_protect
;
1161 if (!(ptep
& PG_USER_MASK
))
1162 goto do_fault_protect
;
1163 if (is_write
&& !(ptep
& PG_RW_MASK
))
1164 goto do_fault_protect
;
1166 if ((env
->cr
[0] & CR0_WP_MASK
) &&
1167 is_write
&& !(ptep
& PG_RW_MASK
))
1168 goto do_fault_protect
;
1170 is_dirty
= is_write
&& !(pde
& PG_DIRTY_MASK
);
1171 if (!(pde
& PG_ACCESSED_MASK
) || is_dirty
) {
1172 pde
|= PG_ACCESSED_MASK
;
1174 pde
|= PG_DIRTY_MASK
;
1175 stl_phys_notdirty(pde_addr
, pde
);
1177 /* align to page_size */
1178 pte
= pde
& ((PHYS_ADDR_MASK
& ~(page_size
- 1)) | 0xfff);
1179 virt_addr
= addr
& ~(page_size
- 1);
1182 if (!(pde
& PG_ACCESSED_MASK
)) {
1183 pde
|= PG_ACCESSED_MASK
;
1184 stl_phys_notdirty(pde_addr
, pde
);
1186 pte_addr
= ((pde
& PHYS_ADDR_MASK
) + (((addr
>> 12) & 0x1ff) << 3)) &
1188 pte
= ldq_phys(pte_addr
);
1189 if (!(pte
& PG_PRESENT_MASK
)) {
1193 if (!(env
->efer
& MSR_EFER_NXE
) && (pte
& PG_NX_MASK
)) {
1194 error_code
= PG_ERROR_RSVD_MASK
;
1197 /* combine pde and pte nx, user and rw protections */
1198 ptep
&= pte
^ PG_NX_MASK
;
1200 if ((ptep
& PG_NX_MASK
) && is_write1
== 2)
1201 goto do_fault_protect
;
1203 if (!(ptep
& PG_USER_MASK
))
1204 goto do_fault_protect
;
1205 if (is_write
&& !(ptep
& PG_RW_MASK
))
1206 goto do_fault_protect
;
1208 if ((env
->cr
[0] & CR0_WP_MASK
) &&
1209 is_write
&& !(ptep
& PG_RW_MASK
))
1210 goto do_fault_protect
;
1212 is_dirty
= is_write
&& !(pte
& PG_DIRTY_MASK
);
1213 if (!(pte
& PG_ACCESSED_MASK
) || is_dirty
) {
1214 pte
|= PG_ACCESSED_MASK
;
1216 pte
|= PG_DIRTY_MASK
;
1217 stl_phys_notdirty(pte_addr
, pte
);
1220 virt_addr
= addr
& ~0xfff;
1221 pte
= pte
& (PHYS_ADDR_MASK
| 0xfff);
1226 /* page directory entry */
1227 pde_addr
= ((env
->cr
[3] & ~0xfff) + ((addr
>> 20) & 0xffc)) &
1229 pde
= ldl_phys(pde_addr
);
1230 if (!(pde
& PG_PRESENT_MASK
)) {
1234 /* if PSE bit is set, then we use a 4MB page */
1235 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1236 page_size
= 4096 * 1024;
1238 if (!(pde
& PG_USER_MASK
))
1239 goto do_fault_protect
;
1240 if (is_write
&& !(pde
& PG_RW_MASK
))
1241 goto do_fault_protect
;
1243 if ((env
->cr
[0] & CR0_WP_MASK
) &&
1244 is_write
&& !(pde
& PG_RW_MASK
))
1245 goto do_fault_protect
;
1247 is_dirty
= is_write
&& !(pde
& PG_DIRTY_MASK
);
1248 if (!(pde
& PG_ACCESSED_MASK
) || is_dirty
) {
1249 pde
|= PG_ACCESSED_MASK
;
1251 pde
|= PG_DIRTY_MASK
;
1252 stl_phys_notdirty(pde_addr
, pde
);
1255 pte
= pde
& ~( (page_size
- 1) & ~0xfff); /* align to page_size */
1257 virt_addr
= addr
& ~(page_size
- 1);
1259 if (!(pde
& PG_ACCESSED_MASK
)) {
1260 pde
|= PG_ACCESSED_MASK
;
1261 stl_phys_notdirty(pde_addr
, pde
);
1264 /* page directory entry */
1265 pte_addr
= ((pde
& ~0xfff) + ((addr
>> 10) & 0xffc)) &
1267 pte
= ldl_phys(pte_addr
);
1268 if (!(pte
& PG_PRESENT_MASK
)) {
1272 /* combine pde and pte user and rw protections */
1275 if (!(ptep
& PG_USER_MASK
))
1276 goto do_fault_protect
;
1277 if (is_write
&& !(ptep
& PG_RW_MASK
))
1278 goto do_fault_protect
;
1280 if ((env
->cr
[0] & CR0_WP_MASK
) &&
1281 is_write
&& !(ptep
& PG_RW_MASK
))
1282 goto do_fault_protect
;
1284 is_dirty
= is_write
&& !(pte
& PG_DIRTY_MASK
);
1285 if (!(pte
& PG_ACCESSED_MASK
) || is_dirty
) {
1286 pte
|= PG_ACCESSED_MASK
;
1288 pte
|= PG_DIRTY_MASK
;
1289 stl_phys_notdirty(pte_addr
, pte
);
1292 virt_addr
= addr
& ~0xfff;
1295 /* the page can be put in the TLB */
1297 if (!(ptep
& PG_NX_MASK
))
1299 if (pte
& PG_DIRTY_MASK
) {
1300 /* only set write access if already dirty... otherwise wait
1303 if (ptep
& PG_RW_MASK
)
1306 if (!(env
->cr
[0] & CR0_WP_MASK
) ||
1307 (ptep
& PG_RW_MASK
))
1312 pte
= pte
& env
->a20_mask
;
1314 /* Even if 4MB pages, we map only one 4KB page in the cache to
1315 avoid filling it too fast */
1316 page_offset
= (addr
& TARGET_PAGE_MASK
) & (page_size
- 1);
1317 paddr
= (pte
& TARGET_PAGE_MASK
) + page_offset
;
1318 vaddr
= virt_addr
+ page_offset
;
1320 ret
= tlb_set_page_exec(env
, vaddr
, paddr
, prot
, mmu_idx
, is_softmmu
);
1323 error_code
= PG_ERROR_P_MASK
;
1325 error_code
|= (is_write
<< PG_ERROR_W_BIT
);
1327 error_code
|= PG_ERROR_U_MASK
;
1328 if (is_write1
== 2 &&
1329 (env
->efer
& MSR_EFER_NXE
) &&
1330 (env
->cr
[4] & CR4_PAE_MASK
))
1331 error_code
|= PG_ERROR_I_D_MASK
;
1332 if (env
->intercept_exceptions
& (1 << EXCP0E_PAGE
)) {
1333 /* cr2 is not modified in case of exceptions */
1334 stq_phys(env
->vm_vmcb
+ offsetof(struct vmcb
, control
.exit_info_2
),
1339 env
->error_code
= error_code
;
1340 env
->exception_index
= EXCP0E_PAGE
;
1344 target_phys_addr_t
cpu_get_phys_page_debug(CPUState
*env
, target_ulong addr
)
1346 target_ulong pde_addr
, pte_addr
;
1348 target_phys_addr_t paddr
;
1349 uint32_t page_offset
;
1352 if (env
->cr
[4] & CR4_PAE_MASK
) {
1353 target_ulong pdpe_addr
;
1356 #ifdef TARGET_X86_64
1357 if (env
->hflags
& HF_LMA_MASK
) {
1358 uint64_t pml4e_addr
, pml4e
;
1361 /* test virtual address sign extension */
1362 sext
= (int64_t)addr
>> 47;
1363 if (sext
!= 0 && sext
!= -1)
1366 pml4e_addr
= ((env
->cr
[3] & ~0xfff) + (((addr
>> 39) & 0x1ff) << 3)) &
1368 pml4e
= ldq_phys(pml4e_addr
);
1369 if (!(pml4e
& PG_PRESENT_MASK
))
1372 pdpe_addr
= ((pml4e
& ~0xfff) + (((addr
>> 30) & 0x1ff) << 3)) &
1374 pdpe
= ldq_phys(pdpe_addr
);
1375 if (!(pdpe
& PG_PRESENT_MASK
))
1380 pdpe_addr
= ((env
->cr
[3] & ~0x1f) + ((addr
>> 27) & 0x18)) &
1382 pdpe
= ldq_phys(pdpe_addr
);
1383 if (!(pdpe
& PG_PRESENT_MASK
))
1387 pde_addr
= ((pdpe
& ~0xfff) + (((addr
>> 21) & 0x1ff) << 3)) &
1389 pde
= ldq_phys(pde_addr
);
1390 if (!(pde
& PG_PRESENT_MASK
)) {
1393 if (pde
& PG_PSE_MASK
) {
1395 page_size
= 2048 * 1024;
1396 pte
= pde
& ~( (page_size
- 1) & ~0xfff); /* align to page_size */
1399 pte_addr
= ((pde
& ~0xfff) + (((addr
>> 12) & 0x1ff) << 3)) &
1402 pte
= ldq_phys(pte_addr
);
1404 if (!(pte
& PG_PRESENT_MASK
))
1409 if (!(env
->cr
[0] & CR0_PG_MASK
)) {
1413 /* page directory entry */
1414 pde_addr
= ((env
->cr
[3] & ~0xfff) + ((addr
>> 20) & 0xffc)) & env
->a20_mask
;
1415 pde
= ldl_phys(pde_addr
);
1416 if (!(pde
& PG_PRESENT_MASK
))
1418 if ((pde
& PG_PSE_MASK
) && (env
->cr
[4] & CR4_PSE_MASK
)) {
1419 pte
= pde
& ~0x003ff000; /* align to 4MB */
1420 page_size
= 4096 * 1024;
1422 /* page directory entry */
1423 pte_addr
= ((pde
& ~0xfff) + ((addr
>> 10) & 0xffc)) & env
->a20_mask
;
1424 pte
= ldl_phys(pte_addr
);
1425 if (!(pte
& PG_PRESENT_MASK
))
1430 pte
= pte
& env
->a20_mask
;
1433 page_offset
= (addr
& TARGET_PAGE_MASK
) & (page_size
- 1);
1434 paddr
= (pte
& TARGET_PAGE_MASK
) + page_offset
;
1438 void hw_breakpoint_insert(CPUState
*env
, int index
)
1442 switch (hw_breakpoint_type(env
->dr
[7], index
)) {
1444 if (hw_breakpoint_enabled(env
->dr
[7], index
))
1445 err
= cpu_breakpoint_insert(env
, env
->dr
[index
], BP_CPU
,
1446 &env
->cpu_breakpoint
[index
]);
1449 type
= BP_CPU
| BP_MEM_WRITE
;
1452 /* No support for I/O watchpoints yet */
1455 type
= BP_CPU
| BP_MEM_ACCESS
;
1457 err
= cpu_watchpoint_insert(env
, env
->dr
[index
],
1458 hw_breakpoint_len(env
->dr
[7], index
),
1459 type
, &env
->cpu_watchpoint
[index
]);
1463 env
->cpu_breakpoint
[index
] = NULL
;
1466 void hw_breakpoint_remove(CPUState
*env
, int index
)
1468 if (!env
->cpu_breakpoint
[index
])
1470 switch (hw_breakpoint_type(env
->dr
[7], index
)) {
1472 if (hw_breakpoint_enabled(env
->dr
[7], index
))
1473 cpu_breakpoint_remove_by_ref(env
, env
->cpu_breakpoint
[index
]);
1477 cpu_watchpoint_remove_by_ref(env
, env
->cpu_watchpoint
[index
]);
1480 /* No support for I/O watchpoints yet */
1485 int check_hw_breakpoints(CPUState
*env
, int force_dr6_update
)
1489 int hit_enabled
= 0;
1491 dr6
= env
->dr
[6] & ~0xf;
1492 for (reg
= 0; reg
< 4; reg
++) {
1493 type
= hw_breakpoint_type(env
->dr
[7], reg
);
1494 if ((type
== 0 && env
->dr
[reg
] == env
->eip
) ||
1495 ((type
& 1) && env
->cpu_watchpoint
[reg
] &&
1496 (env
->cpu_watchpoint
[reg
]->flags
& BP_WATCHPOINT_HIT
))) {
1498 if (hw_breakpoint_enabled(env
->dr
[7], reg
))
1502 if (hit_enabled
|| force_dr6_update
)
1507 static CPUDebugExcpHandler
*prev_debug_excp_handler
;
1509 void raise_exception(int exception_index
);
1511 static void breakpoint_handler(CPUState
*env
)
1515 if (env
->watchpoint_hit
) {
1516 if (env
->watchpoint_hit
->flags
& BP_CPU
) {
1517 env
->watchpoint_hit
= NULL
;
1518 if (check_hw_breakpoints(env
, 0))
1519 raise_exception(EXCP01_DB
);
1521 cpu_resume_from_signal(env
, NULL
);
1524 QTAILQ_FOREACH(bp
, &env
->breakpoints
, entry
)
1525 if (bp
->pc
== env
->eip
) {
1526 if (bp
->flags
& BP_CPU
) {
1527 check_hw_breakpoints(env
, 1);
1528 raise_exception(EXCP01_DB
);
1533 if (prev_debug_excp_handler
)
1534 prev_debug_excp_handler(env
);
1537 /* This should come from sysemu.h - if we could include it here... */
1538 void qemu_system_reset_request(void);
1540 void cpu_inject_x86_mce(CPUState
*cenv
, int bank
, uint64_t status
,
1541 uint64_t mcg_status
, uint64_t addr
, uint64_t misc
)
1543 uint64_t mcg_cap
= cenv
->mcg_cap
;
1544 unsigned bank_num
= mcg_cap
& 0xff;
1545 uint64_t *banks
= cenv
->mce_banks
;
1547 if (bank
>= bank_num
|| !(status
& MCI_STATUS_VAL
))
1551 * if MSR_MCG_CTL is not all 1s, the uncorrected error
1552 * reporting is disabled
1554 if ((status
& MCI_STATUS_UC
) && (mcg_cap
& MCG_CTL_P
) &&
1555 cenv
->mcg_ctl
!= ~(uint64_t)0)
1559 * if MSR_MCi_CTL is not all 1s, the uncorrected error
1560 * reporting is disabled for the bank
1562 if ((status
& MCI_STATUS_UC
) && banks
[0] != ~(uint64_t)0)
1564 if (status
& MCI_STATUS_UC
) {
1565 if ((cenv
->mcg_status
& MCG_STATUS_MCIP
) ||
1566 !(cenv
->cr
[4] & CR4_MCE_MASK
)) {
1567 fprintf(stderr
, "injects mce exception while previous "
1568 "one is in progress!\n");
1569 qemu_log_mask(CPU_LOG_RESET
, "Triple fault\n");
1570 qemu_system_reset_request();
1573 if (banks
[1] & MCI_STATUS_VAL
)
1574 status
|= MCI_STATUS_OVER
;
1577 cenv
->mcg_status
= mcg_status
;
1579 cpu_interrupt(cenv
, CPU_INTERRUPT_MCE
);
1580 } else if (!(banks
[1] & MCI_STATUS_VAL
)
1581 || !(banks
[1] & MCI_STATUS_UC
)) {
1582 if (banks
[1] & MCI_STATUS_VAL
)
1583 status
|= MCI_STATUS_OVER
;
1588 banks
[1] |= MCI_STATUS_OVER
;
1590 #endif /* !CONFIG_USER_ONLY */
1592 static void mce_init(CPUX86State
*cenv
)
1594 unsigned int bank
, bank_num
;
1596 if (((cenv
->cpuid_version
>> 8)&0xf) >= 6
1597 && (cenv
->cpuid_features
&(CPUID_MCE
|CPUID_MCA
)) == (CPUID_MCE
|CPUID_MCA
)) {
1598 cenv
->mcg_cap
= MCE_CAP_DEF
| MCE_BANKS_DEF
;
1599 cenv
->mcg_ctl
= ~(uint64_t)0;
1600 bank_num
= cenv
->mcg_cap
& 0xff;
1601 cenv
->mce_banks
= qemu_mallocz(bank_num
* sizeof(uint64_t) * 4);
1602 for (bank
= 0; bank
< bank_num
; bank
++)
1603 cenv
->mce_banks
[bank
*4] = ~(uint64_t)0;
1607 static void host_cpuid(uint32_t function
, uint32_t count
,
1608 uint32_t *eax
, uint32_t *ebx
,
1609 uint32_t *ecx
, uint32_t *edx
)
1611 #if defined(CONFIG_KVM)
1615 asm volatile("cpuid"
1616 : "=a"(vec
[0]), "=b"(vec
[1]),
1617 "=c"(vec
[2]), "=d"(vec
[3])
1618 : "0"(function
), "c"(count
) : "cc");
1620 asm volatile("pusha \n\t"
1622 "mov %%eax, 0(%2) \n\t"
1623 "mov %%ebx, 4(%2) \n\t"
1624 "mov %%ecx, 8(%2) \n\t"
1625 "mov %%edx, 12(%2) \n\t"
1627 : : "a"(function
), "c"(count
), "S"(vec
)
1642 void cpu_x86_cpuid(CPUX86State
*env
, uint32_t index
, uint32_t count
,
1643 uint32_t *eax
, uint32_t *ebx
,
1644 uint32_t *ecx
, uint32_t *edx
)
1646 /* test if maximum index reached */
1647 if (index
& 0x80000000) {
1648 if (index
> env
->cpuid_xlevel
)
1649 index
= env
->cpuid_level
;
1651 if (index
> env
->cpuid_level
)
1652 index
= env
->cpuid_level
;
1657 *eax
= env
->cpuid_level
;
1658 *ebx
= env
->cpuid_vendor1
;
1659 *edx
= env
->cpuid_vendor2
;
1660 *ecx
= env
->cpuid_vendor3
;
1662 /* sysenter isn't supported on compatibility mode on AMD. and syscall
1663 * isn't supported in compatibility mode on Intel. so advertise the
1664 * actuall cpu, and say goodbye to migration between different vendors
1665 * is you use compatibility mode. */
1666 if (kvm_enabled() && !env
->cpuid_vendor_override
)
1667 host_cpuid(0, 0, NULL
, ebx
, ecx
, edx
);
1670 *eax
= env
->cpuid_version
;
1671 *ebx
= (env
->cpuid_apic_id
<< 24) | 8 << 8; /* CLFLUSH size in quad words, Linux wants it. */
1672 *ecx
= env
->cpuid_ext_features
;
1673 *edx
= env
->cpuid_features
;
1674 if (env
->nr_cores
* env
->nr_threads
> 1) {
1675 *ebx
|= (env
->nr_cores
* env
->nr_threads
) << 16;
1676 *edx
|= 1 << 28; /* HTT bit */
1680 /* cache info: needed for Pentium Pro compatibility */
1687 /* cache info: needed for Core compatibility */
1688 if (env
->nr_cores
> 1) {
1689 *eax
= (env
->nr_cores
- 1) << 26;
1694 case 0: /* L1 dcache info */
1700 case 1: /* L1 icache info */
1706 case 2: /* L2 cache info */
1708 if (env
->nr_threads
> 1) {
1709 *eax
|= (env
->nr_threads
- 1) << 14;
1715 default: /* end of info */
1724 /* mwait info: needed for Core compatibility */
1725 *eax
= 0; /* Smallest monitor-line size in bytes */
1726 *ebx
= 0; /* Largest monitor-line size in bytes */
1727 *ecx
= CPUID_MWAIT_EMX
| CPUID_MWAIT_IBE
;
1731 /* Thermal and Power Leaf */
1738 /* Direct Cache Access Information Leaf */
1739 *eax
= 0; /* Bits 0-31 in DCA_CAP MSR */
1745 /* Architectural Performance Monitoring Leaf */
1752 *eax
= env
->cpuid_xlevel
;
1753 *ebx
= env
->cpuid_vendor1
;
1754 *edx
= env
->cpuid_vendor2
;
1755 *ecx
= env
->cpuid_vendor3
;
1758 *eax
= env
->cpuid_version
;
1760 *ecx
= env
->cpuid_ext3_features
;
1761 *edx
= env
->cpuid_ext2_features
;
1763 if (env
->nr_cores
* env
->nr_threads
> 1 &&
1764 env
->cpuid_vendor1
== CPUID_VENDOR_AMD_1
&&
1765 env
->cpuid_vendor2
== CPUID_VENDOR_AMD_2
&&
1766 env
->cpuid_vendor3
== CPUID_VENDOR_AMD_3
) {
1767 *ecx
|= 1 << 1; /* CmpLegacy bit */
1770 if (kvm_enabled()) {
1771 /* Nested SVM not yet supported in KVM */
1772 *ecx
&= ~CPUID_EXT3_SVM
;
1774 /* AMD 3DNow! is not supported in QEMU */
1775 *edx
&= ~(CPUID_EXT2_3DNOW
| CPUID_EXT2_3DNOWEXT
);
1781 *eax
= env
->cpuid_model
[(index
- 0x80000002) * 4 + 0];
1782 *ebx
= env
->cpuid_model
[(index
- 0x80000002) * 4 + 1];
1783 *ecx
= env
->cpuid_model
[(index
- 0x80000002) * 4 + 2];
1784 *edx
= env
->cpuid_model
[(index
- 0x80000002) * 4 + 3];
1787 /* cache info (L1 cache) */
1794 /* cache info (L2 cache) */
1801 /* virtual & phys address size in low 2 bytes. */
1802 /* XXX: This value must match the one used in the MMU code. */
1803 if (env
->cpuid_ext2_features
& CPUID_EXT2_LM
) {
1804 /* 64 bit processor */
1805 /* XXX: The physical address space is limited to 42 bits in exec.c. */
1806 *eax
= 0x00003028; /* 48 bits virtual, 40 bits physical */
1808 if (env
->cpuid_features
& CPUID_PSE36
)
1809 *eax
= 0x00000024; /* 36 bits physical */
1811 *eax
= 0x00000020; /* 32 bits physical */
1816 if (env
->nr_cores
* env
->nr_threads
> 1) {
1817 *ecx
|= (env
->nr_cores
* env
->nr_threads
) - 1;
1821 *eax
= 0x00000001; /* SVM Revision */
1822 *ebx
= 0x00000010; /* nr of ASIDs */
1824 *edx
= 0; /* optional features */
1827 /* reserved values: zero */
1837 int cpu_x86_get_descr_debug(CPUX86State
*env
, unsigned int selector
,
1838 target_ulong
*base
, unsigned int *limit
,
1839 unsigned int *flags
)
1850 index
= selector
& ~7;
1851 ptr
= dt
->base
+ index
;
1852 if ((index
+ 7) > dt
->limit
1853 || cpu_memory_rw_debug(env
, ptr
, (uint8_t *)&e1
, sizeof(e1
), 0) != 0
1854 || cpu_memory_rw_debug(env
, ptr
+4, (uint8_t *)&e2
, sizeof(e2
), 0) != 0)
1857 *base
= ((e1
>> 16) | ((e2
& 0xff) << 16) | (e2
& 0xff000000));
1858 *limit
= (e1
& 0xffff) | (e2
& 0x000f0000);
1859 if (e2
& DESC_G_MASK
)
1860 *limit
= (*limit
<< 12) | 0xfff;
1866 CPUX86State
*cpu_x86_init(const char *cpu_model
)
1871 env
= qemu_mallocz(sizeof(CPUX86State
));
1873 env
->cpu_model_str
= cpu_model
;
1875 /* init various static tables */
1878 optimize_flags_init();
1879 #ifndef CONFIG_USER_ONLY
1880 prev_debug_excp_handler
=
1881 cpu_set_debug_excp_handler(breakpoint_handler
);
1884 if (cpu_x86_register(env
, cpu_model
) < 0) {
1891 qemu_init_vcpu(env
);
1896 #if !defined(CONFIG_USER_ONLY)
1897 void do_cpu_init(CPUState
*env
)
1899 int sipi
= env
->interrupt_request
& CPU_INTERRUPT_SIPI
;
1901 env
->interrupt_request
= sipi
;
1902 apic_init_reset(env
);
1905 void do_cpu_sipi(CPUState
*env
)
1910 void do_cpu_init(CPUState
*env
)
1913 void do_cpu_sipi(CPUState
*env
)