Re: [Qemu-devel] [PATCH v6 11/14] target/arm: PMU: Add instruction and cycle events

2018-10-17 Thread Aaron Lindsay
On Oct 16 17:04, Richard Henderson wrote: > On 10/10/18 1:37 PM, Aaron Lindsay wrote: > > + * Return the underlying cycle count for the PMU cycle counters. If we're > > in > > + * usermode, simply return 0. > > + */ > > +static uint64_t cycles_get_count

Re: [Qemu-devel] [PATCH v6 12/14] target/arm: PMU: Set PMCR.N to 4

2018-10-17 Thread Aaron Lindsay
On Oct 17 12:34, Richard Henderson wrote: > On 10/17/18 12:20 PM, Aaron Lindsay wrote: > > On Oct 16 17:09, Richard Henderson wrote: > >> On 10/10/18 1:37 PM, Aaron Lindsay wrote: > >>> This both advertises that we support four counters and enables them > >>

Re: [Qemu-devel] [PATCH v6 11/14] target/arm: PMU: Add instruction and cycle events

2018-10-18 Thread Aaron Lindsay
On Oct 17 14:12, Richard Henderson wrote: > On 10/17/18 12:47 PM, Aaron Lindsay wrote: > > On Oct 16 17:04, Richard Henderson wrote: > >> On 10/10/18 1:37 PM, Aaron Lindsay wrote: > >>> + * Return the underlying cycle count for the PMU cycle counters. If > >&g

Re: [Qemu-devel] [PATCH v6 12/14] target/arm: PMU: Set PMCR.N to 4

2018-10-18 Thread Aaron Lindsay
On Oct 17 14:14, Richard Henderson wrote: > On 10/17/18 1:25 PM, Aaron Lindsay wrote: > > I suppose pmcrn (the local variable) should've been set to 0 before this > > patch and updated here to be 4. > > That's plausible. > > > Anyway, by splitting

Re: [Qemu-devel] [PATCH 3/3] target/arm: Flush only the TLBs affected by TTBR*_EL1

