Statistics
| Branch: | Revision:

root / target-i386 / svm.h @ 239fbd86

History | View | Annotate | Download (10.4 kB)

1 239fbd86 ths
#ifndef __SVM_H
2 239fbd86 ths
#define __SVM_H
3 239fbd86 ths
4 239fbd86 ths
enum {
5 239fbd86 ths
        /* We shift all the intercept bits so we can OR them with the
6 239fbd86 ths
           TB flags later on */
7 239fbd86 ths
        INTERCEPT_INTR = HF_HIF_SHIFT,
8 239fbd86 ths
        INTERCEPT_NMI,
9 239fbd86 ths
        INTERCEPT_SMI,
10 239fbd86 ths
        INTERCEPT_INIT,
11 239fbd86 ths
        INTERCEPT_VINTR,
12 239fbd86 ths
        INTERCEPT_SELECTIVE_CR0,
13 239fbd86 ths
        INTERCEPT_STORE_IDTR,
14 239fbd86 ths
        INTERCEPT_STORE_GDTR,
15 239fbd86 ths
        INTERCEPT_STORE_LDTR,
16 239fbd86 ths
        INTERCEPT_STORE_TR,
17 239fbd86 ths
        INTERCEPT_LOAD_IDTR,
18 239fbd86 ths
        INTERCEPT_LOAD_GDTR,
19 239fbd86 ths
        INTERCEPT_LOAD_LDTR,
20 239fbd86 ths
        INTERCEPT_LOAD_TR,
21 239fbd86 ths
        INTERCEPT_RDTSC,
22 239fbd86 ths
        INTERCEPT_RDPMC,
23 239fbd86 ths
        INTERCEPT_PUSHF,
24 239fbd86 ths
        INTERCEPT_POPF,
25 239fbd86 ths
        INTERCEPT_CPUID,
26 239fbd86 ths
        INTERCEPT_RSM,
27 239fbd86 ths
        INTERCEPT_IRET,
28 239fbd86 ths
        INTERCEPT_INTn,
29 239fbd86 ths
        INTERCEPT_INVD,
30 239fbd86 ths
        INTERCEPT_PAUSE,
31 239fbd86 ths
        INTERCEPT_HLT,
32 239fbd86 ths
        INTERCEPT_INVLPG,
33 239fbd86 ths
        INTERCEPT_INVLPGA,
34 239fbd86 ths
        INTERCEPT_IOIO_PROT,
35 239fbd86 ths
        INTERCEPT_MSR_PROT,
36 239fbd86 ths
        INTERCEPT_TASK_SWITCH,
37 239fbd86 ths
        INTERCEPT_FERR_FREEZE,
38 239fbd86 ths
        INTERCEPT_SHUTDOWN,
39 239fbd86 ths
        INTERCEPT_VMRUN,
40 239fbd86 ths
        INTERCEPT_VMMCALL,
41 239fbd86 ths
        INTERCEPT_VMLOAD,
42 239fbd86 ths
        INTERCEPT_VMSAVE,
43 239fbd86 ths
        INTERCEPT_STGI,
44 239fbd86 ths
        INTERCEPT_CLGI,
45 239fbd86 ths
        INTERCEPT_SKINIT,
46 239fbd86 ths
        INTERCEPT_RDTSCP,
47 239fbd86 ths
        INTERCEPT_ICEBP,
48 239fbd86 ths
        INTERCEPT_WBINVD,
49 239fbd86 ths
};
50 239fbd86 ths
/* This is not really an intercept but rather a placeholder to
51 239fbd86 ths
   show that we are in an SVM (just like a hidden flag, but keeps the
52 239fbd86 ths
   TBs clean) */
