]> www.infradead.org Git - users/dwmw2/qemu.git/commitdiff
tcg: Add tcg_debug_assert
authorRichard Henderson <rth@twiddle.net>
Sat, 22 Sep 2012 00:18:14 +0000 (17:18 -0700)
committerAurelien Jarno <aurelien@aurel32.net>
Tue, 25 Sep 2012 22:31:16 +0000 (00:31 +0200)
Like the C assert macro, except only enabled for CONFIG_DEBUG_TCG,
and without having to set _NDEBUG and disable all other asserts at
the same time.

The use of __builtin_unreachable (when available) gives the compiler
the same information, which may (or may not) help it optimize better.

Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Aurelien Jarno <aurelien@aurel32.net>
tcg/tcg.h

index 48a56f0b1554df0c4400af763ff4b0e85075990b..4501c1520f34ee2379b1fe96a114c89e2c336d36 100644 (file)
--- a/tcg/tcg.h
+++ b/tcg/tcg.h
@@ -530,6 +530,15 @@ do {\
     abort();\
 } while (0)
 
+#ifdef CONFIG_DEBUG_TCG
+# define tcg_debug_assert(X) do { assert(X); } while (0)
+#elif QEMU_GNUC_PREREQ(4, 5)
+# define tcg_debug_assert(X) \
+    do { if (!(X)) { __builtin_unreachable(); } } while (0)
+#else
+# define tcg_debug_assert(X) do { (void)(X); } while (0)
+#endif
+
 void tcg_add_target_add_op_defs(const TCGTargetOpDef *tdefs);
 
 #if TCG_TARGET_REG_BITS == 32