Home
last modified time | relevance | path

Searched refs:ThreadDecoder (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DThreadDecoder.h23 class ThreadDecoder {
30 ThreadDecoder(const lldb::ThreadSP &thread_sp, TraceIntelPT &trace);
45 ThreadDecoder(const ThreadDecoder &other) = delete;
46 ThreadDecoder &operator=(const ThreadDecoder &other) = delete;
H A DThreadDecoder.cpp21 ThreadDecoder::ThreadDecoder(const ThreadSP &thread_sp, TraceIntelPT &trace) in ThreadDecoder() function in ThreadDecoder
24 Expected<std::optional<uint64_t>> ThreadDecoder::FindLowestTSC() { in FindLowestTSC()
40 Expected<DecodedThreadSP> ThreadDecoder::Decode() { in Decode()
51 llvm::Expected<DecodedThreadSP> ThreadDecoder::DoDecode() { in DoDecode()
H A Dforward-declarations.h18 class ThreadDecoder; variable
H A DTraceIntelPT.h13 #include "ThreadDecoder.h"
268 llvm::DenseMap<lldb::tid_t, std::unique_ptr<ThreadDecoder>> thread_decoders;
H A DTraceIntelPT.cpp159 thread->GetID(), std::make_unique<ThreadDecoder>(thread, *trace_sp)); in CreateInstanceForPostmortemTrace()
573 thread_state.tid, std::make_unique<ThreadDecoder>(thread_sp, *this)); in DoRefreshLiveProcessState()