diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-03-18 10:01:01 -0600 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-06-19 08:51:11 -0700 |
commit | 7319d83a735004ba24b439491a9d7727dac2ddbe (patch) | |
tree | 1ba9aa426fef6ea8d4618dfb3211303e0b3f6738 /target/i386 | |
parent | 3ccf6cd0e3e1dfd663814640b3b18b55715d7a75 (diff) | |
download | qemu-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/i386')
-rw-r--r-- | target/i386/ops_sse_header.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/target/i386/ops_sse_header.h b/target/i386/ops_sse_header.h index 6c0c849..e68af5c 100644 --- a/target/i386/ops_sse_header.h +++ b/target/i386/ops_sse_header.h @@ -30,9 +30,6 @@ #define dh_ctype_Reg Reg * #define dh_ctype_ZMMReg ZMMReg * #define dh_ctype_MMXReg MMXReg * -#define dh_is_signed_Reg dh_is_signed_ptr -#define dh_is_signed_ZMMReg dh_is_signed_ptr -#define dh_is_signed_MMXReg dh_is_signed_ptr DEF_HELPER_3(glue(psrlw, SUFFIX), void, env, Reg, Reg) DEF_HELPER_3(glue(psraw, SUFFIX), void, env, Reg, Reg) |