]> git.saurik.com Git - apple/xnu.git/blobdiff - osfmk/i386/start64.s
xnu-1699.24.23.tar.gz
[apple/xnu.git] / osfmk / i386 / start64.s
index e822e6c12dde5ad62157b9f21b6b4ce8d4b09eac..bcabe2829f10f14ab82f3e0007741bc7188b0703 100644 (file)
@@ -87,25 +87,6 @@ Entry(ml_load_desc64)
        ret
 
 
-Entry(ml_64bit_wrmsr64)
-       /* (uint32_t msr, uint64_t value) */
-       /* (uint32_t msr, uint32_t lo, uint32_t hi) */
-
-       FRAME
-
-       ENTER_64BIT_MODE()
-
-       movl    B_ARG0, %ecx
-       movl    B_ARG1, %eax
-       movl    B_ARG2, %edx
-       wrmsr
-
-       ENTER_COMPAT_MODE()
-
-       EMARF
-       ret
-
-
 Entry(ml_64bit_lldt)
        /* (int32_t selector) */
 
@@ -192,26 +173,43 @@ Entry(get64_cr3)
        EMARF
        ret
 
+Entry(cpuid64)
+       ENTER_64BIT_MODE()
+       cpuid
+       ENTER_COMPAT_MODE()
+       ret
+
+
 /* FXSAVE and FXRSTOR operate in a mode dependent fashion, hence these variants.
  * Must be called with interrupts disabled.
- * We clear pending x87 exceptions here; this is technically incorrect, since we
- * should propagate those to the user, but the compatibility mode kernel is
- * currently not prepared to handle exceptions originating in 64-bit kernel mode.
- * However, it may be possible to work around this should it prove necessary.
  */
 
 Entry(fxsave64)
        movl            S_ARG0,%eax
        ENTER_64BIT_MODE()
-       fnclex
-       fxsave          0(%eax)
+       fxsave          (%eax)
        ENTER_COMPAT_MODE()
        ret
 
 Entry(fxrstor64)
        movl            S_ARG0,%eax
        ENTER_64BIT_MODE()
-       fnclex
-       fxrstor         0(%rax)
+       fxrstor         (%rax)
+       ENTER_COMPAT_MODE()
+       ret
+
+Entry(xsave64o)
+       ENTER_64BIT_MODE()
+       .short  0xAE0F
+       /* MOD 0x4, ECX, 0x1 */
+       .byte   0x21
+       ENTER_COMPAT_MODE()
+       ret
+
+Entry(xrstor64o)
+       ENTER_64BIT_MODE()
+       .short  0xAE0F
+       /* MOD 0x5, ECX 0x1 */
+       .byte   0x29
        ENTER_COMPAT_MODE()
        ret