Symbol: SVM_EXIT_EXCP_BASE
arch/x86/coco/sev/vc-handle.c
824
case SVM_EXIT_EXCP_BASE + X86_TRAP_AC:
arch/x86/coco/sev/vc-handle.c
950
return error_code == SVM_EXIT_EXCP_BASE + X86_TRAP_DB;
arch/x86/coco/sev/vc-shared.c
101
return !(exit_code >= SVM_EXIT_EXCP_BASE &&
arch/x86/include/uapi/asm/svm.h
166
{ SVM_EXIT_EXCP_BASE + DE_VECTOR, "DE excp" }, \
arch/x86/include/uapi/asm/svm.h
167
{ SVM_EXIT_EXCP_BASE + DB_VECTOR, "DB excp" }, \
arch/x86/include/uapi/asm/svm.h
168
{ SVM_EXIT_EXCP_BASE + BP_VECTOR, "BP excp" }, \
arch/x86/include/uapi/asm/svm.h
169
{ SVM_EXIT_EXCP_BASE + OF_VECTOR, "OF excp" }, \
arch/x86/include/uapi/asm/svm.h
170
{ SVM_EXIT_EXCP_BASE + BR_VECTOR, "BR excp" }, \
arch/x86/include/uapi/asm/svm.h
171
{ SVM_EXIT_EXCP_BASE + UD_VECTOR, "UD excp" }, \
arch/x86/include/uapi/asm/svm.h
172
{ SVM_EXIT_EXCP_BASE + NM_VECTOR, "NM excp" }, \
arch/x86/include/uapi/asm/svm.h
173
{ SVM_EXIT_EXCP_BASE + DF_VECTOR, "DF excp" }, \
arch/x86/include/uapi/asm/svm.h
174
{ SVM_EXIT_EXCP_BASE + TS_VECTOR, "TS excp" }, \
arch/x86/include/uapi/asm/svm.h
175
{ SVM_EXIT_EXCP_BASE + NP_VECTOR, "NP excp" }, \
arch/x86/include/uapi/asm/svm.h
176
{ SVM_EXIT_EXCP_BASE + SS_VECTOR, "SS excp" }, \
arch/x86/include/uapi/asm/svm.h
177
{ SVM_EXIT_EXCP_BASE + GP_VECTOR, "GP excp" }, \
arch/x86/include/uapi/asm/svm.h
178
{ SVM_EXIT_EXCP_BASE + PF_VECTOR, "PF excp" }, \
arch/x86/include/uapi/asm/svm.h
179
{ SVM_EXIT_EXCP_BASE + MF_VECTOR, "MF excp" }, \
arch/x86/include/uapi/asm/svm.h
180
{ SVM_EXIT_EXCP_BASE + AC_VECTOR, "AC excp" }, \
arch/x86/include/uapi/asm/svm.h
181
{ SVM_EXIT_EXCP_BASE + MC_VECTOR, "MC excp" }, \
arch/x86/include/uapi/asm/svm.h
182
{ SVM_EXIT_EXCP_BASE + XM_VECTOR, "XF excp" }, \
arch/x86/kvm/svm/nested.c
1494
case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f:
arch/x86/kvm/svm/nested.c
1552
vmcb->control.exit_code = SVM_EXIT_EXCP_BASE + ex->vector;
arch/x86/kvm/svm/nested.c
1671
case SVM_EXIT_EXCP_BASE ... SVM_EXIT_EXCP_BASE + 0x1f: {
arch/x86/kvm/svm/nested.c
1672
u32 excp_bits = 1 << (exit_code - SVM_EXIT_EXCP_BASE);
arch/x86/kvm/svm/nested.c
1677
else if (exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR &&
arch/x86/kvm/svm/svm.c
3258
[SVM_EXIT_EXCP_BASE + DB_VECTOR] = db_interception,
arch/x86/kvm/svm/svm.c
3259
[SVM_EXIT_EXCP_BASE + BP_VECTOR] = bp_interception,
arch/x86/kvm/svm/svm.c
3260
[SVM_EXIT_EXCP_BASE + UD_VECTOR] = ud_interception,
arch/x86/kvm/svm/svm.c
3261
[SVM_EXIT_EXCP_BASE + PF_VECTOR] = pf_interception,
arch/x86/kvm/svm/svm.c
3262
[SVM_EXIT_EXCP_BASE + MC_VECTOR] = mc_interception,
arch/x86/kvm/svm/svm.c
3263
[SVM_EXIT_EXCP_BASE + AC_VECTOR] = ac_interception,
arch/x86/kvm/svm/svm.c
3264
[SVM_EXIT_EXCP_BASE + GP_VECTOR] = gp_interception,
arch/x86/kvm/svm/svm.c
4426
if (svm->vmcb->control.exit_code == SVM_EXIT_EXCP_BASE + PF_VECTOR)
arch/x86/kvm/svm/svm.c
4738
case SVM_EXIT_EXCP_BASE + MC_VECTOR:
tools/arch/x86/include/uapi/asm/svm.h
166
{ SVM_EXIT_EXCP_BASE + DE_VECTOR, "DE excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
167
{ SVM_EXIT_EXCP_BASE + DB_VECTOR, "DB excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
168
{ SVM_EXIT_EXCP_BASE + BP_VECTOR, "BP excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
169
{ SVM_EXIT_EXCP_BASE + OF_VECTOR, "OF excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
170
{ SVM_EXIT_EXCP_BASE + BR_VECTOR, "BR excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
171
{ SVM_EXIT_EXCP_BASE + UD_VECTOR, "UD excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
172
{ SVM_EXIT_EXCP_BASE + NM_VECTOR, "NM excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
173
{ SVM_EXIT_EXCP_BASE + DF_VECTOR, "DF excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
174
{ SVM_EXIT_EXCP_BASE + TS_VECTOR, "TS excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
175
{ SVM_EXIT_EXCP_BASE + NP_VECTOR, "NP excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
176
{ SVM_EXIT_EXCP_BASE + SS_VECTOR, "SS excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
177
{ SVM_EXIT_EXCP_BASE + GP_VECTOR, "GP excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
178
{ SVM_EXIT_EXCP_BASE + PF_VECTOR, "PF excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
179
{ SVM_EXIT_EXCP_BASE + MF_VECTOR, "MF excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
180
{ SVM_EXIT_EXCP_BASE + AC_VECTOR, "AC excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
181
{ SVM_EXIT_EXCP_BASE + MC_VECTOR, "MC excp" }, \
tools/arch/x86/include/uapi/asm/svm.h
182
{ SVM_EXIT_EXCP_BASE + XM_VECTOR, "XF excp" }, \
tools/testing/selftests/kvm/x86/nested_exceptions_test.c
86
GUEST_ASSERT_EQ(ctrl->exit_code, (SVM_EXIT_EXCP_BASE + vector));