[PATCH] tcg: Add tcg_gen_mov_ptr

Richard Henderson posted 1 patch 1 year, 11 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20220531032103.406203-1-richard.henderson@linaro.org
Maintainers: Richard Henderson <richard.henderson@linaro.org>
include/tcg/tcg-op.h | 5 +++++
1 file changed, 5 insertions(+)
[PATCH] tcg: Add tcg_gen_mov_ptr
Posted by Richard Henderson 1 year, 11 months ago
Add an interface to perform moves between TCGv_ptr.

Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---

This will be required for target/arm FEAT_SME.

r~

---
 include/tcg/tcg-op.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/include/tcg/tcg-op.h b/include/tcg/tcg-op.h
index b09b8b4a05..209e168305 100644
--- a/include/tcg/tcg-op.h
+++ b/include/tcg/tcg-op.h
@@ -1288,6 +1288,11 @@ static inline void tcg_gen_addi_ptr(TCGv_ptr r, TCGv_ptr a, intptr_t b)
     glue(tcg_gen_addi_,PTR)((NAT)r, (NAT)a, b);
 }
 
+static inline void tcg_gen_mov_ptr(TCGv_ptr d, TCGv_ptr s)
+{
+    glue(tcg_gen_mov_,PTR)((NAT)d, (NAT)s);
+}
+
 static inline void tcg_gen_brcondi_ptr(TCGCond cond, TCGv_ptr a,
                                        intptr_t b, TCGLabel *label)
 {
-- 
2.34.1
Re: [PATCH] tcg: Add tcg_gen_mov_ptr
Posted by Matheus K. Ferst 1 year, 11 months ago
On 31/05/2022 00:21, Richard Henderson wrote:
> Add an interface to perform moves between TCGv_ptr.
> 
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
> 
> This will be required for target/arm FEAT_SME.
> 
> r~
> 
> ---
>   include/tcg/tcg-op.h | 5 +++++
>   1 file changed, 5 insertions(+)
> 
> diff --git a/include/tcg/tcg-op.h b/include/tcg/tcg-op.h
> index b09b8b4a05..209e168305 100644
> --- a/include/tcg/tcg-op.h
> +++ b/include/tcg/tcg-op.h
> @@ -1288,6 +1288,11 @@ static inline void tcg_gen_addi_ptr(TCGv_ptr r, TCGv_ptr a, intptr_t b)
>       glue(tcg_gen_addi_,PTR)((NAT)r, (NAT)a, b);
>   }
> 
> +static inline void tcg_gen_mov_ptr(TCGv_ptr d, TCGv_ptr s)
> +{
> +    glue(tcg_gen_mov_,PTR)((NAT)d, (NAT)s);
> +}
> +
>   static inline void tcg_gen_brcondi_ptr(TCGCond cond, TCGv_ptr a,
>                                          intptr_t b, TCGLabel *label)
>   {
> --
> 2.34.1
> 
> 

Reviewed-by: Matheus Ferst <matheus.ferst@eldorado.org.br>

-- 
Matheus K. Ferst
Instituto de Pesquisas ELDORADO <http://www.eldorado.org.br/>
Analista de Software
Aviso Legal - Disclaimer <https://www.eldorado.org.br/disclaimer.html>