@@ -1342,7 +1342,7 @@ static void tcg_out_qemu_ld_slow_path(TCGContext *s, TCGLabelQemuLdst *l)
}
break;
default:
- tcg_abort();
+ tcg_abort_dbg("bad opc:%x", opc);
}
/* Jump to the code corresponding to next IR of qemu_st */
@@ -1519,7 +1519,7 @@ static void tcg_out_qemu_ld_direct(TCGContext *s, TCGReg datalo, TCGReg datahi,
}
break;
default:
- tcg_abort();
+ tcg_abort_dbg("bad memop=%x", memop);
}
}
@@ -407,7 +407,7 @@ static bool do_constant_folding_cond_eq(TCGCond c)
case TCG_COND_EQ:
return 1;
default:
- tcg_abort();
+ tcg_abort_dbg("bad condition:%d", c);
}
}
@@ -657,12 +657,15 @@ typedef struct TCGTargetOpDef {
const char *args_ct_str[TCG_MAX_OP_ARGS];
} TCGTargetOpDef;
-#define tcg_abort() \
+#define tcg_abort_dbg(fmt, ...)\
do {\
- fprintf(stderr, "%s:%d: tcg fatal error\n", __FILE__, __LINE__);\
+ fprintf(stderr, "%s:%d: tcg fatal error " fmt "\n",\
+ __FILE__, __LINE__, ## __VA_ARGS__);\
abort();\
} while (0)
+#define tcg_abort() tcg_abort_dbg("")
+
#ifdef CONFIG_DEBUG_TCG
# define tcg_debug_assert(X) do { assert(X); } while (0)
#elif QEMU_GNUC_PREREQ(4, 5)
From: Alex Bennée <alex.bennee@linaro.org> There are times the tcg aborts with a fatal but terse error which isn't overly helpful. This adds an alternative macro that can be used to show a little more helper information when an abort occurs.