#ifndef __PV_EMULATE_H__ #define __PV_EMULATE_H__ #include #include #include int pv_emul_read_descriptor(unsigned int sel, const struct vcpu *v, unsigned long *base, unsigned long *limit, unsigned int *ar, bool insn_fetch); void pv_emul_instruction_done(struct cpu_user_regs *regs, unsigned long rip); static inline int pv_emul_is_mem_write(const struct x86_emulate_state *state, struct x86_emulate_ctxt *ctxt) { return x86_insn_is_mem_write(state, ctxt) ? X86EMUL_OKAY : X86EMUL_UNHANDLEABLE; } /* Return a pointer to the GDT/LDT descriptor referenced by sel. */ static inline const seg_desc_t *gdt_ldt_desc_ptr(unsigned int sel) { const struct vcpu *curr = current; const seg_desc_t *tbl = (void *) ((sel & X86_XEC_TI) ? LDT_VIRT_START(curr) : GDT_VIRT_START(curr)); return &tbl[sel >> 3]; } #endif /* __PV_EMULATE_H__ */