|
@@ -338,7 +338,6 @@ void plugin_register_inline_op_on_entry(GArray **arr,
|
|
|
|
|
|
struct qemu_plugin_inline_cb inline_cb = { .rw = rw,
|
|
struct qemu_plugin_inline_cb inline_cb = { .rw = rw,
|
|
.entry = entry,
|
|
.entry = entry,
|
|
- .op = op,
|
|
|
|
.imm = imm };
|
|
.imm = imm };
|
|
dyn_cb = plugin_get_dyn_cb(arr);
|
|
dyn_cb = plugin_get_dyn_cb(arr);
|
|
dyn_cb->type = op_to_cb_type(op);
|
|
dyn_cb->type = op_to_cb_type(op);
|
|
@@ -557,7 +556,9 @@ void qemu_plugin_flush_cb(void)
|
|
plugin_cb__simple(QEMU_PLUGIN_EV_FLUSH);
|
|
plugin_cb__simple(QEMU_PLUGIN_EV_FLUSH);
|
|
}
|
|
}
|
|
|
|
|
|
-void exec_inline_op(struct qemu_plugin_inline_cb *cb, int cpu_index)
|
|
|
|
|
|
+void exec_inline_op(enum plugin_dyn_cb_type type,
|
|
|
|
+ struct qemu_plugin_inline_cb *cb,
|
|
|
|
+ int cpu_index)
|
|
{
|
|
{
|
|
char *ptr = cb->entry.score->data->data;
|
|
char *ptr = cb->entry.score->data->data;
|
|
size_t elem_size = g_array_get_element_size(
|
|
size_t elem_size = g_array_get_element_size(
|
|
@@ -565,11 +566,11 @@ void exec_inline_op(struct qemu_plugin_inline_cb *cb, int cpu_index)
|
|
size_t offset = cb->entry.offset;
|
|
size_t offset = cb->entry.offset;
|
|
uint64_t *val = (uint64_t *)(ptr + offset + cpu_index * elem_size);
|
|
uint64_t *val = (uint64_t *)(ptr + offset + cpu_index * elem_size);
|
|
|
|
|
|
- switch (cb->op) {
|
|
|
|
- case QEMU_PLUGIN_INLINE_ADD_U64:
|
|
|
|
|
|
+ switch (type) {
|
|
|
|
+ case PLUGIN_CB_INLINE_ADD_U64:
|
|
*val += cb->imm;
|
|
*val += cb->imm;
|
|
break;
|
|
break;
|
|
- case QEMU_PLUGIN_INLINE_STORE_U64:
|
|
|
|
|
|
+ case PLUGIN_CB_INLINE_STORE_U64:
|
|
*val = cb->imm;
|
|
*val = cb->imm;
|
|
break;
|
|
break;
|
|
default:
|
|
default:
|
|
@@ -601,7 +602,7 @@ void qemu_plugin_vcpu_mem_cb(CPUState *cpu, uint64_t vaddr,
|
|
case PLUGIN_CB_INLINE_ADD_U64:
|
|
case PLUGIN_CB_INLINE_ADD_U64:
|
|
case PLUGIN_CB_INLINE_STORE_U64:
|
|
case PLUGIN_CB_INLINE_STORE_U64:
|
|
if (rw && cb->inline_insn.rw) {
|
|
if (rw && cb->inline_insn.rw) {
|
|
- exec_inline_op(&cb->inline_insn, cpu->cpu_index);
|
|
|
|
|
|
+ exec_inline_op(cb->type, &cb->inline_insn, cpu->cpu_index);
|
|
}
|
|
}
|
|
break;
|
|
break;
|
|
default:
|
|
default:
|