From: Jan Beulich Date: Tue, 20 Nov 2018 14:02:18 +0000 (+0100) Subject: x86emul: introduce EXPECT() X-Git-Tag: archive/raspbian/4.14.0+80-gd101b417b7-1+rpi1^2~63^2~2890 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=cb3b3438c7c73657f3e025f8af8b8dca63fb79d3;p=xen.git x86emul: introduce EXPECT() This abstracts away the debug/release coverage using both ASSERT_UNREACHABLE() and a return value of X86EMUL_UNHANDLEABLE. Signed-off-by: Jan Beulich Reviewed-by: Andrew Cooper --- diff --git a/xen/arch/x86/x86_emulate/x86_emulate.c b/xen/arch/x86/x86_emulate/x86_emulate.c index e69dfdd983..ffd8632479 100644 --- a/xen/arch/x86/x86_emulate/x86_emulate.c +++ b/xen/arch/x86/x86_emulate/x86_emulate.c @@ -1017,6 +1017,15 @@ do { \ if ( rc ) goto done; \ } while (0) +#define EXPECT(p) \ +do { \ + if ( unlikely(!(p)) ) \ + { \ + ASSERT_UNREACHABLE(); \ + goto unhandleable; \ + } \ +} while (0) + static inline int mkec(uint8_t e, int32_t ec, ...) { return (e < 32 && ((1u << e) & EXC_HAS_EC)) ? ec : X86_EVENT_NO_EC; @@ -8837,12 +8846,7 @@ x86_emulate( dst.type = OP_NONE; break; default: - if ( (d & DstMask) != DstMem ) - { - ASSERT_UNREACHABLE(); - rc = X86EMUL_UNHANDLEABLE; - goto done; - } + EXPECT((d & DstMask) == DstMem); break; } if ( (d & DstMask) == DstMem ) @@ -8974,9 +8978,11 @@ x86_emulate( stub.func); generate_exception_if(stub_exn.info.fields.trapnr == EXC_UD, EXC_UD); domain_crash(current->domain); +#endif + + unhandleable: rc = X86EMUL_UNHANDLEABLE; goto done; -#endif } #undef op_bytes