Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DLibiptDecoder.cpp139 : m_decoder(decoder), m_decoded_thread(decoded_thread) { in PSBBlockAnomalyDetector()
156 m_decoded_thread.GetTotalInstructionCount() - in DetectAnomaly()
246 *prev_insn_index(m_decoded_thread.GetItemsCount()); in TryIdentifyInfiniteLoop()
296 m_decoded_thread.GetTotalInstructionCount(); in RefreshPacketOffset()
301 DecodedThread &m_decoded_thread; member in PSBBlockAnomalyDetector
395 m_decoded_thread.NotifyTsc(*m_psb_block.tsc); in DecodePSBBlock()
406 m_decoded_thread.AppendInstruction(insn); in AppendInstructionAndDetectAnomalies()
491 m_decoded_thread.AppendCustomError(err_msg); in ProcessPTEventTSC()
494 m_decoded_thread.NotifyTsc(tsc); in ProcessPTEventTSC()
515 m_decoded_thread.AppendError(IntelPTError(status)); in ProcessPTEvents()
[all …]
H A DThreadDecoder.cpp41 if (!m_decoded_thread.has_value()) { in Decode()
43 m_decoded_thread = *decoded_thread; in Decode()
48 return *m_decoded_thread; in Decode()
H A DThreadDecoder.h53 std::optional<DecodedThreadSP> m_decoded_thread; variable