Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/Trace/intel-pt/
H A DThreadDecoder.cpp41 Expected<DecodedThreadSP> ThreadDecoder::Decode() { in Decode()
43 if (Expected<DecodedThreadSP> decoded_thread = DoDecode()) { in Decode()
52 llvm::Expected<DecodedThreadSP> ThreadDecoder::DoDecode() { in DoDecode()
55 "Decoding instructions", [&]() -> Expected<DecodedThreadSP> { in DoDecode()
56 DecodedThreadSP decoded_thread_sp = std::make_shared<DecodedThread>( in DoDecode()
H A DThreadDecoder.h37 llvm::Expected<DecodedThreadSP> Decode();
49 llvm::Expected<DecodedThreadSP> DoDecode();
53 llvm::Optional<DecodedThreadSP> m_decoded_thread;
H A DTraceIntelPTMultiCpuDecoder.h41 llvm::Expected<DecodedThreadSP> Decode(Thread &thread);
98 llvm::DenseMap<lldb::tid_t, DecodedThreadSP> m_decoded_threads;
H A DTraceCursorIntelPT.h20 lldb::ThreadSP thread_sp, DecodedThreadSP decoded_thread_sp,
63 DecodedThreadSP m_decoded_thread_sp;
H A DTraceIntelPTMultiCpuDecoder.cpp60 Expected<DecodedThreadSP> TraceIntelPTMultiCpuDecoder::Decode(Thread &thread) { in Decode()
68 .TimeTask("Decoding instructions", [&]() -> Expected<DecodedThreadSP> { in Decode()
73 DecodedThreadSP decoded_thread_sp = std::make_shared<DecodedThread>( in Decode()
H A DTraceIntelPT.cpp129 Expected<DecodedThreadSP> TraceIntelPT::Decode(Thread &thread) { in Decode()
181 if (Expected<DecodedThreadSP> decoded_thread = Decode(thread)) { in CreateNewCursor()
210 Expected<DecodedThreadSP> decoded_thread_sp_or_err = Decode(thread); in DumpTraceInfo()
216 DecodedThreadSP &decoded_thread_sp = *decoded_thread_sp_or_err; in DumpTraceInfo()
321 Expected<DecodedThreadSP> decoded_thread_sp_or_err = Decode(thread); in DumpTraceInfoAsJson()
326 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 DTraceIntelPT.h221 llvm::Expected<DecodedThreadSP> Decode(Thread &thread);
H A DDecodedThread.h318 using DecodedThreadSP = std::shared_ptr<DecodedThread>; variable