Re: [Qemu-devel] [PATCH v4 13/54] plugin: add user-facing API

2019-09-10 Thread Alex Bennée
Aaron Lindsay OS writes: > On Sep 06 20:31, Alex Bennée wrote: >> Aaron Lindsay OS writes: >> >> > One thing I would find useful is the ability to access register values >> > during an execution-time callback. I think the easiest way to do that >> > generically would be to expose them via the

Re: [Qemu-devel] [PATCH v4 13/54] plugin: add user-facing API

2019-09-10 Thread Aaron Lindsay OS via Qemu-devel
On Sep 06 20:31, Alex Bennée wrote: > Aaron Lindsay OS writes: > > > One thing I would find useful is the ability to access register values > > during an execution-time callback. I think the easiest way to do that > > generically would be to expose them via the gdb functionality (like > >

Re: [Qemu-devel] [PATCH v4 13/54] plugin: add user-facing API

2019-09-06 Thread Alex Bennée
Aaron Lindsay OS writes: > One thing I would find useful is the ability to access register values > during an execution-time callback. I think the easiest way to do that > generically would be to expose them via the gdb functionality (like > Pavel's earlier patchset did [1]), though that

Re: [Qemu-devel] [PATCH v4 13/54] plugin: add user-facing API

2019-08-02 Thread Aaron Lindsay OS via Qemu-devel
One thing I would find useful is the ability to access register values during an execution-time callback. I think the easiest way to do that generically would be to expose them via the gdb functionality (like Pavel's earlier patchset did [1]), though that (currently) limits you to the

Re: [Qemu-devel] [PATCH v4 13/54] plugin: add user-facing API

2019-08-01 Thread Richard Henderson
On 7/31/19 9:06 AM, Alex Bennée wrote: > From: "Emilio G. Cota" > > Add the API first to ease review. > > Signed-off-by: Emilio G. Cota > Signed-off-by: Alex Bennée > > --- > v3 > - merge in changes to plugin install/reset/uninstall > - split api file > v4 > - s/is/it/ > - more

[Qemu-devel] [PATCH v4 13/54] plugin: add user-facing API

2019-07-31 Thread Alex Bennée
From: "Emilio G. Cota" Add the API first to ease review. Signed-off-by: Emilio G. Cota Signed-off-by: Alex Bennée --- v3 - merge in changes to plugin install/reset/uninstall - split api file v4 - s/is/it/ - more docstrings - remove qemu_plugin_register_vcpu_mem_haddr_cb and related