diff mbox series

[18/22] plugins: Split out common cb expanders

Message ID 20240316015720.3661236-19-richard.henderson@linaro.org
State Superseded
Headers show
Series plugins: Rewrite plugin code generation | expand

Commit Message

Richard Henderson March 16, 2024, 1:57 a.m. UTC
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
 accel/tcg/plugin-gen.c | 84 +++++++++++++++++++++---------------------
 1 file changed, 41 insertions(+), 43 deletions(-)

Comments

Pierrick Bouvier March 19, 2024, 1:29 p.m. UTC | #1
On 3/16/24 05:57, Richard Henderson wrote:
> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
> ---
>   accel/tcg/plugin-gen.c | 84 +++++++++++++++++++++---------------------
>   1 file changed, 41 insertions(+), 43 deletions(-)
> 
> diff --git a/accel/tcg/plugin-gen.c b/accel/tcg/plugin-gen.c
> index 10d917abd3..28414c4ff1 100644
> --- a/accel/tcg/plugin-gen.c
> +++ b/accel/tcg/plugin-gen.c
> @@ -194,6 +194,37 @@ static void gen_mem_cb(struct qemu_plugin_dyn_cb *cb,
>       tcg_temp_free_i32(cpu_index);
>   }
>   
> +static void inject_cb(struct qemu_plugin_dyn_cb *cb)
> +
> +{
> +    switch (cb->type) {
> +    case PLUGIN_CB_REGULAR:
> +        gen_udata_cb(cb);
> +        break;
> +    case PLUGIN_CB_INLINE:
> +        gen_inline_cb(cb);
> +        break;
> +    default:
> +        g_assert_not_reached();
> +    }
> +}
> +
> +static void inject_mem_cb(struct qemu_plugin_dyn_cb *cb,
> +                          enum qemu_plugin_mem_rw rw,
> +                          qemu_plugin_meminfo_t meminfo, TCGv_i64 addr)
> +{
> +    if (cb->rw & rw) {
> +        switch (cb->type) {
> +        case PLUGIN_CB_MEM_REGULAR:
> +            gen_mem_cb(cb, meminfo, addr);
> +            break;
> +        default:
> +            inject_cb(cb);
> +            break;
> +        }
> +    }
> +}
> +
>   static void plugin_gen_inject(struct qemu_plugin_tb *plugin_tb)
>   {
>       TCGOp *op, *next;
> @@ -255,19 +286,8 @@ static void plugin_gen_inject(struct qemu_plugin_tb *plugin_tb)
>   
>                   cbs = plugin_tb->cbs;
>                   for (i = 0, n = (cbs ? cbs->len : 0); i < n; i++) {
> -                    struct qemu_plugin_dyn_cb *cb =
> -                        &g_array_index(cbs, struct qemu_plugin_dyn_cb, i);
> -
> -                    switch (cb->type) {
> -                    case PLUGIN_CB_REGULAR:
> -                        gen_udata_cb(cb);
> -                        break;
> -                    case PLUGIN_CB_INLINE:
> -                        gen_inline_cb(cb);
> -                        break;
> -                    default:
> -                        g_assert_not_reached();
> -                    }
> +                    inject_cb(
> +                        &g_array_index(cbs, struct qemu_plugin_dyn_cb, i));
>                   }
>                   break;
>   
> @@ -278,19 +298,8 @@ static void plugin_gen_inject(struct qemu_plugin_tb *plugin_tb)
>   
>                   cbs = insn->insn_cbs;
>                   for (i = 0, n = (cbs ? cbs->len : 0); i < n; i++) {
> -                    struct qemu_plugin_dyn_cb *cb =
> -                        &g_array_index(cbs, struct qemu_plugin_dyn_cb, i);
> -
> -                    switch (cb->type) {
> -                    case PLUGIN_CB_REGULAR:
> -                        gen_udata_cb(cb);
> -                        break;
> -                    case PLUGIN_CB_INLINE:
> -                        gen_inline_cb(cb);
> -                        break;
> -                    default:
> -                        g_assert_not_reached();
> -                    }
> +                    inject_cb(
> +                        &g_array_index(cbs, struct qemu_plugin_dyn_cb, i));
>                   }
>                   break;
>   
> @@ -307,33 +316,22 @@ static void plugin_gen_inject(struct qemu_plugin_tb *plugin_tb)
>           {
>               TCGv_i64 addr = temp_tcgv_i64(arg_temp(op->args[0]));
>               qemu_plugin_meminfo_t meminfo = op->args[1];
> +            enum qemu_plugin_mem_rw rw =
> +                (qemu_plugin_mem_is_store(meminfo)
> +                 ? QEMU_PLUGIN_MEM_W : QEMU_PLUGIN_MEM_R);
>               struct qemu_plugin_insn *insn;
>               const GArray *cbs;
> -            int i, n, rw;
> +            int i, n;
>   
>               assert(insn_idx >= 0);
>               insn = g_ptr_array_index(plugin_tb->insns, insn_idx);
> -            rw = qemu_plugin_mem_is_store(meminfo) ? 2 : 1;
>   
>               tcg_ctx->emit_before_op = op;
>   
>               cbs = insn->mem_cbs;
>               for (i = 0, n = (cbs ? cbs->len : 0); i < n; i++) {
> -                struct qemu_plugin_dyn_cb *cb =
> -                    &g_array_index(cbs, struct qemu_plugin_dyn_cb, i);
> -
> -                if (cb->rw & rw) {
> -                    switch (cb->type) {
> -                    case PLUGIN_CB_MEM_REGULAR:
> -                        gen_mem_cb(cb, meminfo, addr);
> -                        break;
> -                    case PLUGIN_CB_INLINE:
> -                        gen_inline_cb(cb);
> -                        break;
> -                    default:
> -                        g_assert_not_reached();
> -                    }
> -                }
> +                inject_mem_cb(&g_array_index(cbs, struct qemu_plugin_dyn_cb, i),
> +                              rw, meminfo, addr);
>               }
>   
>               tcg_ctx->emit_before_op = NULL;

Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
diff mbox series

Patch

diff --git a/accel/tcg/plugin-gen.c b/accel/tcg/plugin-gen.c
index 10d917abd3..28414c4ff1 100644
--- a/accel/tcg/plugin-gen.c
+++ b/accel/tcg/plugin-gen.c
@@ -194,6 +194,37 @@  static void gen_mem_cb(struct qemu_plugin_dyn_cb *cb,
     tcg_temp_free_i32(cpu_index);
 }
 
+static void inject_cb(struct qemu_plugin_dyn_cb *cb)
+
+{
+    switch (cb->type) {
+    case PLUGIN_CB_REGULAR:
+        gen_udata_cb(cb);
+        break;
+    case PLUGIN_CB_INLINE:
+        gen_inline_cb(cb);
+        break;
+    default:
+        g_assert_not_reached();
+    }
+}
+
+static void inject_mem_cb(struct qemu_plugin_dyn_cb *cb,
+                          enum qemu_plugin_mem_rw rw,
+                          qemu_plugin_meminfo_t meminfo, TCGv_i64 addr)
+{
+    if (cb->rw & rw) {
+        switch (cb->type) {
+        case PLUGIN_CB_MEM_REGULAR:
+            gen_mem_cb(cb, meminfo, addr);
+            break;
+        default:
+            inject_cb(cb);
+            break;
+        }
+    }
+}
+
 static void plugin_gen_inject(struct qemu_plugin_tb *plugin_tb)
 {
     TCGOp *op, *next;
@@ -255,19 +286,8 @@  static void plugin_gen_inject(struct qemu_plugin_tb *plugin_tb)
 
                 cbs = plugin_tb->cbs;
                 for (i = 0, n = (cbs ? cbs->len : 0); i < n; i++) {
-                    struct qemu_plugin_dyn_cb *cb =
-                        &g_array_index(cbs, struct qemu_plugin_dyn_cb, i);
-
-                    switch (cb->type) {
-                    case PLUGIN_CB_REGULAR:
-                        gen_udata_cb(cb);
-                        break;
-                    case PLUGIN_CB_INLINE:
-                        gen_inline_cb(cb);
-                        break;
-                    default:
-                        g_assert_not_reached();
-                    }
+                    inject_cb(
+                        &g_array_index(cbs, struct qemu_plugin_dyn_cb, i));
                 }
                 break;
 
@@ -278,19 +298,8 @@  static void plugin_gen_inject(struct qemu_plugin_tb *plugin_tb)
 
                 cbs = insn->insn_cbs;
                 for (i = 0, n = (cbs ? cbs->len : 0); i < n; i++) {
-                    struct qemu_plugin_dyn_cb *cb =
-                        &g_array_index(cbs, struct qemu_plugin_dyn_cb, i);
-
-                    switch (cb->type) {
-                    case PLUGIN_CB_REGULAR:
-                        gen_udata_cb(cb);
-                        break;
-                    case PLUGIN_CB_INLINE:
-                        gen_inline_cb(cb);
-                        break;
-                    default:
-                        g_assert_not_reached();
-                    }
+                    inject_cb(
+                        &g_array_index(cbs, struct qemu_plugin_dyn_cb, i));
                 }
                 break;
 
@@ -307,33 +316,22 @@  static void plugin_gen_inject(struct qemu_plugin_tb *plugin_tb)
         {
             TCGv_i64 addr = temp_tcgv_i64(arg_temp(op->args[0]));
             qemu_plugin_meminfo_t meminfo = op->args[1];
+            enum qemu_plugin_mem_rw rw =
+                (qemu_plugin_mem_is_store(meminfo)
+                 ? QEMU_PLUGIN_MEM_W : QEMU_PLUGIN_MEM_R);
             struct qemu_plugin_insn *insn;
             const GArray *cbs;
-            int i, n, rw;
+            int i, n;
 
             assert(insn_idx >= 0);
             insn = g_ptr_array_index(plugin_tb->insns, insn_idx);
-            rw = qemu_plugin_mem_is_store(meminfo) ? 2 : 1;
 
             tcg_ctx->emit_before_op = op;
 
             cbs = insn->mem_cbs;
             for (i = 0, n = (cbs ? cbs->len : 0); i < n; i++) {
-                struct qemu_plugin_dyn_cb *cb =
-                    &g_array_index(cbs, struct qemu_plugin_dyn_cb, i);
-
-                if (cb->rw & rw) {
-                    switch (cb->type) {
-                    case PLUGIN_CB_MEM_REGULAR:
-                        gen_mem_cb(cb, meminfo, addr);
-                        break;
-                    case PLUGIN_CB_INLINE:
-                        gen_inline_cb(cb);
-                        break;
-                    default:
-                        g_assert_not_reached();
-                    }
-                }
+                inject_mem_cb(&g_array_index(cbs, struct qemu_plugin_dyn_cb, i),
+                              rw, meminfo, addr);
             }
 
             tcg_ctx->emit_before_op = NULL;