53 239fbd86 ths
#define INTERCEPT_SVM 63
54 239fbd86 ths
#define INTERCEPT_SVM_MASK (1ULL << INTERCEPT_SVM)
55 239fbd86 ths
56 239fbd86 ths
struct __attribute__ ((__packed__)) vmcb_control_area {
57 239fbd86 ths
        uint16_t intercept_cr_read;
58 239fbd86 ths
        uint16_t intercept_cr_write;
59 239fbd86 ths
        uint16_t intercept_dr_read;
60 239fbd86 ths
        uint16_t intercept_dr_write;
61 239fbd86 ths
        uint32_t intercept_exceptions;
62 239fbd86 ths
        uint64_t intercept;
63 239fbd86 ths
        uint8_t reserved_1[44];
64 239fbd86 ths
        uint64_t iopm_base_pa;
65 239fbd86 ths
        uint64_t msrpm_base_pa;
66 239fbd86 ths
        uint64_t tsc_offset;
67 239fbd86 ths
        uint32_t asid;
68 239fbd86 ths
        uint8_t tlb_ctl;
69 239fbd86 ths
        uint8_t reserved_2[3];
70 239fbd86 ths
        uint32_t int_ctl;
71 239fbd86 ths
        uint32_t int_vector;
72 239fbd86 ths
        uint32_t int_state;
73 239fbd86 ths
        uint8_t reserved_3[4];
74 239fbd86 ths
        uint32_t exit_code;
75 239fbd86 ths
        uint32_t exit_code_hi;
76 239fbd86 ths
        uint64_t exit_info_1;
77 239fbd86 ths
        uint64_t exit_info_2;
78 239fbd86 ths
        uint32_t exit_int_info;
79 239fbd86 ths
        uint32_t exit_int_info_err;
80 239fbd86 ths
        uint64_t nested_ctl;
81 239fbd86 ths
        uint8_t reserved_4[16];
82 239fbd86 ths
        uint32_t event_inj;
83 239fbd86 ths
        uint32_t event_inj_err;
84 239fbd86 ths
        uint64_t nested_cr3;
85 239fbd86 ths
        uint64_t lbr_ctl;
86 239fbd86 ths
        uint8_t reserved_5[832];
87 239fbd86 ths
};
88 239fbd86 ths
89 239fbd86 ths
90 239fbd86 ths
#define TLB_CONTROL_DO_NOTHING 0
91 239fbd86 ths
#define TLB_CONTROL_FLUSH_ALL_ASID 1
92 239fbd86 ths
93 239fbd86 ths
#define V_TPR_MASK 0x0f
94 239fbd86 ths
95 239fbd86 ths
#define V_IRQ_SHIFT 8
96 239fbd86 ths
#define V_IRQ_MASK (1 << V_IRQ_SHIFT)
97 239fbd86 ths
98 239fbd86 ths
#define V_INTR_PRIO_SHIFT 16
99 239fbd86 ths
#define V_INTR_PRIO_MASK (0x0f << V_INTR_PRIO_SHIFT)
100 239fbd86 ths
101 239fbd86 ths
#define V_IGN_TPR_SHIFT 20
102 239fbd86 ths
#define V_IGN_TPR_MASK (1 << V_IGN_TPR_SHIFT)
103 239fbd86 ths
104 239fbd86 ths
#define V_INTR_MASKING_SHIFT 24
105 239fbd86 ths
#define V_INTR_MASKING_MASK (1 << V_INTR_MASKING_SHIFT)
106 239fbd86 ths
107 239fbd86 ths
#define SVM_INTERRUPT_SHADOW_MASK 1
108 239fbd86 ths
109 239fbd86 ths
#define SVM_IOIO_STR_SHIFT 2
110 239fbd86 ths
#define SVM_IOIO_REP_SHIFT 3
111 239fbd86 ths
#define SVM_IOIO_SIZE_SHIFT 4
112 239fbd86 ths
#define SVM_IOIO_ASIZE_SHIFT 7
113 239fbd86 ths
114 239fbd86 ths
#define SVM_IOIO_TYPE_MASK 1
115 239fbd86 ths
#define SVM_IOIO_STR_MASK (1 << SVM_IOIO_STR_SHIFT)
116 239fbd86 ths
#define SVM_IOIO_REP_MASK (1 << SVM_IOIO_REP_SHIFT)
117 239fbd86 ths
#define SVM_IOIO_SIZE_MASK (7 << SVM_IOIO_SIZE_SHIFT)
118 239fbd86 ths
#define SVM_IOIO_ASIZE_MASK (7 << SVM_IOIO_ASIZE_SHIFT)
119 239fbd86 ths
120 239fbd86 ths
struct __attribute__ ((__packed__)) vmcb_seg {
121 239fbd86 ths
        uint16_t selector;
122 239fbd86 ths
        uint16_t attrib;
123 239fbd86 ths
        uint32_t limit;
124 239fbd86 ths
        uint64_t base;
125 239fbd86 ths
};
126 239fbd86 ths
127 239fbd86 ths
struct __attribute__ ((__packed__)) vmcb_save_area {
128 239fbd86 ths
        struct vmcb_seg es;
129 239fbd86 ths
        struct vmcb_seg cs;
130 239fbd86 ths
        struct vmcb_seg ss;
131 239fbd86 ths
        struct vmcb_seg ds;
132 239fbd86 ths
        struct vmcb_seg fs;
133 239fbd86 ths
        struct vmcb_seg gs;
134 239fbd86 ths
        struct vmcb_seg gdtr;
135 239fbd86 ths
        struct vmcb_seg ldtr;
136 239fbd86 ths
        struct vmcb_seg idtr;
137 239fbd86 ths
        struct vmcb_seg tr;
138 239fbd86 ths
        uint8_t reserved_1[43];
139 239fbd86 ths
        uint8_t cpl;
140 239fbd86 ths
        uint8_t reserved_2[4];
141 239fbd86 ths
        uint64_t efer;
142 239fbd86 ths
        uint8_t reserved_3[112];
143 239fbd86 ths
        uint64_t cr4;
144 239fbd86 ths
        uint64_t cr3;
145 239fbd86 ths
        uint64_t cr0;
146 239fbd86 ths
        uint64_t dr7;
147 239fbd86 ths
        uint64_t dr6;
148 239fbd86 ths
        uint64_t rflags;
149 239fbd86 ths
        uint64_t rip;
150 239fbd86 ths
        uint8_t reserved_4[88];
151 239fbd86 ths
        uint64_t rsp;
152 239fbd86 ths
        uint8_t reserved_5[24];
153 239fbd86 ths
        uint64_t rax;
154 239fbd86 ths
        uint64_t star;
155 239fbd86 ths
        uint64_t lstar;
156 239fbd86 ths
        uint64_t cstar;
157 239fbd86 ths
        uint64_t sfmask;
158 239fbd86 ths
        uint64_t kernel_gs_base;
159 239fbd86 ths
        uint64_t sysenter_cs;
160 239fbd86 ths
        uint64_t sysenter_esp;
161 239fbd86 ths
        uint64_t sysenter_eip;
162 239fbd86 ths
        uint64_t cr2;
163 239fbd86 ths
        /* qemu: cr8 added to reuse this as hsave */
164 239fbd86 ths
        uint64_t cr8;
165 239fbd86 ths
        uint8_t reserved_6[32 - 8]; /* originally 32 */
166 239fbd86 ths
        uint64_t g_pat;
167 239fbd86 ths
        uint64_t dbgctl;
168 239fbd86 ths
        uint64_t br_from;
169 239fbd86 ths
        uint64_t br_to;
170 239fbd86 ths
        uint64_t last_excp_from;
171 239fbd86 ths
        uint64_t last_excp_to;
172 239fbd86 ths
};
173 239fbd86 ths
174 239fbd86 ths
struct __attribute__ ((__packed__)) vmcb {
175 239fbd86 ths
        struct vmcb_control_area control;
176 239fbd86 ths
        struct vmcb_save_area save;
177 239fbd86 ths
};
178 239fbd86 ths
179 239fbd86 ths
#define SVM_CPUID_FEATURE_SHIFT 2
180 239fbd86 ths
#define SVM_CPUID_FUNC 0x8000000a
181 239fbd86 ths
182 239fbd86 ths
#define MSR_EFER_SVME_MASK (1ULL << 12)
183 239fbd86 ths
184 239fbd86 ths
#define SVM_SELECTOR_S_SHIFT 4
185 239fbd86 ths
#define SVM_SELECTOR_DPL_SHIFT 5
186 239fbd86 ths
#define SVM_SELECTOR_P_SHIFT 7
187 239fbd86 ths
#define SVM_SELECTOR_AVL_SHIFT 8
188 239fbd86 ths
#define SVM_SELECTOR_L_SHIFT 9
189 239fbd86 ths
#define SVM_SELECTOR_DB_SHIFT 10
190 239fbd86 ths
#define SVM_SELECTOR_G_SHIFT 11
191 239fbd86 ths
192 239fbd86 ths
#define SVM_SELECTOR_TYPE_MASK (0xf)
193 239fbd86 ths
#define SVM_SELECTOR_S_MASK (1 << SVM_SELECTOR_S_SHIFT)
194 239fbd86 ths
#define SVM_SELECTOR_DPL_MASK (3 << SVM_SELECTOR_DPL_SHIFT)
195 239fbd86 ths
#define SVM_SELECTOR_P_MASK (1 << SVM_SELECTOR_P_SHIFT)
196 239fbd86 ths
#define SVM_SELECTOR_AVL_MASK (1 << SVM_SELECTOR_AVL_SHIFT)
197 239fbd86 ths
#define SVM_SELECTOR_L_MASK (1 << SVM_SELECTOR_L_SHIFT)
198 239fbd86 ths
#define SVM_SELECTOR_DB_MASK (1 << SVM_SELECTOR_DB_SHIFT)
199 239fbd86 ths
#define SVM_SELECTOR_G_MASK (1 << SVM_SELECTOR_G_SHIFT)
200 239fbd86 ths
201 239fbd86 ths
#define SVM_SELECTOR_WRITE_MASK (1 << 1)
202 239fbd86 ths
#define SVM_SELECTOR_READ_MASK SVM_SELECTOR_WRITE_MASK
203 239fbd86 ths
#define SVM_SELECTOR_CODE_MASK (1 << 3)
204 239fbd86 ths
205 239fbd86 ths
#define INTERCEPT_CR0_MASK 1
206 239fbd86 ths
#define INTERCEPT_CR3_MASK (1 << 3)
207 239fbd86 ths
#define INTERCEPT_CR4_MASK (1 << 4)
208 239fbd86 ths
209 239fbd86 ths
#define INTERCEPT_DR0_MASK 1
210 239fbd86 ths
#define INTERCEPT_DR1_MASK (1 << 1)
211 239fbd86 ths
#define INTERCEPT_DR2_MASK (1 << 2)
212 239fbd86 ths
#define INTERCEPT_DR3_MASK (1 << 3)
213 239fbd86 ths
#define INTERCEPT_DR4_MASK (1 << 4)
214 239fbd86 ths
#define INTERCEPT_DR5_MASK (1 << 5)
215 239fbd86 ths
#define INTERCEPT_DR6_MASK (1 << 6)
216 239fbd86 ths
#define INTERCEPT_DR7_MASK (1 << 7)
217 239fbd86 ths
218 239fbd86 ths
#define SVM_EVTINJ_VEC_MASK 0xff
219 239fbd86 ths
220 239fbd86 ths
#define SVM_EVTINJ_TYPE_SHIFT 8
221 239fbd86 ths
#define SVM_EVTINJ_TYPE_MASK (7 << SVM_EVTINJ_TYPE_SHIFT)
222 239fbd86 ths
223 239fbd86 ths
#define SVM_EVTINJ_TYPE_INTR (0 << SVM_EVTINJ_TYPE_SHIFT)
224 239fbd86 ths
#define SVM_EVTINJ_TYPE_NMI (2 << SVM_EVTINJ_TYPE_SHIFT)
225 239fbd86 ths
#define SVM_EVTINJ_TYPE_EXEPT (3 << SVM_EVTINJ_TYPE_SHIFT)
226 239fbd86 ths
#define SVM_EVTINJ_TYPE_SOFT (4 << SVM_EVTINJ_TYPE_SHIFT)
227 239fbd86 ths
228 239fbd86 ths
#define SVM_EVTINJ_VALID (1 << 31)
229 239fbd86 ths
#define SVM_EVTINJ_VALID_ERR (1 << 11)
230 239fbd86 ths
231 239fbd86 ths
#define SVM_EXITINTINFO_VEC_MASK SVM_EVTINJ_VEC_MASK
232 239fbd86 ths
233 239fbd86 ths
#define        SVM_EXITINTINFO_TYPE_INTR SVM_EVTINJ_TYPE_INTR
234 239fbd86 ths
#define        SVM_EXITINTINFO_TYPE_NMI SVM_EVTINJ_TYPE_NMI
235 239fbd86 ths
#define        SVM_EXITINTINFO_TYPE_EXEPT SVM_EVTINJ_TYPE_EXEPT
236 239fbd86 ths
#define        SVM_EXITINTINFO_TYPE_SOFT SVM_EVTINJ_TYPE_SOFT
237 239fbd86 ths
238 239fbd86 ths
#define SVM_EXITINTINFO_VALID SVM_EVTINJ_VALID
239 239fbd86 ths
#define SVM_EXITINTINFO_VALID_ERR SVM_EVTINJ_VALID_ERR
240 239fbd86 ths
241 239fbd86 ths
#define        SVM_EXIT_READ_CR0         0x000
242 239fbd86 ths
#define        SVM_EXIT_READ_CR3         0x003
243 239fbd86 ths
#define        SVM_EXIT_READ_CR4         0x004
244 239fbd86 ths
#define        SVM_EXIT_READ_CR8         0x008
245 239fbd86 ths
#define        SVM_EXIT_WRITE_CR0         0x010
246 239fbd86 ths
#define        SVM_EXIT_WRITE_CR3         0x013
247 239fbd86 ths
#define        SVM_EXIT_WRITE_CR4         0x014
248 239fbd86 ths
#define        SVM_EXIT_WRITE_CR8         0x018
249 239fbd86 ths
#define        SVM_EXIT_READ_DR0         0x020
250 239fbd86 ths
#define        SVM_EXIT_READ_DR1         0x021
251 239fbd86 ths
#define        SVM_EXIT_READ_DR2         0x022
252 239fbd86 ths
#define        SVM_EXIT_READ_DR3         0x023
253 239fbd86 ths
#define        SVM_EXIT_READ_DR4         0x024
254 239fbd86 ths
#define        SVM_EXIT_READ_DR5         0x025
255 239fbd86 ths
#define        SVM_EXIT_READ_DR6         0x026
256 239fbd86 ths
#define        SVM_EXIT_READ_DR7         0x027
257 239fbd86 ths
#define        SVM_EXIT_WRITE_DR0         0x030
258 239fbd86 ths
#define        SVM_EXIT_WRITE_DR1         0x031
259 239fbd86 ths
#define        SVM_EXIT_WRITE_DR2         0x032
260 239fbd86 ths
#define        SVM_EXIT_WRITE_DR3         0x033
261 239fbd86 ths
#define        SVM_EXIT_WRITE_DR4         0x034
262 239fbd86 ths
#define        SVM_EXIT_WRITE_DR5         0x035
263 239fbd86 ths
#define        SVM_EXIT_WRITE_DR6         0x036
264 239fbd86 ths
#define        SVM_EXIT_WRITE_DR7         0x037
265 239fbd86 ths
#define SVM_EXIT_EXCP_BASE      0x040
266 239fbd86 ths
#define SVM_EXIT_INTR                0x060
267 239fbd86 ths
#define SVM_EXIT_NMI                0x061
268 239fbd86 ths
#define SVM_EXIT_SMI                0x062
269 239fbd86 ths
#define SVM_EXIT_INIT                0x063
270 239fbd86 ths
#define SVM_EXIT_VINTR                0x064
271 239fbd86 ths
#define SVM_EXIT_CR0_SEL_WRITE        0x065
272 239fbd86 ths
#define SVM_EXIT_IDTR_READ        0x066
273 239fbd86 ths
#define SVM_EXIT_GDTR_READ        0x067
274 239fbd86 ths
#define SVM_EXIT_LDTR_READ        0x068
275 239fbd86 ths
#define SVM_EXIT_TR_READ        0x069
276 239fbd86 ths
#define SVM_EXIT_IDTR_WRITE        0x06a
277 239fbd86 ths
#define SVM_EXIT_GDTR_WRITE        0x06b
278 239fbd86 ths
#define SVM_EXIT_LDTR_WRITE        0x06c
279 239fbd86 ths
#define SVM_EXIT_TR_WRITE        0x06d
280 239fbd86 ths
#define SVM_EXIT_RDTSC                0x06e
281 239fbd86 ths
#define SVM_EXIT_RDPMC                0x06f
282 239fbd86 ths
#define SVM_EXIT_PUSHF                0x070
283 239fbd86 ths
#define SVM_EXIT_POPF                0x071
284 239fbd86 ths
#define SVM_EXIT_CPUID                0x072
285 239fbd86 ths
#define SVM_EXIT_RSM                0x073
286 239fbd86 ths
#define SVM_EXIT_IRET                0x074
287 239fbd86 ths
#define SVM_EXIT_SWINT                0x075
288 239fbd86 ths
#define SVM_EXIT_INVD                0x076
289 239fbd86 ths
#define SVM_EXIT_PAUSE                0x077
290 239fbd86 ths
#define SVM_EXIT_HLT                0x078
291 239fbd86 ths
#define SVM_EXIT_INVLPG                0x079
292 239fbd86 ths
#define SVM_EXIT_INVLPGA        0x07a
293 239fbd86 ths
#define SVM_EXIT_IOIO                0x07b
294 239fbd86 ths
#define SVM_EXIT_MSR                0x07c
295 239fbd86 ths
#define SVM_EXIT_TASK_SWITCH        0x07d
296 239fbd86 ths
#define SVM_EXIT_FERR_FREEZE        0x07e
297 239fbd86 ths
#define SVM_EXIT_SHUTDOWN        0x07f
298 239fbd86 ths
#define SVM_EXIT_VMRUN                0x080
299 239fbd86 ths
#define SVM_EXIT_VMMCALL        0x081
300 239fbd86 ths
#define SVM_EXIT_VMLOAD                0x082
301 239fbd86 ths
#define SVM_EXIT_VMSAVE                0x083
302 239fbd86 ths
#define SVM_EXIT_STGI                0x084
303 239fbd86 ths
#define SVM_EXIT_CLGI                0x085
304 239fbd86 ths
#define SVM_EXIT_SKINIT                0x086
305 239fbd86 ths
#define SVM_EXIT_RDTSCP                0x087
306 239fbd86 ths
#define SVM_EXIT_ICEBP                0x088
307 239fbd86 ths
#define SVM_EXIT_WBINVD                0x089
308 239fbd86 ths
/* only included in documentation, maybe wrong */
309 239fbd86 ths
#define SVM_EXIT_MONITOR        0x08a
310 239fbd86 ths
#define SVM_EXIT_MWAIT                0x08b
311 239fbd86 ths
#define SVM_EXIT_NPF                  0x400
312 239fbd86 ths
313 239fbd86 ths
#define SVM_EXIT_ERR                -1
314 239fbd86 ths
315 239fbd86 ths
#define SVM_CR0_SELECTIVE_MASK (1 << 3 | 1) /* TS and MP */
316 239fbd86 ths
317 239fbd86 ths
#define SVM_VMLOAD ".byte 0x0f, 0x01, 0xda"
318 239fbd86 ths
#define SVM_VMRUN  ".byte 0x0f, 0x01, 0xd8"
319 239fbd86 ths
#define SVM_VMSAVE ".byte 0x0f, 0x01, 0xdb"
320 239fbd86 ths
#define SVM_CLGI   ".byte 0x0f, 0x01, 0xdd"
321 239fbd86 ths
#define SVM_STGI   ".byte 0x0f, 0x01, 0xdc"
322 239fbd86 ths
#define SVM_INVLPGA ".byte 0x0f, 0x01, 0xdf"
323 239fbd86 ths
324 239fbd86 ths
/* function references */
325 239fbd86 ths
326 239fbd86 ths
void helper_stgi();
327 239fbd86 ths
void vmexit(uint64_t exit_code, uint64_t exit_info_1);
328 239fbd86 ths
int svm_check_intercept_param(uint32_t type, uint64_t param);
329 239fbd86 ths
static inline int svm_check_intercept(unsigned int type) {
330 239fbd86 ths
    return svm_check_intercept_param(type, 0);
331 239fbd86 ths
}
332 239fbd86 ths
333 239fbd86 ths
334 239fbd86 ths
#define INTERCEPTED(mask) (env->intercept & mask)
335 239fbd86 ths
#define INTERCEPTEDw(var, mask) (env->intercept ## var & mask)
336 239fbd86 ths
#define INTERCEPTEDl(var, mask) (env->intercept ## var & mask)
337 239fbd86 ths
338 239fbd86 ths
#define SVM_LOAD_SEG(addr, seg_index, seg) \
339 239fbd86 ths
    cpu_x86_load_seg_cache(env, \
340 239fbd86 ths
                    R_##seg_index, \
341 239fbd86 ths
                    lduw_phys(addr + offsetof(struct vmcb, save.seg.selector)),\
342 239fbd86 ths
                    ldq_phys(addr + offsetof(struct vmcb, save.seg.base)),\
343 239fbd86 ths
                    ldl_phys(addr + offsetof(struct vmcb, save.seg.limit)),\
344 239fbd86 ths
                    vmcb2cpu_attrib(lduw_phys(addr + offsetof(struct vmcb, save.seg.attrib)), ldq_phys(addr + offsetof(struct vmcb, save.seg.base)), ldl_phys(addr + offsetof(struct vmcb, save.seg.limit))))
