Home
last modified time | relevance | path

Searched refs:cpl (Results 1 – 10 of 10) sorted by relevance

/openbmc/qemu/target/i386/tcg/
H A Dseg_helper.c255 int cpl, uintptr_t retaddr) in tss_load_seg() argument
281 if (dpl != cpl || dpl != rpl) { in tss_load_seg()
291 if (dpl < cpl || dpl < rpl) { in tss_load_seg()
577 int cpl = new_segs[R_CS] & 3; in switch_tss_ra() local
578 tss_load_seg(env, R_CS, new_segs[R_CS], cpl, retaddr); in switch_tss_ra()
579 tss_load_seg(env, R_SS, new_segs[R_SS], cpl, retaddr); in switch_tss_ra()
580 tss_load_seg(env, R_ES, new_segs[R_ES], cpl, retaddr); in switch_tss_ra()
581 tss_load_seg(env, R_DS, new_segs[R_DS], cpl, retaddr); in switch_tss_ra()
582 tss_load_seg(env, R_FS, new_segs[R_FS], cpl, retaddr); in switch_tss_ra()
583 tss_load_seg(env, R_GS, new_segs[R_GS], cpl, retaddr); in switch_tss_ra()
[all …]
H A Dtranslate.c102 uint8_t cpl; /* code priv level */ member
185 #define CPL(S) ((S)->cpl)
3755 int cpl = (flags >> HF_CPL_SHIFT) & 3; in i386_tr_init_disas_context() local
3762 dc->cpl = cpl; in i386_tr_init_disas_context()
3768 g_assert(CPL(dc) == cpl); in i386_tr_init_disas_context()
/openbmc/qemu/target/i386/tcg/user/
H A Dseg_helper.c50 int dpl, cpl, shift; in do_interrupt_user() local
63 cpl = env->hflags & HF_CPL_MASK; in do_interrupt_user()
65 if (dpl < cpl) { in do_interrupt_user()
/openbmc/qemu/target/i386/kvm/
H A Dtrace-events11 …ypercall(int cpu, uint8_t cpl, uint64_t input, uint64_t a0, uint64_t a1, uint64_t a2, uint64_t ret…
H A Dxen-emu.c1713 if (exit->u.hcall.cpl > 0) { in do_kvm_xen_handle_exit()
1791 trace_kvm_xen_hypercall(CPU(cpu)->cpu_index, exit->u.hcall.cpl, in kvm_xen_handle_exit()
/openbmc/qemu/target/i386/
H A Dsvm.h203 uint8_t cpl; member
H A Dsev.h79 uint8_t cpl; member
H A Dcpu.h2484 int cpl = (flags >> DESC_DPL_SHIFT) & 3; in cpu_x86_load_seg_cache() local
2488 env->hflags = (env->hflags & ~HF_CPL_MASK) | cpl; in cpu_x86_load_seg_cache()
/openbmc/qemu/linux-headers/linux/
H A Dkvm.h130 __u32 cpl; member
/openbmc/qemu/target/i386/tcg/system/
H A Dsvm_helper.c817 x86_stb_phys(cs, env->vm_vmcb + offsetof(struct vmcb, save.cpl), in do_vmexit()