summaryrefslogtreecommitdiffstats
path: root/target/hppa/helper.h
diff options
context:
space:
mode:
authorRichard Henderson2021-03-18 17:01:01 +0100
committerRichard Henderson2021-06-19 17:51:11 +0200
commit7319d83a735004ba24b439491a9d7727dac2ddbe (patch)
tree1ba9aa426fef6ea8d4618dfb3211303e0b3f6738 /target/hppa/helper.h
parentMerge remote-tracking branch 'remotes/kraxel/tags/audio-20210617-pull-request... (diff)
downloadqemu-7319d83a735004ba24b439491a9d7727dac2ddbe.tar.gz
qemu-7319d83a735004ba24b439491a9d7727dac2ddbe.tar.xz
qemu-7319d83a735004ba24b439491a9d7727dac2ddbe.zip
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/hppa/helper.h')
-rw-r--r--target/hppa/helper.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/target/hppa/helper.h b/target/hppa/helper.h
index 2d483aab58..0a629ffa7c 100644
--- a/target/hppa/helper.h
+++ b/target/hppa/helper.h
@@ -1,12 +1,9 @@
#if TARGET_REGISTER_BITS == 64
# define dh_alias_tr i64
-# define dh_is_64bit_tr 1
#else
# define dh_alias_tr i32
-# define dh_is_64bit_tr 0
#endif
#define dh_ctype_tr target_ureg
-#define dh_is_signed_tr 0
DEF_HELPER_2(excp, noreturn, env, int)
DEF_HELPER_FLAGS_2(tsv, TCG_CALL_NO_WG, void, env, tr)