Home
last modified time | relevance | path

Searched refs:DecodedThreadSP (Results 1 – 9 of 9) sorted by relevance

/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DThreadDecoder.cpp40 Expected<DecodedThreadSP> ThreadDecoder::Decode() { in Decode()
42 if (Expected<DecodedThreadSP> decoded_thread = DoDecode()) { in Decode()
51 llvm::Expected<DecodedThreadSP> ThreadDecoder::DoDecode() { in DoDecode()
53 .TimeTask("Decoding instructions", [&]() -> Expected<DecodedThreadSP> { in DoDecode()
54 DecodedThreadSP decoded_thread_sp = std::make_shared<DecodedThread>( in DoDecode()
H A DThreadDecoder.h37 llvm::Expected<DecodedThreadSP> Decode();
49 llvm::Expected<DecodedThreadSP> DoDecode();
53 std::optional<DecodedThreadSP> m_decoded_thread;
H A DTraceIntelPTMultiCpuDecoder.h42 llvm::Expected<DecodedThreadSP> Decode(Thread &thread);
99 llvm::DenseMap<lldb::tid_t, DecodedThreadSP> m_decoded_threads;
H A DTraceCursorIntelPT.h21 lldb::ThreadSP thread_sp, DecodedThreadSP decoded_thread_sp,
66 DecodedThreadSP m_decoded_thread_sp;
H A DTraceIntelPTMultiCpuDecoder.cpp59 Expected<DecodedThreadSP> TraceIntelPTMultiCpuDecoder::Decode(Thread &thread) { in Decode()
66 .TimeTask("Decoding instructions", [&]() -> Expected<DecodedThreadSP> { in Decode()
71 DecodedThreadSP decoded_thread_sp = std::make_shared<DecodedThread>( in Decode()
H A DTraceIntelPT.cpp178 Expected<DecodedThreadSP> TraceIntelPT::Decode(Thread &thread) { in Decode()
230 if (Expected<DecodedThreadSP> decoded_thread = Decode(thread)) { in CreateNewCursor()
259 Expected<DecodedThreadSP> decoded_thread_sp_or_err = Decode(thread); in DumpTraceInfo()
265 DecodedThreadSP &decoded_thread_sp = *decoded_thread_sp_or_err; in DumpTraceInfo()
370 Expected<DecodedThreadSP> decoded_thread_sp_or_err = Decode(thread); in DumpTraceInfoAsJson()
375 DecodedThreadSP &decoded_thread_sp = *decoded_thread_sp_or_err; in DumpTraceInfoAsJson()
H A DTraceCursorIntelPT.cpp21 ThreadSP thread_sp, DecodedThreadSP decoded_thread_sp, in TraceCursorIntelPT()
H A DDecodedThread.h325 using DecodedThreadSP = std::shared_ptr<DecodedThread>; variable
H A DTraceIntelPT.h249 llvm::Expected<DecodedThreadSP> Decode(Thread &thread);