VirtualBox

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

Last change on this file since 4953 was 4071, checked in by vboxsync, 17 years ago

Biggest check-in ever. New source code headers for all (C) innotek files.

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

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette