Searched refs:last_tsc (Results 1 – 3 of 3) sorted by relevance
/xen-4.10.0-shim-comet/tools/xentrace/ |
A D | xentrace_format | 111 last_tsc = [0] 211 if cpu >= len(last_tsc): 212 last_tsc += [0] * (cpu - len(last_tsc) + 1) 213 elif tsc < last_tsc[cpu] and tsc_in == 1: 214 print "TSC stepped backward cpu %d ! %d %d" % (cpu,tsc,last_tsc[cpu]) 217 if last_tsc[cpu] > 0 and tsc_in == 1: 218 reltsc = tsc - last_tsc[cpu] 223 last_tsc[cpu] = tsc
|
A D | xenalyze.c | 271 tsc_t first_tsc, last_tsc, total_cycles; member 1818 tsc_t first_tsc, last_tsc, order_tsc; member 6913 v->d->did, v->vid, p->last_tsc - p->first_tsc); in vcpu_start() 7372 update_cycles(&v->cpu_affinity_all, P.f.last_tsc - v->pcpu_tsc); in sched_summary_vcpu() 7373 update_cycles(&v->cpu_affinity_pcpu[v->p->pid], P.f.last_tsc - v->pcpu_tsc); in sched_summary_vcpu() 9080 pcpu_runstate_update(p, p->last_tsc); in deactivate_pcpu() 9085 lose_vcpu(p->current, p->last_tsc); in deactivate_pcpu() 9137 P.f.last_tsc=tsc; in process_record_tsc() 9139 P.f.total_cycles = P.f.last_tsc - P.f.first_tsc; in process_record_tsc() 9634 p->last_tsc = tsc; in __fill_in_record_info() [all …]
|
/xen-4.10.0-shim-comet/xen/arch/x86/ |
A D | time.c | 1359 static cycles_t last_tsc; in check_tsc_warp() local 1378 prev = last_tsc; in check_tsc_warp() 1380 last_tsc = now; in check_tsc_warp()
|
Completed in 28 milliseconds