/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | Trace.cpp | 114 return Trace::FindPluginForPostMortemProcess( in LoadPostMortemTraceFromFile() 163 Error Trace::Stop() { in Stop() 179 Expected<std::string> Trace::GetLiveProcessState() { in GetLiveProcessState() 278 Trace::Storage &Trace::GetUpdatedStorage() { in GetUpdatedStorage() 283 const char *Trace::RefreshLiveProcessState() { in RefreshLiveProcessState() 295 m_storage = Trace::Storage(); in RefreshLiveProcessState() 350 Trace::Trace(ArrayRef<ProcessSP> postmortem_processes, in Trace() function in Trace 363 std::vector<Process *> Trace::GetAllProcesses() { in GetAllProcesses() 369 uint32_t Trace::GetStopID() { in GetStopID() 437 llvm::Error Trace::OnDataFileRead(FileSpec file, in OnDataFileRead() [all …]
|
/openbsd/gnu/llvm/compiler-rt/lib/gwp_asan/optional/ |
H A D | backtrace_sanitizer_common.cpp | 43 __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()
|
H A D | segv_handler_posix.cpp | 146 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()
|
H A D | backtrace_linux_libc.cpp | 36 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/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Event/ |
H A D | Plan.t | 6 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__]), 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__]), 126 trace => Test2::EventFacet::Trace->new(frame => [__PACKAGE__, __FILE__, __LINE__]), [all …]
|
H A D | Note.t | 6 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__]),
|
H A D | Diag.t | 5 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/gnu/llvm/llvm/lib/Analysis/ |
H A D | Trace.cpp | 27 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/gnu/llvm/llvm/include/llvm/XRay/ |
H A D | Trace.h | 46 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/gnu/llvm/llvm/lib/XRay/ |
H A D | Trace.cpp | 350 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/gnu/llvm/llvm/lib/Target/Hexagon/ |
H A D | RDFDeadCode.h | 36 : 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;
|
H A D | RDFCopy.h | 34 void trace(bool On) { Trace = On; } in trace() 35 bool trace() const { return Trace; } in trace() 46 bool Trace = false; member
|
/openbsd/gnu/llvm/llvm/include/llvm/CodeGen/ |
H A D | MachineTraceMetrics.h | 96 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/gnu/usr.bin/perl/cpan/Test2-Suite/lib/Test2/Util/ |
H A D | Grabber.pm | 8 use Test2::EventFacet::Trace(); 36 my $trace = $self->{+TRACE} ||= Test2::EventFacet::Trace->new(frame => [caller(1)]); 72 my $trace = $self->{+TRACE} ||= Test2::EventFacet::Trace->new(frame => [caller(1)]); 76 my $dbg = Test2::EventFacet::Trace->new(
|
/openbsd/gnu/llvm/llvm/tools/llvm-xray/ |
H A D | xray-converter.h | 31 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);
|
H A D | xray-converter.cpp | 87 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/games/trek/ |
H A D | move.c | 81 if (Trace) in move() 106 if (Trace) in move() 128 if (Trace) in move() 138 if (Trace) in move() 155 if (Trace) in move()
|
H A D | schedule.c | 64 if (Trace) in schedule() 98 if (Trace) in reschedule() 120 if (Trace) in unschedule()
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/ |
H A D | Hub.t | 58 my $trace = Test2::EventFacet::Trace->new( 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( 350 trace => Test2::EventFacet::Trace->new( 358 trace => Test2::EventFacet::Trace->new( [all …]
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/Util/ |
H A D | Trace.pm | 1 package Test2::Util::Trace; 2 require Test2::EventFacet::Trace;
|
/openbsd/gnu/llvm/compiler-rt/lib/tsan/rtl/ |
H A D | tsan_trace.h | 164 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/gnu/llvm/llvm/lib/CodeGen/ |
H A D | MachineCombiner.cpp | 98 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/gnu/usr.bin/perl/cpan/Test2-Suite/lib/Test2/Tools/ |
H A D | Grab.pm | 8 use Test2::EventFacet::Trace(); 13 sub grab { Test2::Util::Grabber->new(trace => Test2::EventFacet::Trace->new(frame => [caller(0)]) )…
|
/openbsd/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/modules/Util/ |
H A D | Trace.t | 4 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/gnu/usr.bin/perl/cpan/Test-Simple/t/Test2/behavior/ |
H A D | trace_signature.t | 29 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 => []));
|