VirtualBox

source: vbox/trunk/src/VBox/VMM/VMMAll/CPUMAllA.asm@ 43667

Last change on this file since 43667 was 37955, checked in by vboxsync, 13 years ago

Moved VBox/x86.h/mac to iprt/x86.h/mac.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 6.4 KB
Line 
1; $Id: CPUMAllA.asm 37955 2011-07-14 12:23:02Z vboxsync $
2;; @file
3; CPUM - Guest Context Assembly Routines.
4;
5
6;
7; Copyright (C) 2006-2007 Oracle Corporation
8;
9; This file is part of VirtualBox Open Source Edition (OSE), as
10; available from http://www.virtualbox.org. This file is free software;
11; you can redistribute it and/or modify it under the terms of the GNU
12; General Public License (GPL) as published by the Free Software
13; Foundation, in version 2 as it comes in the "COPYING" file of the
14; VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16;
17
18;*******************************************************************************
19;* Header Files *
20;*******************************************************************************
21%include "VBox/asmdefs.mac"
22%include "VBox/vmm/vm.mac"
23%include "VBox/err.mac"
24%include "VBox/vmm/stam.mac"
25%include "CPUMInternal.mac"
26%include "iprt/x86.mac"
27%include "VBox/vmm/cpum.mac"
28
29%ifdef IN_RING3
30 %error "The jump table doesn't link on leopard."
31%endif
32
33;
34; Enables write protection of Hypervisor memory pages.
35; !note! Must be commented out for Trap8 debug handler.
36;
37%define ENABLE_WRITE_PROTECTION 1
38
39BEGINCODE
40
41
42;;
43; Handles lazy FPU saving and restoring.
44;
45; This handler will implement lazy fpu (sse/mmx/stuff) saving.
46; Two actions may be taken in this handler since the Guest OS may
47; be doing lazy fpu switching. So, we'll have to generate those
48; traps which the Guest CPU CTX shall have according to the
49; its CR0 flags. If no traps for the Guest OS, we'll save the host
50; context and restore the guest context.
51;
52; @returns 0 if caller should continue execution.
53; @returns VINF_EM_RAW_GUEST_TRAP if a guest trap should be generated.
54; @param pCPUMCPU x86:[esp+4] GCC:rdi MSC:rcx CPUMCPU pointer
55;
56align 16
57BEGINPROC cpumHandleLazyFPUAsm
58 ;
59 ; Figure out what to do.
60 ;
61 ; There are two basic actions:
62 ; 1. Save host fpu and restore guest fpu.
63 ; 2. Generate guest trap.
64 ;
65 ; When entering the hypervisor we'll always enable MP (for proper wait
66 ; trapping) and TS (for intercepting all fpu/mmx/sse stuff). The EM flag
67 ; is taken from the guest OS in order to get proper SSE handling.
68 ;
69 ;
70 ; Actions taken depending on the guest CR0 flags:
71 ;
72 ; 3 2 1
73 ; TS | EM | MP | FPUInstr | WAIT :: VMM Action
74 ; ------------------------------------------------------------------------
75 ; 0 | 0 | 0 | Exec | Exec :: Clear TS & MP, Save HC, Load GC.
76 ; 0 | 0 | 1 | Exec | Exec :: Clear TS, Save HC, Load GC.
77 ; 0 | 1 | 0 | #NM | Exec :: Clear TS & MP, Save HC, Load GC;
78 ; 0 | 1 | 1 | #NM | Exec :: Clear TS, Save HC, Load GC.
79 ; 1 | 0 | 0 | #NM | Exec :: Clear MP, Save HC, Load GC. (EM is already cleared.)
80 ; 1 | 0 | 1 | #NM | #NM :: Go to host taking trap there.
81 ; 1 | 1 | 0 | #NM | Exec :: Clear MP, Save HC, Load GC. (EM is already set.)
82 ; 1 | 1 | 1 | #NM | #NM :: Go to host taking trap there.
83
84 ;
85 ; Before taking any of these actions we're checking if we have already
86 ; loaded the GC FPU. Because if we have, this is an trap for the guest - raw ring-3.
87 ;
88%ifdef RT_ARCH_AMD64
89 %ifdef RT_OS_WINDOWS
90 mov xDX, rcx
91 %else
92 mov xDX, rdi
93 %endif
94%else
95 mov xDX, dword [esp + 4]
96%endif
97 test dword [xDX + CPUMCPU.fUseFlags], CPUM_USED_FPU
98 jz hlfpua_not_loaded
99 jmp hlfpua_to_host
100
101 ;
102 ; Take action.
103 ;
104align 16
105hlfpua_not_loaded:
106 mov eax, [xDX + CPUMCPU.Guest.cr0]
107 and eax, X86_CR0_MP | X86_CR0_EM | X86_CR0_TS
108%ifdef RT_ARCH_AMD64
109 lea r8, [hlfpuajmp1 wrt rip]
110 jmp qword [rax*4 + r8]
111%else
112 jmp dword [eax*2 + hlfpuajmp1]
113%endif
114align 16
115;; jump table using fpu related cr0 flags as index.
116hlfpuajmp1:
117 RTCCPTR_DEF hlfpua_switch_fpu_ctx
118 RTCCPTR_DEF hlfpua_switch_fpu_ctx
119 RTCCPTR_DEF hlfpua_switch_fpu_ctx
120 RTCCPTR_DEF hlfpua_switch_fpu_ctx
121 RTCCPTR_DEF hlfpua_switch_fpu_ctx
122 RTCCPTR_DEF hlfpua_to_host
123 RTCCPTR_DEF hlfpua_switch_fpu_ctx
124 RTCCPTR_DEF hlfpua_to_host
125;; and mask for cr0.
126hlfpu_afFlags:
127 RTCCPTR_DEF ~(X86_CR0_TS | X86_CR0_MP)
128 RTCCPTR_DEF ~(X86_CR0_TS)
129 RTCCPTR_DEF ~(X86_CR0_TS | X86_CR0_MP)
130 RTCCPTR_DEF ~(X86_CR0_TS)
131 RTCCPTR_DEF ~(X86_CR0_MP)
132 RTCCPTR_DEF 0
133 RTCCPTR_DEF ~(X86_CR0_MP)
134 RTCCPTR_DEF 0
135
136 ;
137 ; Action - switch FPU context and change cr0 flags.
138 ;
139align 16
140hlfpua_switch_fpu_ctx:
141%ifndef IN_RING3 ; IN_RC or IN_RING0
142 mov xCX, cr0
143 %ifdef RT_ARCH_AMD64
144 lea r8, [hlfpu_afFlags wrt rip]
145 and rcx, [rax*4 + r8] ; calc the new cr0 flags.
146 %else
147 and ecx, [eax*2 + hlfpu_afFlags] ; calc the new cr0 flags.
148 %endif
149 mov xAX, cr0
150 and xAX, ~(X86_CR0_TS | X86_CR0_EM)
151 mov cr0, xAX ; clear flags so we don't trap here.
152%endif
153%ifndef RT_ARCH_AMD64
154 mov eax, edx ; Calculate the PCPUM pointer
155 sub eax, [edx + CPUMCPU.offCPUM]
156 test dword [eax + CPUM.CPUFeatures.edx], X86_CPUID_FEATURE_EDX_FXSR
157 jz short hlfpua_no_fxsave
158%endif
159
160 fxsave [xDX + CPUMCPU.Host.fpu]
161 or dword [xDX + CPUMCPU.fUseFlags], (CPUM_USED_FPU | CPUM_USED_FPU_SINCE_REM)
162 fxrstor [xDX + CPUMCPU.Guest.fpu]
163hlfpua_finished_switch:
164%ifdef IN_RC
165 mov cr0, xCX ; load the new cr0 flags.
166%endif
167 ; return continue execution.
168 xor eax, eax
169 ret
170
171%ifndef RT_ARCH_AMD64
172; legacy support.
173hlfpua_no_fxsave:
174 fnsave [xDX + CPUMCPU.Host.fpu]
175 or dword [xDX + CPUMCPU.fUseFlags], dword (CPUM_USED_FPU | CPUM_USED_FPU_SINCE_REM) ; yasm / nasm
176 mov eax, [xDX + CPUMCPU.Guest.fpu] ; control word
177 not eax ; 1 means exception ignored (6 LS bits)
178 and eax, byte 03Fh ; 6 LS bits only
179 test eax, [xDX + CPUMCPU.Guest.fpu + 4] ; status word
180 jz short hlfpua_no_exceptions_pending
181 ; technically incorrect, but we certainly don't want any exceptions now!!
182 and dword [xDX + CPUMCPU.Guest.fpu + 4], ~03Fh
183hlfpua_no_exceptions_pending:
184 frstor [xDX + CPUMCPU.Guest.fpu]
185 jmp near hlfpua_finished_switch
186%endif ; !RT_ARCH_AMD64
187
188
189 ;
190 ; Action - Generate Guest trap.
191 ;
192hlfpua_action_4:
193hlfpua_to_host:
194 mov eax, VINF_EM_RAW_GUEST_TRAP
195 ret
196ENDPROC cpumHandleLazyFPUAsm
197
198
Note: See TracBrowser for help on using the repository browser.

© 2023 Oracle
ContactPrivacy policyTerms of Use