qemu-arm
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [RFC v3 09/10] target/arm: Add support for native library calls


From: Alex Bennée
Subject: Re: [RFC v3 09/10] target/arm: Add support for native library calls
Date: Mon, 03 Jul 2023 13:13:17 +0100
User-agent: mu4e 1.11.8; emacs 29.0.92

Yeqi Fu <fufuyqqqqqq@gmail.com> writes:

> Upon encountering specialized instructions reserved for native calls,
> store the function id and argument types, then invoke helper.
>
> Signed-off-by: Yeqi Fu <fufuyqqqqqq@gmail.com>
> ---
>  target/arm/tcg/translate-a64.c | 27 ++++++++++++++++++++++++++-
>  target/arm/tcg/translate.c     | 25 +++++++++++++++++++++++--
>  target/arm/tcg/translate.h     |  6 ++++++
>  3 files changed, 55 insertions(+), 3 deletions(-)
>
> diff --git a/target/arm/tcg/translate-a64.c b/target/arm/tcg/translate-a64.c
> index 741a608739..24a664b928 100644
> --- a/target/arm/tcg/translate-a64.c
> +++ b/target/arm/tcg/translate-a64.c
<snip>
> --- a/target/arm/tcg/translate.c
> +++ b/target/arm/tcg/translate.c
> @@ -34,7 +34,7 @@
>  #include "exec/helper-gen.h"
>  #include "exec/log.h"
>  #include "cpregs.h"
> -
> +#include "native/native-defs.h"
>  
>  #define ENABLE_ARCH_4T    arm_dc_feature(s, ARM_FEATURE_V4T)
>  #define ENABLE_ARCH_5     arm_dc_feature(s, ARM_FEATURE_V5)
> @@ -58,6 +58,7 @@ TCGv_i32 cpu_CF, cpu_NF, cpu_VF, cpu_ZF;
>  TCGv_i64 cpu_exclusive_addr;
>  TCGv_i64 cpu_exclusive_val;
>  
> +

stray whitespace which will often make re-basing patches a pain.

>  #include "exec/gen-icount.h"
>  
>  static const char * const regnames[] =
> @@ -1147,12 +1148,32 @@ static inline void gen_hlt(DisasContext *s, int imm)
>       * semihosting, to provide some semblance of security
>       * (and for consistency with our 32-bit semihosting).
>       */
> +    if (native_call_enabled() && (!s->native_call_status)) {
> +        s->native_call_status = true;
> +        s->native_call_id = imm;
> +        return;
> +    } else if (native_call_enabled() && (s->native_call_status)) {
> +        TCGv_i32 arg1 = load_reg(s, 0);
> +        TCGv_i32 arg2 = load_reg(s, 1);
> +        TCGv_i32 arg3 = load_reg(s, 2);
> +
> +        TCGv_i32 abi_map = tcg_constant_i32(imm);
> +        TCGv_i32 func_id = tcg_constant_i32(s->native_call_id);
> +        TCGv_i32 res = tcg_temp_new_i32();
> +        TCGv_i32 mmu_idx = tcg_constant_i32(MMU_USER_IDX);
> +        gen_helper_native_call_i32(res, cpu_env, arg1, arg2, arg3,
> +                                    abi_map, func_id, mmu_idx);
> +
> +        store_reg(s, 0, res);
> +        s->native_call_status = false;
> +        s->native_call_id = 0;
> +        return;
> +    }
>      if (semihosting_enabled(s->current_el == 0) &&
>          (imm == (s->thumb ? 0x3c : 0xf000))) {
>          gen_exception_internal_insn(s, EXCP_SEMIHOST);
>          return;
>      }
> -

also here.

-- 
Alex Bennée
Virtualisation Tech Lead @ Linaro



reply via email to

[Prev in Thread] Current Thread [Next in Thread]