mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-08 18:23:57 -06:00
tcg: Introduce tcg_target_call_oarg_reg
Replace the flat array tcg_target_call_oarg_regs[] with a function call including the TCGCallReturnKind. Extend the set of registers for ARM to r0-r3 to match the ABI: https://github.com/ARM-software/abi-aa/blob/main/aapcs32/aapcs32.rst#result-return 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>
This commit is contained in:
parent
313bdea84d
commit
5e3d0c199f
11 changed files with 72 additions and 46 deletions
|
@ -109,12 +109,16 @@ static const int tcg_target_call_iarg_regs[] = {
|
|||
#endif
|
||||
};
|
||||
|
||||
static const int tcg_target_call_oarg_regs[] = {
|
||||
TCG_REG_EAX,
|
||||
#if TCG_TARGET_REG_BITS == 32
|
||||
TCG_REG_EDX
|
||||
#endif
|
||||
};
|
||||
static TCGReg tcg_target_call_oarg_reg(TCGCallReturnKind kind, int slot)
|
||||
{
|
||||
switch (kind) {
|
||||
case TCG_CALL_RET_NORMAL:
|
||||
tcg_debug_assert(slot >= 0 && slot <= 1);
|
||||
return slot ? TCG_REG_EDX : TCG_REG_EAX;
|
||||
default:
|
||||
g_assert_not_reached();
|
||||
}
|
||||
}
|
||||
|
||||
/* Constants we accept. */
|
||||
#define TCG_CT_CONST_S32 0x100
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue