Home
last modified time | relevance | path

Searched refs:thread_execution (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Trace/intel-pt/
H A DLibiptDecoder.cpp289 auto variant = execution.thread_execution.variant; in DecodeSystemWideTraceForThread()
293 decoded_thread.NotifyTsc(execution.thread_execution.tscs.complete.start); in DecodeSystemWideTraceForThread()
297 execution.thread_execution.tscs.only_start.start); in DecodeSystemWideTraceForThread()
303 decoded_thread.NotifyCPU(execution.thread_execution.cpu_id); in DecodeSystemWideTraceForThread()
311 execution.thread_execution.cpu_id) in DecodeSystemWideTraceForThread()
322 execution.thread_execution.cpu_id) in DecodeSystemWideTraceForThread()
328 decoders.find(execution.thread_execution.cpu_id)->second; in DecodeSystemWideTraceForThread()
338 decoded_thread.NotifyTsc(execution.thread_execution.tscs.complete.end); in DecodeSystemWideTraceForThread()
341 decoded_thread.NotifyTsc(execution.thread_execution.tscs.only_end.end); in DecodeSystemWideTraceForThread()
357 execution.thread_execution.cpu_id) in DecodeSystemWideTraceForThread()
[all …]
H A DLibiptDecoder.h34 ThreadContinuousExecution thread_execution; member
38 const ThreadContinuousExecution &thread_execution) in IntelPTThreadContinousExecution()
39 : thread_execution(thread_execution) {} in IntelPTThreadContinousExecution()
H A DTraceIntelPTMultiCpuDecoder.cpp140 [&](const ThreadContinuousExecution &thread_execution) { in DoCorrelateContextSwitchesAndIntelPtTraces() argument
141 IntelPTThreadContinousExecution execution(thread_execution); in DoCorrelateContextSwitchesAndIntelPtTraces()
144 it->tsc < thread_execution.GetEndTSC(); in DoCorrelateContextSwitchesAndIntelPtTraces()
146 if (it->tsc > thread_execution.GetStartTSC()) { in DoCorrelateContextSwitchesAndIntelPtTraces()
152 continuous_executions_per_thread[thread_execution.tid].push_back( in DoCorrelateContextSwitchesAndIntelPtTraces()