| /netbsd-src/external/bsd/file/dist/magic/magdir/ |
| H A D | ctf | 3 # 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 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()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/XRay/ |
| H A D | Trace.cpp | 352 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 D | tsan_trace.h | 57 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 D | tsan_rtl.cpp | 86 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 D | MachineTraceMetrics.h | 97 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 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);
|
| H A D | YAMLXRayRecord.h | 94 static void mapping(IO &IO, xray::YAMLXRayTrace &Trace) { 97 IO.mapRequired("header", Trace.Header); 98 IO.mapRequired("records", Trace.Records);
|
| H A D | Profile.h | 30 class Trace; variable 48 Expected<Profile> profileFromTrace(const Trace &T);
|
| /netbsd-src/external/apache2/llvm/dist/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
|
| H A D | BitTracker.cpp | 188 : 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 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 | 78 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 D | move.c | 96 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 D | schedule.c | 71 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 D | MachineCombiner.cpp | 98 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 D | MachineTraceMetrics.cpp | 980 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 D | RDFLiveness.cpp | 621 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 D | tsan_trace.h | 58 struct Trace { struct 69 Trace() in Trace() argument
|
| /netbsd-src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| H A D | tsan_trace.h | 56 struct Trace { struct 67 Trace() in Trace() argument
|
| H A D | tsan_rtl.cc | 75 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 D | Trace.h | 30 class Trace { 39 Trace(const std::vector<BasicBlock *> &vBB) : BasicBlocks (vBB) {} in Trace() function
|
| /netbsd-src/external/zlib/pigz/dist/ |
| H A D | pigz.c | 783 #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 D | CLog.h | 42 bool Trace; variable 64 : Name(std::string(name)), Trace(trace), LogOS(Msg) {} in Logger()
|