diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2022-10-20 07:54:48 +1000 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2023-02-04 06:19:42 -1000 |
commit | 5427a9a76041029730775292995e87c3edd06515 (patch) | |
tree | 3e5ba4728bc90e56e19d72221aaac0f67e308339 /tcg/s390x | |
parent | e9709e17ac88f16c60004c4160c9a131d36ed564 (diff) | |
download | qemu-5427a9a76041029730775292995e87c3edd06515.zip qemu-5427a9a76041029730775292995e87c3edd06515.tar.gz qemu-5427a9a76041029730775292995e87c3edd06515.tar.bz2 |
tcg: Add TCG_TARGET_CALL_{RET,ARG}_I128
Fill in the parameters for the host ABI for Int128 for
those backends which require no extra modification.
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Daniel Henrique Barboza <danielhb413@gmail.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'tcg/s390x')
-rw-r--r-- | tcg/s390x/tcg-target.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tcg/s390x/tcg-target.h b/tcg/s390x/tcg-target.h index e597e47..a05b473 100644 --- a/tcg/s390x/tcg-target.h +++ b/tcg/s390x/tcg-target.h @@ -169,6 +169,8 @@ extern uint64_t s390_facilities[3]; #define TCG_TARGET_CALL_STACK_OFFSET 160 #define TCG_TARGET_CALL_ARG_I32 TCG_CALL_ARG_EXTEND #define TCG_TARGET_CALL_ARG_I64 TCG_CALL_ARG_NORMAL +#define TCG_TARGET_CALL_ARG_I128 TCG_CALL_ARG_BY_REF +#define TCG_TARGET_CALL_RET_I128 TCG_CALL_RET_BY_REF #define TCG_TARGET_HAS_MEMORY_BSWAP 1 |