Home
last modified time | relevance | path

Searched refs:TId (Results 1 – 18 of 18) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
H A Dxray-converter.cpp88 R.TSC, R.TId, R.PId, R.CallArgs, R.Data}); in exportAsYAML()
144 Writer.write(R.TId); in exportAsRAWv1()
177 findSiblings(StackTrieNode *parent, int32_t FnId, uint32_t TId, in findSiblings() argument
186 if (map_iter.first != TId) in findSiblings()
208 StackTrieNode *Parent, int32_t FuncId, uint32_t TId, in findOrCreateStackNode() argument
213 Parent == nullptr ? StackRootsByThreadId[TId] : Parent->Callees; in findOrCreateStackNode()
221 findSiblings(Parent, FuncId, TId, StackRootsByThreadId); in findOrCreateStackNode()
239 uint32_t TId, uint32_t PId, bool Symbolize, in writeTraceViewerRecord() argument
251 FunctionPhenotype, TId, PId, EventTimestampUs, in writeTraceViewerRecord()
259 FunctionPhenotype, TId, EventTimestampUs, StackCursor.ExtraData.id); in writeTraceViewerRecord()
[all …]
H A Dxray-stacks.cpp119 Converter->SymbolOrNumber(Item.FuncId), Item.TId, in format()
365 auto &TS = ThreadStackMap[R.TId]; in accountRecord()
378 auto *Root = findRootNode(R.TId, R.FuncId); in accountRecord()
379 TS.emplace_back(Root ? Root : createTrieNode(R.TId, R.FuncId, nullptr), in accountRecord()
390 auto N = createTrieNode(R.TId, R.FuncId, Top.first); in accountRecord()
H A Dxray-account.cpp159 setMinMax(PerThreadMinMaxTSC[Record.TId], Record.TSC); in accountRecord()
168 auto &ThreadStack = PerThreadFunctionStack[Record.TId]; in accountRecord()
490 Record.TSC, Record.TId, Record.PId) in __anona2b7686e0f02()
H A Dxray-graph.cpp218 auto &ThreadStack = PerThreadFunctionStack[Record.TId]; in accountRecord()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/XRay/
H A DFDRTraceExpander.cpp45 CurrentRecord.TId = TID; in visit()
60 CurrentRecord.TId = TID; in visit()
75 CurrentRecord.TId = TID; in visit()
118 CurrentRecord.TId = TID; in visit()
H A DTrace.cpp135 Record.TId = Reader.getU32(&OffsetPtr); in loadNaiveFormatLog()
165 auto TId = Reader.getU32(&OffsetPtr); in loadNaiveFormatLog() local
180 if (Record.FuncId != FuncId || Record.TId != TId || in loadNaiveFormatLog()
373 R.FuncId, R.TSC, R.TId, in loadYAMLLog()
H A DProfile.cpp339 auto &TSD = ThreadStacks[E.TId]; in profileFromTrace()
362 auto &TPD = ThreadPathData[E.TId][InternedPath]; in profileFromTrace()
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/
H A Dxray_profile_collector.cc32 tid_t TId; member
65 tid_t TId; member
112 tid_t TId) XRAY_NEVER_INSTRUMENT { in post() argument
133 TId) == nullptr) { in post()
297 BlockHeader Header{16 + CumulativeSizes, I++, ThreadTrie.TId}; in serialize()
H A Dxray_fdr_controller.h36 tid_t TId = 0; variable
76 TId = GetTid(); in setupNewBuffer()
91 static_cast<int32_t>(TId)), in setupNewBuffer()
H A Dxray_profile_collector.h42 FunctionCallTrie::Allocators::Buffers &&B, tid_t TId);
H A Dxray_basic_logging.cc240 R.TId = GetTid(); in InMemoryRawLog()
288 R.TId = GetTid(); in InMemoryRawLogWithArg()
/netbsd-src/sys/external/bsd/compiler_rt/dist/include/xray/
H A Dxray_records.h96 uint32_t TId = 0; member
119 uint32_t TId = 0; member
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
H A DYAMLXRayRecord.h38 uint32_t TId; member
83 IO.mapOptional("thread", Record.TId, 0U);
H A DXRayRecord.h89 uint32_t TId; member
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/
H A DModuleSummaryIndexYAML.h268 TypeIdSummary TId;
269 io.mapRequired(Key.str().c_str(), TId);
270 V.insert({GlobalValue::getGUID(Key), {std::string(Key), TId}});
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/xray/tests/unit/
H A Dtest_helpers.cc48 << "; TSC = " << R.TSC << "; TId = " << R.TId << "; PId = " << R.PId in PrintTo()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/
H A DLTO.cpp260 auto AddTypeIdSummary = [&](StringRef TId, const TypeIdSummary &S) { in computeLTOCacheKey() argument
261 AddString(TId); in computeLTOCacheKey()
291 for (GlobalValue::GUID TId : UsedTypeIds) { in computeLTOCacheKey() local
292 auto TidIter = Index.typeIds().equal_range(TId); in computeLTOCacheKey()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DAsmWriter.cpp1093 for (auto &TId : TheIndex->typeIdCompatibleVtableMap()) in processIndex() local
1094 CreateGUIDSlot(GlobalValue::getGUID(TId.first)); in processIndex()
2959 for (auto &TId : TheIndex->typeIdCompatibleVtableMap()) { in printModuleSummaryIndex() local
2960 auto GUID = GlobalValue::getGUID(TId.first); in printModuleSummaryIndex()
2962 << " = typeidCompatibleVTable: (name: \"" << TId.first << "\""; in printModuleSummaryIndex()
2963 printTypeIdCompatibleVtableSummary(TId.second); in printModuleSummaryIndex()