Re: Instruction/Cycle Counting in Guest Using the Kvm PMU

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On Fri, Nov 23, 2018 at 12:29:08PM +0000, James Morse wrote:
> Hi Jan,
> 
> (CC: +Andrew)
> 
> On 23/11/2018 09:36, Jan Bolke wrote:
> > I am not sure if this question is well-placed here, so sorry if it misses the
> > purpose of this mailing list.
> 
> arm64? kvm? Sounds like you've come to the right place!
> 
> 
> > I am using the Kvm Api and try to integrate it as an instruction set simulator
> > in a SystemC environment.
> 
> 
> > I need some mechanism to count executed instructions in the guest (or cycles).
> > 
> > Currently I am trying to use the emulated PMU cycle counter in the guest to get
> > the number of executed cycles in the guest.
> > 
> > I am working on Arm64 and use Linux Kernel 4.14.33.
> > 
> > I create the PMU device without creating a in-kernel vgic.
> 
> > I configure the counter, then start the counter, execute 3 or 4 dummy
> > instructions and read the counter again and then exit the guest with an exit_mmio.
> > 
> > I assumed the value should be a very small number, as the guest only executed a
> > few instructions.
> 
> (some of which are system register writes, which can take a long time)
> 
> 
> > The thing is as I read the counter, the value is something like 2970 or 0
> > (changes in each run).
> 
> You are missing some barriers in your assembly snippet. 0 is a good indication
> that the code you wanted to measure escaped the measurement-window!
> 
> 
> > So to me it looks like the counter is also counting the cycles for instruction
> > emulation in the host, am I right?
> 
> I'd assume not, but I don't know anything about the PMU.
> Andrew Murray posted a series[0] that did some stuff with starting/stopping the
> the counters around the guest, but I think that was just for the host making
> measurements of itself, or the guest.
> 
> 
> KVM emulates parts of the PMU, so your measurements may be too noisy for such
> small windows of code.
> 
> It might be easier to count instructions from outside the guest using perf. I
> think Andrew's series is making that more reliable.

The PMU emulation works by creating a perf event in the host, however it is
pinned to the KVM process, so the the real PMU counters are stopped and started
as the KVM process is scheduled in and out. This means that it will include any
CPU time associated with that process of which your guest is only a subset of.

The patchset that James refers to will ensure that the underlying real PMU
counters underlying the guest only events will only be enabled upon entering the
guest (and disabled on leaving). Thus you will need to apply this (to your host)
for more accurate counting. (You could also then use the perf modifiers in the
host to counter guest cycles, e.g. perf -e instructions:G).

Also you may want to refer to kvm-unit-tests are there are test cases that
demonstrate bare metal code for PMU enabling.

Thanks,

Andrew Murray

> 
> 
> > Is it possible to just count the cycles in the guest from the guests’s point of
> > view?
> > 
> > I read the kvm-api.txt Documentation and the other documents a few times and
> > tried different approaches, so this mailing list is my last resort.
> 
> 
> > APPENDIX:
> > 
> > // we are in el1
> > 
> > // init system registers
> > LDR X1, =0x30C50838
> > MSR SCTLR_EL1, X1
> 
> isb
> 
> If the next instructions depend on any of the bits you set in sctrl, you need to
> make sure the cpu has synchronised this state-change before the next instruction
> is executed. Otherwise (depending on the CPU) the intended side-effects only
> come into effect some number of instructions later.
> 
> 
> > // enable access to pmu counters from el0
> > mov x0, 0xff
> > mrs x1, currentel
> 
> > mrs x7, pmuserenr_el0
> > orr x7, x7, #0b1111
> > msr pmuserenr_el0, x7
> 
> Why do you need to do this? Running from EL1 the values in this register should
> have no effect.
> 
> 
> > // set pmcr register (control register)
> > 
> > //enable long counter, count every cycle and enable counters
> > mrs x5, pmcr_el0
> > orr x5, x5, #0b1
> > orr x5, x5, #(1<<6)
> > eor x5, x5, #(1<<3)
> 
> > eor x5, x5, #(1<<5)
> 
> (looks like this bit has no effect on the 'normal world')
> 
> > msr pmcr_el0, x5
> 
> 
> > // read mvccfiltr register (only enable counting of el1)
> > 
> > mrs x6, pmccfiltr_el0
> > 
> > mov x6, #(1<<30)
> 
> This bit only effects EL0.
> 
> > msr pmccfiltr_el0, x6
> 
> 
> 
> > // get interrupt configuration and clear overflow bit
> > 
> > mrs x9, pmintenset_el1
> 
> You never use x9 after this. What did you want to do with this register?
> (I assume its debug)
> 
> 
> > mov x8, #(1<<31)
> > msr pmovsclr_el0, x8
> 
> 
> > // write counter
> > mov x0, #0x0
> > msr pmccntr_el0, x0 // write counter
> 
> > // enable cycle counter
> > mov x1, #(1<<31)
> > msr pmcntenset_el0, x1
> > mov x0, #0x2 */
> 
> 
> > // dummy instruction and provoke mmio-exit
> > mov x1, #0x3
> > add x2, x0, x1
> > mov x2, 0x5000
> 
> > //read counter
> > mrs x1, pmccntr_el0
> 
> At this point all the system register writes since the last 'isb' may not have
> 'finished', their side effects may not be visible.
> You need to synchronise the changes that enable the counter, before you run your
> measured instructions, and you want to make sure your measured instructions have
> 'finished' before you re-read the counter.
> 
> The sequence would be something like:
> | isb	// for the config writes that enable the counter
> | mrs x2, pmccntr_el0
> | isb
> 
> [measured instructions]
> 
> | isb
> | mrs x3, pmccntr_el0
> 
> 
> > // read overflow
> > mrs x8, pmovsclr_el0
> 
> > // provoke mmio exit (0x500 is not mapped)
> > ldr x3, [x2]
> 
> 
> Hope this helps!
> 
> James
> 
> 
> [0] https://www.mail-archive.com/kvmarm@xxxxxxxxxxxxxxxxxxxxx/msg19778.html
_______________________________________________
kvmarm mailing list
kvmarm@xxxxxxxxxxxxxxxxxxxxx
https://lists.cs.columbia.edu/mailman/listinfo/kvmarm




[Index of Archives]     [Linux KVM]     [Spice Development]     [Libvirt]     [Libvirt Users]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux