Lines Matching refs:fault
3169 bool fault; in invvpid_test_gp() local
3171 fault = test_for_exception(GP_VECTOR, &ds_invvpid, in invvpid_test_gp()
3173 report(fault, "INVVPID with non-canonical DS operand raises #GP"); in invvpid_test_gp()
3178 bool fault; in invvpid_test_ss() local
3180 fault = test_for_exception(SS_VECTOR, &ss_invvpid, in invvpid_test_ss()
3182 report(fault, "INVVPID with non-canonical SS operand raises #SS"); in invvpid_test_ss()
3188 bool fault; in invvpid_test_pf() local
3190 fault = test_for_exception(PF_VECTOR, &ds_invvpid, vpage); in invvpid_test_pf()
3191 report(fault, "INVVPID with unmapped operand raises #PF"); in invvpid_test_pf()
3220 bool fault; in invvpid_test_compatibility_mode() local
3222 fault = test_for_exception(UD_VECTOR, &try_compat_invvpid, NULL); in invvpid_test_compatibility_mode()
3223 report(fault, "Compatibility mode INVVPID raises #UD"); in invvpid_test_compatibility_mode()
3228 bool fault; in invvpid_test_not_in_vmx_operation() local
3231 fault = test_for_exception(UD_VECTOR, &ds_invvpid, NULL); in invvpid_test_not_in_vmx_operation()
3232 report(fault, "INVVPID outside of VMX operation raises #UD"); in invvpid_test_not_in_vmx_operation()
3242 bool fault; in invvpid_test_lam() local
3263 fault = test_for_exception(GP_VECTOR, ds_invvpid, operand); in invvpid_test_lam()
3264 report(!fault, "Expected INVVPID with tagged operand when LAM is enabled to succeed"); in invvpid_test_lam()