Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Trace/intel-pt/
H A DLibiptDecoder.cpp39 : m_decoder(decoder), m_decoded_thread(decoded_thread) {} in LibiptDecoder()
51 m_decoded_thread.AppendError(IntelPTError(status)); in DecodeUntilEndOfTrace()
64 m_decoded_thread.AppendError(IntelPTError(status)); in DecodePSB()
103 m_decoded_thread.AppendInstruction(insn); in DecodeInstructionsAndEvents()
128 m_decoded_thread.AppendError(IntelPTError(status)); in FindNextSynchronizationPoint()
148 m_decoded_thread.AppendError(IntelPTError(status)); in ProcessPTEvents()
153 m_decoded_thread.NotifyTsc(event.tsc); in ProcessPTEvents()
161 m_decoded_thread.AppendEvent(lldb::eTraceEventDisabledHW); in ProcessPTEvents()
167 m_decoded_thread.AppendEvent(lldb::eTraceEventDisabledSW); in ProcessPTEvents()
172 m_decoded_thread.AppendError(IntelPTError(-pte_overflow)); in ProcessPTEvents()
[all …]
H A DThreadDecoder.cpp42 if (!m_decoded_thread.hasValue()) { in Decode()
44 m_decoded_thread = *decoded_thread; in Decode()
49 return *m_decoded_thread; in Decode()
H A DThreadDecoder.h53 llvm::Optional<DecodedThreadSP> m_decoded_thread; variable