Lines Matching full:tsc
86 /// PerfContextSwitchRecord is that this one uses tsc instead of nanos.
88 uint64_t tsc; member
201 cpu_id, current_record.tid, current_record.pid, current_record.tsc)); in RecoverExecutionsFromConsecutiveRecords()
208 if (prev.tsc >= current_record.tsc) in RecoverExecutionsFromConsecutiveRecords()
212 "record. Previous TSC= {0}, current TSC = {1}.", in RecoverExecutionsFromConsecutiveRecords()
213 prev.tsc, current_record.tsc)); in RecoverExecutionsFromConsecutiveRecords()
219 cpu_id, prev.tid, prev.pid, prev.tsc, current_record.tsc - 1)); in RecoverExecutionsFromConsecutiveRecords()
224 cpu_id, current_record.tid, current_record.pid, prev.tsc + 1, in RecoverExecutionsFromConsecutiveRecords()
225 current_record.tsc)); in RecoverExecutionsFromConsecutiveRecords()
230 cpu_id, current_record.tid, current_record.pid, prev.tsc, in RecoverExecutionsFromConsecutiveRecords()
231 current_record.tsc)); in RecoverExecutionsFromConsecutiveRecords()
236 cpu_id, prev.tid, prev.pid, prev.tsc, current_record.tsc - 1)); in RecoverExecutionsFromConsecutiveRecords()
238 cpu_id, current_record.tid, current_record.pid, prev.tsc + 1, in RecoverExecutionsFromConsecutiveRecords()
239 current_record.tsc)); in RecoverExecutionsFromConsecutiveRecords()
288 cpu_id, prev_record->tid, prev_record->pid, prev_record->tsc)); in DecodePerfContextSwitchTrace()