Searched refs:cpl (Results 1 – 11 of 11) sorted by relevance
/xen/xen/common/ |
A D | irq.c | 30 void no_action(int cpl, void *dev_id, struct cpu_user_regs *regs) in no_action() argument
|
/xen/xen/include/public/arch-x86/ |
A D | pmu.h | 82 uint8_t cpl; member
|
/xen/tools/golang/xenlight/ |
A D | xenlight.go | 425 func (cpl *CpuidPolicyList) fromC(ccpl *C.libxl_cpuid_policy_list) error { *cpl = ""; return nil } 427 func (cpl CpuidPolicyList) toC(ccpl *C.libxl_cpuid_policy_list) error { 428 if cpl == "" { 433 s := C.CString(string(cpl))
|
/xen/xen/include/xen/ |
A D | irq.h | 119 extern void no_action(int cpl, void *dev_id, struct cpu_user_regs *regs);
|
/xen/xen/include/asm-x86/hvm/svm/ |
A D | vmcb.h | 631 VMCB_ACCESSORS(cpl, seg)
|
/xen/xen/arch/x86/pv/ |
A D | emul-priv-op.c | 152 unsigned int cpl = guest_kernel_mode(v, regs) ? in iopl_ok() local 157 return IOPL(cpl) <= v->arch.pv.iopl; in iopl_ok()
|
/xen/xen/arch/x86/x86_emulate/ |
A D | x86_emulate.c | 1815 int cpl = get_cpl(ctxt, ops); in _mode_iopl() local 1816 if ( cpl == -1 ) in _mode_iopl() 2080 int cpl = get_cpl(ctxt, ops); in protmode_load_seg() local 2084 if ( cpl < 0 ) in protmode_load_seg() 2093 if ( mode_64bit() && (cpl != 3) && (cpl == sel) ) in protmode_load_seg() 2157 ? dpl > cpl in protmode_load_seg() 2159 : rpl > cpl || dpl != cpl ) in protmode_load_seg() 2168 sel = (sel ^ rpl) | cpl; in protmode_load_seg() 2174 if ( (dpl != cpl) || (dpl != rpl) ) in protmode_load_seg() 2195 ((dpl < cpl) || (dpl < rpl)) ) in protmode_load_seg() [all …]
|
/xen/xen/arch/x86/cpu/ |
A D | vpmu.c | 290 r->cpl = seg.dpl; in vpmu_do_interrupt()
|
/xen/xen/arch/x86/hvm/vmx/ |
A D | vmx.c | 905 unsigned int cpl; in _vmx_get_cpl() local 908 cpl = vmx_get_cpl(); in _vmx_get_cpl() 911 return cpl; in _vmx_get_cpl()
|
/xen/xen/arch/x86/mm/shadow/ |
A D | multi.c | 2788 unsigned int cpl; in sh_page_fault() local 2940 cpl = is_pv_vcpu(v) ? (regs->ss & 3) : hvm_get_cpl(v); in sh_page_fault() 2998 if ( !(error_code & (PFEC_insn_fetch|PFEC_user_mode)) && cpl == 3 ) in sh_page_fault()
|
/xen/xen/arch/x86/hvm/ |
A D | hvm.c | 2786 enum x86_segment seg, uint16_t sel, unsigned int cpl, unsigned int eflags) in task_switch_load_seg() argument 2859 if ( (dpl != cpl) || (dpl != rpl) ) in task_switch_load_seg() 2877 && ((dpl < cpl) || (dpl < rpl)) ) in task_switch_load_seg()
|
Completed in 53 milliseconds