2018-10-18 Thread Aaron Lindsay
On Oct 18 11:27, Richard Henderson wrote: > @@ -2761,12 +2763,12 @@ static const ARMCPRegInfo vmsa_cp_reginfo[] = { >.fieldoffset = offsetof(CPUARMState, cp15.esr_el[1]), .resetvalue = 0, > }, > { .name = "TTBR0_EL1", .state = ARM_CP_STATE_BOTH, >.opc0 = 3, .opc1 = 0, .crn = 2

Re: [Qemu-devel] [PATCH 1/3] target/arm: Remove writefn from TTBR0_EL3

2018-10-18 Thread Aaron Lindsay
On Oct 18 11:27, Richard Henderson wrote: > The EL3 version of this register does not include an ASID, > and so the tlb_flush performed by vmsa_ttbr_write is not needed. > > Signed-off-by: Richard Henderson Reviewed-by: Aaron Lindsay

Re: [Qemu-devel] [PATCH 2/3] target/arm: Only flush tlb if ASID changes

2018-10-18 Thread Aaron Lindsay
f flushes by 30%, or nearly 600k instances. > > Signed-off-by: Richard Henderson Reviewed-by: Aaron Lindsay

Re: [Qemu-devel] [PATCH v10 00/14] More fully implement ARM PMUv3

2019-01-11 Thread Aaron Lindsay
Ping, just in case this got buried over the holidays... -Aaron On Dec 11 10:20, Aaron Lindsay wrote: > The ARM PMU implementation currently contains a basic cycle counter, but > it is often useful to gather counts of other events, filter them based > on execution mode, and/or be no

Re: [Qemu-devel] [PATCH v10 14/14] target/arm: Send interrupts on PMU counter overflow

2019-01-18 Thread Aaron Lindsay
On Jan 18 07:26, Richard Henderson wrote: > On 12/12/18 2:20 AM, Aaron Lindsay wrote: > > Setup a QEMUTimer to get a callback when we expect counters to next > > overflow and trigger an interrupt at that time. > > > > Signed-off-by: Aaron Lindsay >

Re: [Qemu-devel] [PATCH v2 1/5] target-arm: Add the pmceid0 and pmceid1 registers

2016-02-10 Thread Aaron Lindsay
On Feb 09 15:11, Alistair Francis wrote: > On Tue, Feb 9, 2016 at 9:19 AM, Peter Maydell > wrote: > > On 6 February 2016 at 00:55, Alistair Francis > > wrote: > >> Signed-off-by: Aaron Lindsay > >> Signed-off-by: Alistair Francis > >> Tested-by:

Re: [Qemu-devel] [PATCH v1 0/3] Extend the performance monitoring registers

2016-02-04 Thread Aaron Lindsay
Alistair, On Feb 03 16:34, Alistair Francis wrote: > This patch set is based on the patch sent by Christopher Covington and > written by Aaron Lindsay which was sent as an RFC (Implement remaining > PMU functionality). These patches look like a good start to improving the PMU support, t

Re: [Qemu-devel] [PATCH v1 0/3] Extend the performance monitoring registers

2016-02-05 Thread Aaron Lindsay
On Feb 04 10:52, Alistair Francis wrote: > On Thu, Feb 4, 2016 at 5:39 AM, Aaron Lindsay wrote: > > Please add my > > Signed-off-by: Aaron Lindsay > > to all three. > > Ok, I wasn't sure what you wanted to do there. I'll add them all and > they will be th

[Qemu-devel] [PATCH 01/13] target/arm: A53: Initialize PMCEID[0]

2017-04-19 Thread Aaron Lindsay
A53 advertises ARM_FEATURE_PMU, but wasn't initializing pmceid[01] Signed-off-by: Aaron Lindsay --- target/arm/cpu.c | 2 +- target/arm/cpu64.c | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/target/arm/cpu.c b/target/arm/cpu.c index 04b062c..921b028 100644 --- a/t

[Qemu-devel] [PATCH 00/13] More fully implement ARM PMUv3

2017-04-19 Thread Aaron Lindsay
ut it doesn't seem like the right way to handle this. I would like to eventually add sending interrupts on counter overflow. Suggestions for the best direction to handle this are most welcome. Thanks for any feedback, Aaron Aaron Lindsay (13): target/arm: A53: Initialize PMCEID[0]

[Qemu-devel] [PATCH 02/13] target/arm: Check PMCNTEN for whether PMCCNTR is enabled

2017-04-19 Thread Aaron Lindsay
Signed-off-by: Aaron Lindsay --- target/arm/helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/arm/helper.c b/target/arm/helper.c index 8cb7a94..391 100644 --- a/target/arm/helper.c +++ b/target/arm/helper.c @@ -964,7 +964,7 @@ static inline bool

[Qemu-devel] [PATCH 03/13] target/arm: Reorganize PMCCNTR read, write, sync

2017-04-19 Thread Aaron Lindsay
pmccntr_read and pmccntr_write contained duplicate code that was already being handled by pmccntr_sync. This also moves the calls to get the clock inside the 'if' statement so they are not executed if not needed. Signed-off-by: Aaron Lindsay --- target/arm/hel

[Qemu-devel] [PATCH 04/13] target/arm: Mask PMU register writes based on PMCR_EL0.N

2017-04-19 Thread Aaron Lindsay
This is in preparation for enabling counters other than PMCCNTR Signed-off-by: Aaron Lindsay --- target/arm/helper.c | 24 +++- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/target/arm/helper.c b/target/arm/helper.c index 390256b..e8189b8 100644 --- a/target

[Qemu-devel] [PATCH 07/13] target/arm: Implement PMOVSSET

2017-04-19 Thread Aaron Lindsay
Also modify it to be stored as a uint64_t Signed-off-by: Aaron Lindsay --- target/arm/cpu.h| 2 +- target/arm/helper.c | 27 --- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/target/arm/cpu.h b/target/arm/cpu.h index ae2a294..f3524f6 100644 --- a

[Qemu-devel] [PATCH 05/13] target/arm: Allow AArch32 access for PMCCFILTR

2017-04-19 Thread Aaron Lindsay
Also fix the existing bitmask for writes. Signed-off-by: Aaron Lindsay --- target/arm/helper.c | 23 ++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/target/arm/helper.c b/target/arm/helper.c index e8189b8..530fc7c 100644 --- a/target/arm/helper.c +++ b

[Qemu-devel] [PATCH 08/13] target/arm: Split arm_ccnt_enabled into generic pmu_counter_enabled

2017-04-19 Thread Aaron Lindsay
Signed-off-by: Aaron Lindsay --- target/arm/helper.c | 11 --- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/target/arm/helper.c b/target/arm/helper.c index 9c01269..5d07f72 100644 --- a/target/arm/helper.c +++ b/target/arm/helper.c @@ -975,17 +975,22 @@ static

[Qemu-devel] [PATCH 06/13] target/arm: Filter cycle counter based on PMCCFILTR_EL0

2017-04-19 Thread Aaron Lindsay
mechanism for handling this? Signed-off-by: Aaron Lindsay --- target/arm/cpu.c | 4 +++ target/arm/cpu.h | 15 +++ target/arm/helper.c| 73 +++--- target/arm/kvm64.c | 2 ++ target/arm/machine.c | 2 ++ target/arm/op_helper.c

[Qemu-devel] [PATCH 13/13] target/arm: Implement PMSWINC

2017-04-19 Thread Aaron Lindsay
Signed-off-by: Aaron Lindsay --- target/arm/helper.c | 40 ++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/target/arm/helper.c b/target/arm/helper.c index a15b932..2c51f92 100644 --- a/target/arm/helper.c +++ b/target/arm/helper.c @@ -907,6

[Qemu-devel] [PATCH 09/13] target/arm: Add array for supported PMU events, generate PMCEID[01]

2017-04-19 Thread Aaron Lindsay
This commit doesn't add any supported events, but provides the framework for adding them. We store the pm_event structs in a simple array, and provide the mapping from the event numbers to array indexes in the supported_event_map array. Signed-off-by: Aaron Lindsay --- target/arm/cpu.c

[Qemu-devel] [PATCH 10/13] target/arm: Finish implementation of PM[X]EVCNTR and PM[X]EVTYPER

2017-04-19 Thread Aaron Lindsay
Add arrays to hold the registers, the definitions themselves, access functions, and add logic to reset counters when PMCR.P is set. Signed-off-by: Aaron Lindsay --- target/arm/cpu.h| 7 +- target/arm/helper.c | 187 2 files changed, 179

[Qemu-devel] [PATCH 11/13] target/arm: PMU: Add instruction and cycle events

2017-04-19 Thread Aaron Lindsay
The instruction event is only enabled when icount is used, cycles are always supported. Note: Setting can_do_io=1 should not be done here. It is ugly and wrong, but I am not sure of the proper way to handle this (See 'target/arm: Filter cycle counter based on PMCCFILTR_EL0') Signed-off

[Qemu-devel] [PATCH 12/13] target/arm: PMU: Set PMCR.N to 4

2017-04-19 Thread Aaron Lindsay
This both advertises that we support four counters and adds them to the implementation because the PMU_NUM_COUNTERS macro reads this value from the PMCR. Signed-off-by: Aaron Lindsay --- target/arm/helper.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/target/arm

Re: [Qemu-devel] [PATCH v3 2/2] avx2 configure: Use primitives in test

2016-07-14 Thread Aaron Lindsay
On Jun 10 12:16, Dr. David Alan Gilbert (git) wrote: > From: "Dr. David Alan Gilbert" > > Use the avx2 primitives during the test, thus making sure that the > compiler and assembler could actually use avx2. > > This also detects the failure case on gcc 4.8.x with -save-temps > and avoids the nee

Re: [Qemu-devel] [PATCH v3 2/2] avx2 configure: Use primitives in test

2016-07-14 Thread Aaron Lindsay
On Jul 14 14:33, Dr. David Alan Gilbert wrote: > * Aaron Lindsay (alind...@codeaurora.org) wrote: > > I'm configuring with: > > # ./configure \ > > --static \ > > --disable-gtk \ > > --target-list=aarch64-softmmu > > Does it work if you co

Re: [Qemu-devel] [PATCH v3 2/2] avx2 configure: Use primitives in test

2016-07-14 Thread Aaron Lindsay
On Jul 14 14:23, Peter Maydell wrote: > On 14 July 2016 at 14:15, Paolo Bonzini wrote: > > On 14/07/2016 15:13, Aaron Lindsay wrote: > >> I'm configuring with: > >> # ./configure \ > >> --static \ > >> --disable-gtk \ > >>

Re: [Qemu-devel] [PATCH v3 2/2] avx2 configure: Use primitives in test

2016-07-14 Thread Aaron Lindsay
On Jul 14 15:35, Peter Maydell wrote: > On 14 July 2016 at 15:27, Aaron Lindsay wrote: > > On Jul 14 14:23, Peter Maydell wrote: > >> On 14 July 2016 at 14:15, Paolo Bonzini wrote: > >> > On 14/07/2016 15:13, Aaron Lindsay wrote: > >> >>

Re: [Qemu-devel] [PATCH v3 2/2] avx2 configure: Use primitives in test

2016-07-14 Thread Aaron Lindsay
On Jul 14 16:05, Dr. David Alan Gilbert wrote: > * Aaron Lindsay (alind...@codeaurora.org) wrote: > > On Jul 14 14:33, Dr. David Alan Gilbert wrote: > > > * Aaron Lindsay (alind...@codeaurora.org) wrote: > > > > I'm configuring with: > >

[Qemu-devel] [PATCH] avx2 configure: Disable if static build

2016-07-14 Thread Aaron Lindsay
{ (gdb) bt #0 buffer_find_nonzero_offset_ifunc () at ./util/cutils.c:333 #1 0x00939c58 in __libc_start_main () #2 0x00419337 in _start () Signed-off-by: Aaron Lindsay --- configure | 17 ++--- 1 file changed, 10 insertions(+), 7 deletions

Re: [Qemu-devel] [PULL 03/12] target-arm: Add support for PMU register PMINTENSET_EL1

2017-02-23 Thread Aaron Lindsay
Wei, Peter, On Feb 10 18:07, Peter Maydell wrote: > From: Wei Huang > > This patch adds access support for PMINTENSET_EL1. > > Signed-off-by: Wei Huang > Reviewed-by: Peter Maydell > Message-id: 1486504171-26807-4-git-send-email-...@redhat.com > Signed-off-by: Peter Maydell > --- > target/a

[Qemu-devel] [RFC] Pointers for implementing AArch64 PMU instruction counter?

2017-02-14 Thread Aaron Lindsay
I am interested in implementing an instruction counter to augment the ongoing (mostly cycle-counter) PMU work on AArch64. The icount infrastructure seems like the logical source for the instruction counts, but I have a couple of implementation-related questions: 1. It looks like cpu_get_icount_raw

[PATCH] target/arm: Don't do raw writes for PMINTENCLR

2020-07-07 Thread Aaron Lindsay
: Aaron Lindsay --- target/arm/helper.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/target/arm/helper.c b/target/arm/helper.c index dc9c29f998..c69a2baf1d 100644 --- a/target/arm/helper.c +++ b/target/arm/helper.c @@ -2269,13 +2269,13 @@ static const ARMCPRegInfo

Re: [PULL 35/47] target/arm: Send interrupts on PMU counter overflow

2020-07-01 Thread Aaron Lindsay
On Feb 25 17:08, Peter Maydell wrote: > On Fri, 1 Feb 2019 at 16:07, Peter Maydell wrote: > > > > From: Aaron Lindsay OS > > > > Whenever we notice that a counter overflow has occurred, send an > > interrupt. This is made more reliable with the addition of

[PATCH] target/arm: Count PMU events when MDCR.SPME is set

2020-08-25 Thread Aaron Lindsay
This check was backwards when introduced in commit 033614c47de78409ad3fb39bb7bd1483b71c6789: target/arm: Filter cycle counter based on PMCCFILTR_EL0 Signed-off-by: Aaron Lindsay --- target/arm/helper.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/target/arm/helper.c

Re: [PULL 39/49] target/arm: Filter cycle counter based on PMCCFILTR_EL0

2020-08-25 Thread Aaron Lindsay
On Aug 24 17:33, Peter Maydell wrote: > On Fri, 18 Jan 2019 at 14:58, Peter Maydell wrote: > > > > From: Aaron Lindsay > > > > Rename arm_ccnt_enabled to pmu_counter_enabled, and add logic to only > > return 'true' if the specified counter is ena

Re: [PATCH v6 37/54] plugin: expand the plugin_init function to include an info block

2019-10-18 Thread Aaron Lindsay OS
On Oct 17 14:15, Alex Bennée wrote: > This provides a limited amount of info to plugins about the guest > system that will allow them to make some additional decisions on > setup. > > Signed-off-by: Alex Bennée > > --- > v6 > - split and move to pre example plugins > - checkpatch fixes > ---

Re: [Qemu-devel] [PATCH 2/3] target/arm: cortex-a7 and cortex-a15 have pmus

2019-03-26 Thread Aaron Lindsay OS
On Mar 22 17:23, Andrew Jones wrote: > cortex-a7 and cortex-a15 have pmus (PMUv2) and they advertise > them in ID_DFR0. Let's allow them to function. This also enables > the pmu cpu property to work with these cpu types, i.e. we can > now do '-cpu cortex-a15,pmu=off' to remove the pmu. I'm a littl

Re: [Qemu-devel] [PATCH 1/3] target/arm: fix crash on pmu register access

2019-03-26 Thread Aaron Lindsay OS
gt; overflow") > Signed-off-by: Andrew Jones Reviewed-by: Aaron Lindsay > --- > target/arm/helper.c | 4 > 1 file changed, 4 insertions(+) > > diff --git a/target/arm/helper.c b/target/arm/helper.c > index c8d3c213b6b7..fc73488f6cc0 100644 > --- a/target/a

Re: [Qemu-devel] [PATCH 3/3] target/arm: make pmccntr_op_start/finish static

2019-03-26 Thread Aaron Lindsay OS
On Mar 22 17:23, Andrew Jones wrote: > These functions are not used outside helper.c > > Signed-off-by: Andrew Jones I'm late to the party, but: Reviewed-by: Aaron Lindsay > --- > target/arm/cpu.h| 11 --- > target/arm/helper.c | 4 ++-- > 2 files ch

Re: [Qemu-devel] [Qemu-arm] [PATCH v10 10/14] target/arm: Finish implementation of PM[X]EVCNTR and PM[X]EVTYPER

2019-02-05 Thread Aaron Lindsay OS
On Feb 04 20:22, Laurent Desnogues wrote: > Hello, > > On Tue, Dec 11, 2018 at 4:25 PM Aaron Lindsay > wrote: > > > > Add arrays to hold the registers, the definitions themselves, access > > functions, and logic to reset counters when PMCR.P is set. Update > >

[Qemu-devel] [PATCH] target/arm: Fix CRn to be 14 for PMEVTYPER/PMEVCNTR

2019-02-05 Thread Aaron Lindsay OS
This bug was introduced in: commit 5ecdd3e47cadae83a62dc92b472f1fe163b56f59 target/arm: Finish implementation of PM[X]EVCNTR and PM[X]EVTYPER Signed-off-by: Aaron Lindsay Reported-by: Laurent Desnogues --- target/arm/helper.c | 8 1 file changed, 4 insertions(+), 4 deletions

[Qemu-devel] [PATCH] target/arm: Don't clear supported PMU events when initializing PMCEID1

2019-01-23 Thread Aaron Lindsay OS
: Aaron Lindsay --- target/arm/cpu.c| 3 +-- target/arm/cpu.h| 11 +-- target/arm/helper.c | 27 --- 3 files changed, 22 insertions(+), 19 deletions(-) diff --git a/target/arm/cpu.c b/target/arm/cpu.c index 7e1f3dd637..d6da3f4fed 100644 --- a/target/arm

Re: [Qemu-devel] [PATCH v10 00/14] More fully implement ARM PMUv3

2019-01-23 Thread Aaron Lindsay OS
On Jan 18 14:13, Peter Maydell wrote: > On Tue, 11 Dec 2018 at 15:20, Aaron Lindsay > wrote: > > > > The ARM PMU implementation currently contains a basic cycle counter, but > > it is often useful to gather counts of other events, filter them based > > on executi

[Qemu-devel] [PATCH v11 0/2] More fully implement ARM PMUv3

2019-01-23 Thread Aaron Lindsay OS
gnu.org/archive/html/qemu-devel/2019-01/msg05996.html Aaron Lindsay (2): target/arm: Send interrupts on PMU counter overflow target/arm: Add a timer to predict PMU counter overflow target/arm/cpu.c| 12 target/arm/cpu.h| 10 target/arm

[Qemu-devel] [PATCH v11 1/2] target/arm: Send interrupts on PMU counter overflow

2019-01-23 Thread Aaron Lindsay OS
Whenever we notice that a counter overflow has occurred, send an interrupt. This is made more reliable with the addition of a timer in a follow-on commit. Signed-off-by: Aaron Lindsay --- target/arm/helper.c | 61 + 1 file changed, 51 insertions

[Qemu-devel] [PATCH v11 2/2] target/arm: Add a timer to predict PMU counter overflow

2019-01-23 Thread Aaron Lindsay OS
Make PMU overflow interrupts more accurate by using a timer to predict when they will overflow rather than waiting for an event to occur which allows us to otherwise check them. Signed-off-by: Aaron Lindsay --- target/arm/cpu.c| 12 target/arm/cpu.h| 10 +++ target/arm

Re: [Qemu-devel] [PATCH v11 1/2] target/arm: Send interrupts on PMU counter overflow

2019-01-24 Thread Aaron Lindsay OS
On Jan 23 15:37, Richard Henderson wrote: > On 1/23/19 1:32 PM, Aaron Lindsay OS wrote: > > +uint64_t overflow_mask = env->cp15.c9_pmcr & PMCRLC ? \ > > + INT64_MIN : INT32_MIN; > > With type promotion,

[Qemu-devel] [PATCH v12 0/2] More fully implement ARM PMUv3

2019-01-24 Thread Aaron Lindsay OS
Most of this patchset implementing the PMU has been merged already, but the interrupt-on-overflow behavior had some additional review comments. This most recent version fixes a type promotion issue and adds Richard's Reviewed-by's. Aaron Lindsay (2): target/arm: Send interrupts on P

[Qemu-devel] [PATCH v12 2/2] target/arm: Add a timer to predict PMU counter overflow

2019-01-24 Thread Aaron Lindsay OS
Make PMU overflow interrupts more accurate by using a timer to predict when they will overflow rather than waiting for an event to occur which allows us to otherwise check them. Signed-off-by: Aaron Lindsay Reviewed-by: Richard Henderson --- target/arm/cpu.c| 12 target/arm/cpu.h

[Qemu-devel] [PATCH v12 1/2] target/arm: Send interrupts on PMU counter overflow

2019-01-24 Thread Aaron Lindsay OS
Whenever we notice that a counter overflow has occurred, send an interrupt. This is made more reliable with the addition of a timer in a follow-on commit. Signed-off-by: Aaron Lindsay Reviewed-by: Richard Henderson --- target/arm/helper.c | 61 + 1

Re: [Qemu-devel] [PULL 09/26] target/arm: Don't clear supported PMU events when initializing PMCEID1

2019-02-19 Thread Aaron Lindsay OS
On Feb 14 17:55, Peter Maydell wrote: > On Mon, 28 Jan 2019 at 18:11, Peter Maydell wrote: > > > > From: Aaron Lindsay OS > > > > A bug was introduced during a respin of: > > > > commit 57a4a11b2b281bb548b419ca81bfafb214e4c77a > > t

Re: [Qemu-devel] [PULL 09/26] target/arm: Don't clear supported PMU events when initializing PMCEID1

2019-02-19 Thread Aaron Lindsay OS
On Feb 19 14:33, Peter Maydell wrote: > On Tue, 19 Feb 2019 at 14:23, Aaron Lindsay OS > wrote: > > I registered for a Coverity account and am awaiting approval for adding > > me to the QEMU project so I can test this myself (let me know if this > > isn't t

[Qemu-devel] [PATCH] target/arm: Stop unintentional sign extension in pmu_init

2019-02-19 Thread Aaron Lindsay OS
This was introduced by commit bf8d09694ccc07487cd73d7562081fdaec3370c8 target/arm: Don't clear supported PMU events when initializing PMCEID1 and identified by Coverity (CID 1398645). Signed-off-by: Aaron Lindsay Reported-by: Peter Maydell --- target/arm/helper.c | 2 +- 1 file ch

Re: [PATCH v6 39/54] plugin: add qemu_plugin_outs helper

2019-10-22 Thread Aaron Lindsay OS
On Oct 17 14:16, Alex Bennée wrote: > Having the plugins grab stdout and spew stuff there is a bit ugly and > certainly makes the tests look ugly. Provide a hook back into QEMU > which can be redirected as needed. > > Signed-off-by: Alex Bennée Reviewed-by: Aaron Lindsay

Re: [PATCH v6 37/54] plugin: expand the plugin_init function to include an info block

2019-10-22 Thread Aaron Lindsay OS
On Oct 18 16:54, Alex Bennée wrote: > > Aaron Lindsay OS writes: > > > On Oct 17 14:15, Alex Bennée wrote: > >> +const char *target_name; > >> +/* is this a full system emulation? */ > >> +bool system_emulation; > > > >

Re: [PATCH v6 54/54] scripts/checkpatch.pl: don't complain about (foo, /* empty */)

2019-10-22 Thread Aaron Lindsay OS
On Oct 17 14:16, Alex Bennée wrote: > It's quite common to have a mini comment inside braces to acknowledge > we know it's empty. Expand the inline detection to allow closing > braces before the end of line. > > Signed-off-by: Alex Bennée Reviewed-by: Aaron Lindsay

[Qemu-devel] [PATCH] elf: Allow loading AArch64 ELF files

2019-08-12 Thread Aaron Lindsay OS via Qemu-devel
Treat EM_AARCH64 as a valid value when checking the ELF's machine-type header. Signed-off-by: Aaron Lindsay --- include/hw/elf_ops.h | 6 ++ 1 file changed, 6 insertions(+) diff --git a/include/hw/elf_ops.h b/include/hw/elf_ops.h index 690f9238c8..f12faa90a1 100644 --- a/inclu

Re: [Qemu-devel] [Qemu-arm] [PATCH] elf: Allow loading AArch64 ELF files

2019-08-12 Thread Aaron Lindsay OS via Qemu-devel
On Aug 12 16:02, Peter Maydell wrote: > On Mon, 12 Aug 2019 at 15:46, Aaron Lindsay OS via Qemu-arm > wrote: > > > > Treat EM_AARCH64 as a valid value when checking the ELF's machine-type > > header. > > > > Signed-off-by: Aaron Lindsay > > --- &

Re: [Qemu-devel] [PATCH v4 04/54] target/arm: remove run time semihosting checks

2019-08-01 Thread Aaron Lindsay OS via Qemu-devel
On Jul 31 17:06, Alex Bennée wrote: > Now we do all our checking and use a common EXCP_SEMIHOST for > semihosting operations we can make helper code a lot simpler. > > Signed-off-by: Alex Bennée > > --- > v2 > - fix re-base conflicts > - hoist EXCP_SEMIHOST check > - comment cleanups > ---

Re: [Qemu-devel] [PATCH v4 24/54] plugins: implement helpers for resolving hwaddr

2019-08-01 Thread Aaron Lindsay OS via Qemu-devel
On Jul 31 17:06, Alex Bennée wrote: > We need to keep a local per-cpu copy of the data as other threads may > be running. We use a automatically growing array and re-use the space > for subsequent queries. [...] > +bool tlb_plugin_lookup(CPUState *cpu, target_ulong addr, int mmu_idx, > +

Re: [Qemu-devel] [PATCH v4 50/54] tests/plugin: add instruction execution breakdown

2019-08-01 Thread Aaron Lindsay OS via Qemu-devel
On Jul 31 17:07, Alex Bennée wrote: > + * Attempt to measure the amount of vectorisation that has been done > + * on some code by counting classes of instruction. This is very much > + * ARM specific. I suspect some of my plugins will also be architecture-specific. Does it make sense to have a plu

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 general-purpo

Re: [Qemu-devel] [PATCH v4 00/54] plugins for TCG

2019-09-10 Thread Aaron Lindsay OS via Qemu-devel
On Sep 06 20:52, Alex Bennée wrote: > > Markus Armbruster writes: > > Please advise why TCG plugins don't undermine the GPL. Any proposal to > > add a plugin interface needs to do that. > > I'm not sure what we can say about this apart from "ask your lawyer". > I'm certainly not proposing we ad

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

Re: [Qemu-devel] [PATCH v3 19/50] tcg: let plugins instrument memory accesses

2019-07-01 Thread Aaron Lindsay OS via Qemu-devel
On Jun 28 21:52, Alex Bennée wrote: > Aaron Lindsay OS writes: > > To make sure I understand - you're implying that one such query will > > return the PA from the guest's perspective, right? > > Yes - although it will be two queries: > > struct qemu_plugi

Re: [Qemu-devel] [PATCH v3 19/50] tcg: let plugins instrument memory accesses

2019-07-02 Thread Aaron Lindsay OS via Qemu-devel
On Jul 01 16:00, Alex Bennée wrote: > Aaron Lindsay OS writes: > > - a way for a plugin to reset any instrumentation decisions made in the > > past (essentially calls `tb_flush(cpu);` under the covers). We found > > this critical for plugins which undergo state changes du

Re: [Qemu-devel] [PATCH v3 19/50] tcg: let plugins instrument memory accesses

2019-06-28 Thread Aaron Lindsay OS via Qemu-devel
On Jun 14 18:11, Alex Bennée wrote: > From: "Emilio G. Cota" > > Here the trickiest feature is passing the host address to > memory callbacks that request it. Perhaps it would be more > appropriate to pass a "physical" address to plugins, but since > in QEMU host addr ~= guest physical, I'm going

Re: [Qemu-devel] [PATCH v3 19/50] tcg: let plugins instrument memory accesses

2019-06-28 Thread Aaron Lindsay OS via Qemu-devel
On Jun 28 18:11, Alex Bennée wrote: > Aaron Lindsay OS writes: > > On Jun 14 18:11, Alex Bennée wrote: > >> From: "Emilio G. Cota" > >> > >> Here the trickiest feature is passing the host address to > >> memory callbacks that request

<    1   2   3