aboutsummaryrefslogtreecommitdiff
path: root/target/m68k/helper.h
diff options
context:
space:
mode:
authorRichard Henderson <richard.henderson@linaro.org>2021-03-18 10:01:01 -0600
committerRichard Henderson <richard.henderson@linaro.org>2021-06-19 08:51:11 -0700
commit7319d83a735004ba24b439491a9d7727dac2ddbe (patch)
tree1ba9aa426fef6ea8d4618dfb3211303e0b3f6738 /target/m68k/helper.h
parent3ccf6cd0e3e1dfd663814640b3b18b55715d7a75 (diff)
downloadqemu-7319d83a735004ba24b439491a9d7727dac2ddbe.zip
qemu-7319d83a735004ba24b439491a9d7727dac2ddbe.tar.gz
qemu-7319d83a735004ba24b439491a9d7727dac2ddbe.tar.bz2
tcg: Combine dh_is_64bit and dh_is_signed to dh_typecode
We will shortly be interested in distinguishing pointers from integers in the helper's declaration, as well as a true void return. We currently have two parallel 1 bit fields; merge them and expand to a 3 bit field. Our current maximum is 7 helper arguments, plus the return makes 8 * 3 = 24 bits used within the uint32_t typemask. Tested-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'target/m68k/helper.h')
-rw-r--r--target/m68k/helper.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/target/m68k/helper.h b/target/m68k/helper.h
index 7780849..9842eea 100644
--- a/target/m68k/helper.h
+++ b/target/m68k/helper.h
@@ -17,7 +17,6 @@ DEF_HELPER_4(cas2l_parallel, void, env, i32, i32, i32)
#define dh_alias_fp ptr
#define dh_ctype_fp FPReg *
-#define dh_is_signed_fp dh_is_signed_ptr
DEF_HELPER_3(exts32, void, env, fp, s32)
DEF_HELPER_3(extf32, void, env, fp, f32)