Searched refs:ipt_trace (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/ |
H A D | TraceIntelPTBundleLoader.cpp | 84 if (thread.ipt_trace) in ParseThread() 85 trace_file = FileSpec(*thread.ipt_trace); in ParseThread() 160 *process_sp, static_cast<lldb::tid_t>(cpu.id), FileSpec(cpu.ipt_trace)); in ParseKernel() 348 proc->second->threads.push_back({tid, /*ipt_trace=*/std::nullopt}); in AugmentThreadsFromContextSwitches() 403 if (thread.ipt_trace) in NormalizeAllPaths() 404 thread.ipt_trace = NormalizePath(*thread.ipt_trace).GetPath(); in NormalizeAllPaths() 412 cpu.ipt_trace = NormalizePath(cpu.ipt_trace).GetPath(); in NormalizeAllPaths()
|
H A D | TraceIntelPTJSONStructs.cpp | 54 if (thread.ipt_trace) in toJSON() 55 obj["iptTrace"] = *thread.ipt_trace; in toJSON() 61 return o && o.map("tid", thread.tid) && o.map("iptTrace", thread.ipt_trace); in fromJSON() 82 {"iptTrace", cpu.ipt_trace}, in toJSON() 90 if (!(o && o.map("id", cpu_id) && o.map("iptTrace", cpu.ipt_trace) && in fromJSON()
|
H A D | TraceIntelPTJSONStructs.h | 31 std::optional<std::string> ipt_trace; member 43 std::string ipt_trace; member
|
H A D | TraceIntelPTBundleSaver.cpp | 117 json_thread.ipt_trace = GetRelativePath(directory, output_file); in BuildThreadsSection() 217 json_cpu.ipt_trace = GetRelativePath(directory, *ipt_trace_path); in BuildCpusSection()
|
H A D | TraceIntelPT.cpp | 143 FileSpec(cpu.ipt_trace)); in CreateInstanceForPostmortemTrace()
|