345 239fbd86 ths
346 239fbd86 ths
#define SVM_LOAD_SEG2(addr, seg_qemu, seg_vmcb) \
347 239fbd86 ths
    env->seg_qemu.selector  = lduw_phys(addr + offsetof(struct vmcb, save.seg_vmcb.selector)); \
348 239fbd86 ths
    env->seg_qemu.base      = ldq_phys(addr + offsetof(struct vmcb, save.seg_vmcb.base)); \
349 239fbd86 ths
    env->seg_qemu.limit     = ldl_phys(addr + offsetof(struct vmcb, save.seg_vmcb.limit)); \
350 239fbd86 ths
    env->seg_qemu.flags     = vmcb2cpu_attrib(lduw_phys(addr + offsetof(struct vmcb, save.seg_vmcb.attrib)), env->seg_qemu.base, env->seg_qemu.limit)
351 239fbd86 ths
352 239fbd86 ths
#define SVM_SAVE_SEG(addr, seg_qemu, seg_vmcb) \
353 239fbd86 ths
    stw_phys(addr + offsetof(struct vmcb, save.seg_vmcb.selector), env->seg_qemu.selector); \
354 239fbd86 ths
    stq_phys(addr + offsetof(struct vmcb, save.seg_vmcb.base), env->seg_qemu.base); \
355 239fbd86 ths
    stl_phys(addr + offsetof(struct vmcb, save.seg_vmcb.limit), env->seg_qemu.limit); \
356 239fbd86 ths
    stw_phys(addr + offsetof(struct vmcb, save.seg_vmcb.attrib), cpu2vmcb_attrib(env->seg_qemu.flags))
357 239fbd86 ths
358 239fbd86 ths
#endif