Home
last modified time | relevance | path

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

12345678910>>...12

/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Dctf3 # ctf: file(1) magic for CTF (Common Trace Format) trace files
9 0 lelong 0xc1fc1fc1 Common Trace Format (CTF) trace data (LE)
10 0 belong 0xc1fc1fc1 Common Trace Format (CTF) trace data (BE)
13 0 lelong 0x75d11d57 Common Trace Format (CTF) packetized metadata (LE)
16 0 belong 0x75d11d57 Common Trace Format (CTF) packetized metadata (BE)
21 0 string /*\x20CTF\x20 Common Trace Format (CTF) plain text metadata
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A 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()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/XRay/
H A DTrace.cpp352 YAMLXRayTrace Trace; in loadYAMLLog() local
354 In >> Trace; in loadYAMLLog()
358 FileHeader.Version = Trace.Header.Version; in loadYAMLLog()
359 FileHeader.Type = Trace.Header.Type; in loadYAMLLog()
360 FileHeader.ConstantTSC = Trace.Header.ConstantTSC; in loadYAMLLog()
361 FileHeader.NonstopTSC = Trace.Header.NonstopTSC; in loadYAMLLog()
362 FileHeader.CycleFrequency = Trace.Header.CycleFrequency; in loadYAMLLog()
370 std::transform(Trace.Records.begin(), Trace.Records.end(), in loadYAMLLog()
380 Expected<Trace> llvm::xray::loadTraceFile(StringRef Filename, bool Sort) { in loadTraceFile()
419 Expected<Trace> llvm::xray::loadTrace(const DataExtractor &DE, bool Sort) { in loadTrace()
[all …]
/netbsd-src/external/gpl3/gcc/dist/libsanitizer/tsan/
H A Dtsan_trace.h57 struct Trace { struct
68 Trace() : mtx(MutexTypeTrace) {} in Trace() function
186 struct Trace;
189 Trace* trace = nullptr; // back-pointer to Trace containing this part
209 struct Trace { struct
215 Trace() : mtx(MutexTypeTrace) {} in Trace() function
H A Dtsan_rtl.cpp86 MapThreadTrace(hdr, sizeof(Trace), name); in CreateThreadContext()
87 new((void*)hdr) Trace(); in CreateThreadContext()
91 uptr hdr_end = hdr + sizeof(Trace); in CreateThreadContext()
94 if (hdr_end < hdr + sizeof(Trace)) { in CreateThreadContext()
95 ReleaseMemoryPagesToOS(hdr_end, hdr + sizeof(Trace)); in CreateThreadContext()
96 uptr unused = hdr + sizeof(Trace) - hdr_end; in CreateThreadContext()
578 Trace *trace = &thr->tctx->trace; in TraceSwitchPart()
645 Trace *thr_trace = ThreadTrace(thr->tid); in TraceSwitch()
655 Trace *ThreadTrace(Tid tid) { return (Trace *)GetThreadTraceHeader(tid); } in ThreadTrace()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
H A DMachineTraceMetrics.h97 friend class Trace; variable
255 class Trace {
262 explicit Trace(Ensemble &te, TraceBlockInfo &tbi) : TE(te), TBI(tbi) {} in Trace() function
322 friend class Trace; variable
336 ArrayRef<const MachineBasicBlock*> Trace);
361 Trace getTrace(const MachineBasicBlock *MBB);
422 const MachineTraceMetrics::Trace &Tr) {
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
H A 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);
H A DYAMLXRayRecord.h94 static void mapping(IO &IO, xray::YAMLXRayTrace &Trace) {
97 IO.mapRequired("header", Trace.Header);
98 IO.mapRequired("records", Trace.Records);
H A DProfile.h30 class Trace; variable
48 Expected<Profile> profileFromTrace(const Trace &T);
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A 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;
H A DRDFCopy.h34 void trace(bool On) { Trace = On; } in trace()
35 bool trace() const { return Trace; } in trace()
46 bool Trace = false; member
H A DBitTracker.cpp188 : ME(E), MF(F), MRI(F.getRegInfo()), Map(*new CellMapType), Trace(false) { in BitTracker()
799 if (Trace) in visitPHI()
816 if (Trace) in visitPHI()
820 if (Trace) in visitPHI()
827 if (Trace) in visitPHI()
834 if (Trace) in visitPHI()
843 if (Trace) in visitNonBranch()
852 if (Trace && Eval) { in visitNonBranch()
928 if (Trace) in visitBranchesFrom()
938 if (Trace) in visitBranchesFrom()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A 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);
H A Dxray-converter.cpp78 void TraceConverter::exportAsYAML(const Trace &Records, raw_ostream &OS) { in exportAsYAML()
79 YAMLXRayTrace Trace; in exportAsYAML() local
81 Trace.Header = {FH.Version, FH.Type, FH.ConstantTSC, FH.NonstopTSC, in exportAsYAML()
83 Trace.Records.reserve(Records.size()); in exportAsYAML()
85 Trace.Records.push_back({R.RecordType, R.CPU, R.Type, R.FuncId, in exportAsYAML()
92 Out << Trace; in exportAsYAML()
95 void TraceConverter::exportAsRAWv1(const Trace &Records, raw_ostream &OS) { in exportAsRAWv1()
265 void TraceConverter::exportAsChromeTraceEventFormat(const Trace &Records, in exportAsChromeTraceEventFormat()
/netbsd-src/games/trek/
H A Dmove.c96 if (Trace) in move()
121 if (Trace) in move()
142 if (Trace) in move()
152 if (Trace) in move()
169 if (Trace) in move()
H A Dschedule.c71 if (Trace) in schedule()
106 if (Trace) in reschedule()
128 if (Trace) in unschedule()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DMachineCombiner.cpp98 MachineTraceMetrics::Trace BlockTrace);
100 MachineTraceMetrics::Trace BlockTrace);
103 MachineTraceMetrics::Trace BlockTrace,
113 MachineTraceMetrics::Trace BlockTrace,
122 MachineTraceMetrics::Trace BlockTrace);
173 MachineTraceMetrics::Trace BlockTrace) { in getDepth()
231 MachineTraceMetrics::Trace BlockTrace) { in getLatency()
297 MachineTraceMetrics::Trace BlockTrace) { in getLatenciesForInstrSequences()
332 MachineTraceMetrics::Trace BlockTrace, in improvesCriticalPathLen()
402 MachineBasicBlock *MBB, MachineTraceMetrics::Trace BlockTrace, in preservesResourceLen()
[all …]
H A DMachineTraceMetrics.cpp980 ArrayRef<const MachineBasicBlock*> Trace) { in addLiveIns() argument
981 assert(!Trace.empty() && "Trace should contain at least one block"); in addLiveIns()
987 for (unsigned i = Trace.size(); i; --i) { in addLiveIns()
988 const MachineBasicBlock *MBB = Trace[i-1]; in addLiveIns()
1159 MachineTraceMetrics::Trace
1170 return Trace(*this, TBI); in getTrace()
1174 MachineTraceMetrics::Trace::getInstrSlack(const MachineInstr &MI) const { in getInstrSlack()
1182 MachineTraceMetrics::Trace::getPHIDepth(const MachineInstr &PHI) const { in getPHIDepth()
1197 unsigned MachineTraceMetrics::Trace::getResourceDepth(bool Bottom) const { in getResourceDepth()
1224 unsigned MachineTraceMetrics::Trace::getResourceLength( in getResourceLength()
[all …]
H A DRDFLiveness.cpp621 if (Trace) { in computePhiInfo()
722 if (Trace) { in computePhiInfo()
789 if (Trace) { in computeLiveIns()
852 if (Trace) { in computeLiveIns()
865 if (Trace) { in computeLiveIns()
1017 if (Trace) { in traverse()
1032 if (Trace) { in traverse()
1116 if (Trace) { in traverse()
1137 if (Trace) { in traverse()
1154 if (Trace) { in traverse()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
H A Dtsan_trace.h58 struct Trace { struct
69 Trace() in Trace() argument
/netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/
H A Dtsan_trace.h56 struct Trace { struct
67 Trace() in Trace() argument
H A Dtsan_rtl.cc75 MapThreadTrace(hdr, sizeof(Trace), name); in CreateThreadContext()
76 new((void*)hdr) Trace(); in CreateThreadContext()
80 uptr hdr_end = hdr + sizeof(Trace); in CreateThreadContext()
83 if (hdr_end < hdr + sizeof(Trace)) in CreateThreadContext()
84 UnmapOrDie((void*)hdr_end, hdr + sizeof(Trace) - hdr_end); in CreateThreadContext()
556 Trace *thr_trace = ThreadTrace(thr->tid); in TraceSwitch()
566 Trace *ThreadTrace(int tid) { in ThreadTrace()
567 return (Trace*)GetThreadTraceHeader(tid); in ThreadTrace()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DTrace.h30 class Trace {
39 Trace(const std::vector<BasicBlock *> &vBB) : BasicBlocks (vBB) {} in Trace() function
/netbsd-src/external/zlib/pigz/dist/
H A Dpigz.c783 #define Trace(x) \ macro
800 #define Trace(x) macro
1370 Trace(("-- joined %d compress threads", caught)); in finish_jobs()
1376 Trace(("-- freed %d block lengths buffers", caught)); in finish_jobs()
1378 Trace(("-- freed %d dictionary buffers", caught)); in finish_jobs()
1380 Trace(("-- freed %d output buffers", caught)); in finish_jobs()
1382 Trace(("-- freed %d input buffers", caught)); in finish_jobs()
1455 Trace(("-- compressing #%ld", job->seq)); in compress_thread()
1589 Trace(("-- compressed #%ld%s", job->seq, job->more ? "" : " (last)")); in compress_thread()
1620 Trace(("-- checked #%ld%s", job->seq, job->more ? "" : " (last)")); in compress_thread()
[all …]
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCLog.h42 bool Trace; variable
64 : Name(std::string(name)), Trace(trace), LogOS(Msg) {} in Logger()

12345678910>>...12