Home
last modified time | relevance | path

Searched refs:Trace (Results 1 – 25 of 198) sorted by relevance

12345678

/openbsd/src/gnu/llvm/lldb/source/Target/
DTrace.cpp96 Trace::LoadPostMortemTraceFromFile(Debugger &debugger, in LoadPostMortemTraceFromFile()
114 return Trace::FindPluginForPostMortemProcess( in LoadPostMortemTraceFromFile()
119 Expected<lldb::TraceSP> Trace::FindPluginForPostMortemProcess( in FindPluginForPostMortemProcess()
134 Expected<lldb::TraceSP> Trace::FindPluginForLiveProcess(llvm::StringRef name, in FindPluginForLiveProcess()
147 Expected<StringRef> Trace::FindPluginSchema(StringRef name) { in FindPluginSchema()
155 Error Trace::Start(const llvm::json::Value &request) { in Start()
163 Error Trace::Stop() { in Stop()
171 Error Trace::Stop(llvm::ArrayRef<lldb::tid_t> tids) { in Stop()
179 Expected<std::string> Trace::GetLiveProcessState() { in GetLiveProcessState()
188 Trace::GetLiveThreadBinaryDataSize(lldb::tid_t tid, llvm::StringRef kind) { in GetLiveThreadBinaryDataSize()
[all …]
/openbsd/src/gnu/llvm/compiler-rt/lib/gwp_asan/optional/
Dbacktrace_sanitizer_common.cpp43 __sanitizer::BufferedStackTrace Trace; in BacktraceCommon() local
44 Trace.Reset(); in BacktraceCommon()
48 Trace.Unwind((__sanitizer::uptr)__builtin_return_address(0), in BacktraceCommon()
52 memcpy(TraceBuffer, Trace.trace, Trace.size * sizeof(uintptr_t)); in BacktraceCommon()
53 return Trace.size; in BacktraceCommon()
64 static void PrintBacktrace(uintptr_t *Trace, size_t TraceLength, in PrintBacktrace() argument
67 StackTrace.trace = reinterpret_cast<__sanitizer::uptr *>(Trace); in PrintBacktrace()
Dsegv_handler_posix.cpp146 uintptr_t Trace[kMaximumStackFramesForCrashTrace]; in dumpReport() local
148 SegvBacktrace(Trace, kMaximumStackFramesForCrashTrace, Context); in dumpReport()
150 PrintBacktrace(Trace, TraceLength, Printf); in dumpReport()
163 AllocMeta, Trace, kMaximumStackFramesForCrashTrace); in dumpReport()
164 PrintBacktrace(Trace, TraceLength, Printf); in dumpReport()
174 AllocMeta, Trace, kMaximumStackFramesForCrashTrace); in dumpReport()
175 PrintBacktrace(Trace, TraceLength, Printf); in dumpReport()
Dbacktrace_linux_libc.cpp36 static void PrintBacktrace(uintptr_t *Trace, size_t TraceLength, in PrintBacktrace() argument
44 backtrace_symbols(reinterpret_cast<void **>(Trace), TraceLength); in PrintBacktrace()
48 Printf(" #%zu %p\n", i, Trace[i]); in PrintBacktrace()
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Event/
DPlan.t6 use Test2::EventFacet::Trace;
9 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
37 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
44 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
54 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
66 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
78 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
88 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
97 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
111 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
[all …]
DNote.t6 use Test2::EventFacet::Trace;
9 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
16 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
24 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
31 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
DDiag.t5 use Test2::EventFacet::Trace;
8 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
15 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
23 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
32 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]),
/openbsd/src/gnu/llvm/llvm/lib/Analysis/
DTrace.cpp27 Function *Trace::getFunction() const { in getFunction()
31 Module *Trace::getModule() const { in getModule()
36 void Trace::print(raw_ostream &O) const { in print()
50 LLVM_DUMP_METHOD void Trace::dump() const { in dump()
/openbsd/src/gnu/llvm/llvm/include/llvm/XRay/
DTrace.h46 class Trace {
53 friend Expected<Trace> loadTrace(const DataExtractor &, bool);
71 Expected<Trace> loadTraceFile(StringRef Filename, bool Sort = false);
75 Expected<Trace> loadTrace(const DataExtractor &Extractor, bool Sort = false);
/openbsd/src/gnu/llvm/llvm/lib/XRay/
DTrace.cpp350 YAMLXRayTrace Trace; in loadYAMLLog() local
352 In >> Trace; in loadYAMLLog()
356 FileHeader.Version = Trace.Header.Version; in loadYAMLLog()
357 FileHeader.Type = Trace.Header.Type; in loadYAMLLog()
358 FileHeader.ConstantTSC = Trace.Header.ConstantTSC; in loadYAMLLog()
359 FileHeader.NonstopTSC = Trace.Header.NonstopTSC; in loadYAMLLog()
360 FileHeader.CycleFrequency = Trace.Header.CycleFrequency; in loadYAMLLog()
368 std::transform(Trace.Records.begin(), Trace.Records.end(), in loadYAMLLog()
378 Expected<Trace> llvm::xray::loadTraceFile(StringRef Filename, bool Sort) { in loadTraceFile()
417 Expected<Trace> llvm::xray::loadTrace(const DataExtractor &DE, bool Sort) { in loadTrace()
[all …]
/openbsd/src/gnu/llvm/llvm/lib/Target/Hexagon/
DRDFDeadCode.h36 : Trace(false), DFG(dfg), MRI(mri), LV(mri, dfg) {} in DeadCodeElimination()
40 void trace(bool On) { Trace = On; } in trace()
41 bool trace() const { return Trace; } in trace()
48 bool Trace;
DRDFCopy.h34 void trace(bool On) { Trace = On; } in trace()
35 bool trace() const { return Trace; } in trace()
46 bool Trace = false; member
/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/
DMachineTraceMetrics.h96 friend class Trace; variable
254 class Trace {
261 explicit Trace(Ensemble &te, TraceBlockInfo &tbi) : TE(te), TBI(tbi) {} in Trace() function
321 friend class Trace; variable
335 ArrayRef<const MachineBasicBlock*> Trace);
360 Trace getTrace(const MachineBasicBlock *MBB);
421 const MachineTraceMetrics::Trace &Tr) {
/openbsd/src/gnu/llvm/llvm/tools/llvm-xray/
Dxray-converter.h31 void exportAsYAML(const Trace &Records, raw_ostream &OS);
32 void exportAsRAWv1(const Trace &Records, raw_ostream &OS);
37 void exportAsChromeTraceEventFormat(const Trace &Records, raw_ostream &OS);
Dxray-converter.cpp87 void TraceConverter::exportAsYAML(const Trace &Records, raw_ostream &OS) { in exportAsYAML()
88 YAMLXRayTrace Trace; in exportAsYAML() local
90 Trace.Header = {FH.Version, FH.Type, FH.ConstantTSC, FH.NonstopTSC, in exportAsYAML()
92 Trace.Records.reserve(Records.size()); in exportAsYAML()
94 Trace.Records.push_back({R.RecordType, R.CPU, R.Type, R.FuncId, in exportAsYAML()
101 Out << Trace; in exportAsYAML()
104 void TraceConverter::exportAsRAWv1(const Trace &Records, raw_ostream &OS) { in exportAsRAWv1()
274 void TraceConverter::exportAsChromeTraceEventFormat(const Trace &Records, in exportAsChromeTraceEventFormat()
/openbsd/src/games/trek/
Dmove.c81 if (Trace) in move()
106 if (Trace) in move()
128 if (Trace) in move()
138 if (Trace) in move()
155 if (Trace) in move()
Dschedule.c64 if (Trace) in schedule()
98 if (Trace) in reschedule()
120 if (Trace) in unschedule()
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/
DHub.t36 …my $e = My::Event->new(msg => $msg, trace => Test2::EventFacet::Trace->new(frame => ['fake', 'fake…
58 my $trace = Test2::EventFacet::Trace->new(
105 …return My::Event->new(msg => $msg, trace => Test2::EventFacet::Trace->new(frame => ['fake', 'fake.…
175 trace => Test2::EventFacet::Trace->new(
183 trace => Test2::EventFacet::Trace->new(
191 trace => Test2::EventFacet::Trace->new(
272 trace => Test2::EventFacet::Trace->new(
280 trace => Test2::EventFacet::Trace->new(
288 trace => Test2::EventFacet::Trace->new(
342 trace => Test2::EventFacet::Trace->new(
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/Util/
DTrace.pm1 package Test2::Util::Trace;
2 require Test2::EventFacet::Trace;
/openbsd/src/gnu/llvm/compiler-rt/lib/tsan/rtl/
Dtsan_trace.h164 struct Trace;
167 Trace* trace = nullptr; // back-pointer to Trace containing this part
189 struct Trace { struct
201 Trace() : mtx(MutexTypeTrace) {} in Trace() argument
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/
DMachineCombiner.cpp98 MachineTraceMetrics::Trace BlockTrace);
100 MachineTraceMetrics::Trace BlockTrace);
103 MachineTraceMetrics::Trace BlockTrace,
113 MachineTraceMetrics::Trace BlockTrace,
122 MachineTraceMetrics::Trace BlockTrace);
210 MachineTraceMetrics::Trace BlockTrace) { in getDepth()
266 MachineTraceMetrics::Trace BlockTrace) { in getLatency()
335 MachineTraceMetrics::Trace BlockTrace) { in getLatenciesForInstrSequences()
370 MachineTraceMetrics::Trace BlockTrace, in improvesCriticalPathLen()
438 MachineBasicBlock *MBB, MachineTraceMetrics::Trace BlockTrace, in preservesResourceLen()
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Util/
DTrace.t4 use Test2::EventFacet::Trace;
7 exception { 'Test2::EventFacet::Trace'->new() },
12 my $one = 'Test2::EventFacet::Trace'->new(frame => ['Foo::Bar', 'foo.t', 5, 'Foo::Bar::foo']);
/openbsd/src/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/behavior/
Dtrace_signature.t29 my $trace = Test2::EventFacet::Trace->new(frame => ['main', 'foo.t', 42, 'xxx']);
39 $e = Test2::Event::Ok->new(pass => 1, trace => Test2::EventFacet::Trace->new(frame => ['', '', '', …
42 $e = Test2::Event::Ok->new(pass => 1, trace => Test2::EventFacet::Trace->new(frame => []));
/openbsd/src/gnu/llvm/lldb/source/Plugins/Process/POSIX/
DProcessPOSIXLog.h26 Trace = Log::ChannelFlag<7>, enumerator
27 LLVM_MARK_AS_BITMASK_ENUM(Trace)
/openbsd/src/gnu/llvm/compiler-rt/lib/tsan/tests/unit/
Dtsan_trace_test.cpp70 TRACE_TEST(Trace, RestoreAccess) { in TRACE_TEST() argument
115 TRACE_TEST(Trace, MemoryAccessSize) { in TRACE_TEST() argument
170 TRACE_TEST(Trace, RestoreMutexLock) { in TRACE_TEST() argument
200 TRACE_TEST(Trace, MultiPart) { in TRACE_TEST() argument
246 TRACE_TEST(Trace, DeepSwitch) { in TRACE_TEST() argument
296 constexpr uptr Hi = Trace::kFinishedThreadHi; in TRACE_TEST()
322 constexpr uptr Min = Trace::kMinParts; in TRACE_TEST()

12345678